Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 34,576 through 34,600 (of 94,539 total)
  • Author
    Search Results
  • Rkarel
    Participant

    Hi everybody. I am updating my BP network and my users want it very much, please help.

    How can i change default activity filters only in the groups from “Show all” tะพ “show updates”?

    This http://buddypress.org/support/topic/show-updates-as-default-in-activity/ is not help me and broke my site. I am using BP 1.6.3.

    #155698
    aldereteka
    Participant

    Thanks for responding, Hugo. I changed the parent functions.php because nothing was changing in the child one. When Buddypress is updated, I understand that any changes will be lost. Sorry if that wasn’t clear. My problem is that the child theme functions is not being read at all and I don’t know what I’m doing wrong.

    #155695

    In reply to:

    Mike Pratt
    Participant

    @ronia I completely agree with you. Now, I am a big fan and supporter of BP, its team and all of their efforts. I hope none of these comments are taken as being unappreciative of what’s been done. I will add, however, that IMHO what keeps BP from going from good/great to amazing is the lack of event & media capabilities into core. It’s just too important and, sadly no one has stepped in to fill the breach. The plugins mentioned cannot be called serious efforts because of their glaring holes. BP-Media is vaporware and has been for years. Buddyvents is damn near close but needs updating. Keep waiting is the best answer that can be given.

    Hugo Ashmore
    Participant

    You should set up WP fully first checking all aspects of a standard WP install work correctly, when that checks out proceed to activating BP and doing so with the default theme initially to establish BP is set up correctly and working fully only them move on to activating a third party theme.

    dachimaster
    Participant

    Hi,
    Yes i am doing it on a live site. . Good point on compatibility , i just checked the theme, and it says its compatible with BuddyPress 1.6.1, BuddyPress 1.6, BuddyPress 1.5.3, BuddyPress 1.5.2. i’m downloaded the current version which is 1.6.4. .should that be a problem? (I’m using a theme from themeforest called detube)

    #155690
    madfatter
    Participant

    Thanks Chouf1. I’ve been overwhelmed with work and only had a chance to do more trouble shooting today. I followed your method for deactivating the forums but when I reactivated them the problem remained. I tried using the Default Buddy Press theme with no improvement. I also have a duplicate of the website running for development purposes that isn’t experiencing the issue. I don’t know too much about this sort of thing but could the database be corrupted? If so is there a safe way to remove the database information for the forums and get BuddyPress to treat it as a fresh installation?

    Thanks for any advice.

    #155685
    aldereteka
    Participant

    Will someone please help a poor frustrated soul? I’m a total beginner at all things WordPress, Buddypress and even further, CSS, PHP, etc. and I think this is an easy question, I just can’t figure it out.

    I’m trying to make my child functions.php override the parent one in Buddypress 1.6.4 Default theme, but I can’t get any of it to work and it’s driving me bananas. Using the following code in the parent functions.php, I was able to change the default “wordpress@yourwebsite.com” email address but that’s obviously not sustainable as any update with wipe it clean. How do I make it work in my child theme?

    Thanks,

    Carlos

    function res_fromemail($email) {
    $wpfrom = get_option(‘admin_email’);
    return $wpfrom;
    }
    function res_fromname($email){
    $wpfrom = get_option(‘blogname’);
    return $wpfrom;
    }
    add_filter(‘wp_mail_from’, ‘res_fromemail’);
    add_filter(‘wp_mail_from_name’, ‘res_fromname’);

    #155684

    In reply to:

    modemlooper
    Moderator

    you can use my fork of bp album it works on 1.7 https://github.com/modemlooper/BuddyPics

    bp-help
    Participant

    @sbrajesh That would be nice if you could do it, and make it dynamic for each users notifications. You will be my hero if this can be done. Thank you!

    Brajesh Singh
    Participant

    Do you want it to be hooked to the main menu of the bp-default theme when a user is logged in ?

    #155681
    billgates82
    Participant

    @hnla ok, I understand.

    #155680
    billgates82
    Participant

    @bphelp thanks you very much mate ๐Ÿ˜‰ just that i need !!
    everybody suggest a plugin but its not necesary. adding code is the best solution.
    thanks again ๐Ÿ˜‰
    kind regards

    bp-help
    Participant

    @sbrajesh Could you create a plugin that would do this and hook into the header in bp-default because your more qualified than me because I am kinda a noob? Thank you!

    #155671
    montanamind
    Participant

    I was hoping someone could help me with this problem. I have WordPress 3.5.1 and Buddypress 1.6.4. The friends tab is displaying the wrong count when looking at a users profile. I have seen this problem recorded before and have tried all of the solutions suggested but none seem to work. If anyone has any insight or suggestions I would greatly appreciate it. Thanks in advance for your help!

    Brajesh Singh
    Participant

    Are you doing it on a live site? Is your Theme BuddyPress compatible. For BuddyPress 1.6.x, the BuddyPress features are only available to BuddyPress enabled theme. In BuddyPress 1.7, BuddyPress automatically supports all themes(but 1.7 is still in beta and not recommended for live site).

    #155669
    bp-help
    Participant

    Add this to bp-custom.php https://codex.buddypress.org/developer/customizing/bp-custom-php/
    and it will prevent non-logged in users from accessing BP pages.
    `
    /* Block BP Pages For Non-Logged In Visitors */
    function bp_block_pages() {
    global $bp;
    if ( bp_is_activity_component() || bp_is_groups_component() /*|| bbp_is_single_forum()*/ || bp_is_forums_component() || bp_is_blogs_component() || bp_is_page( BP_MEMBERS_SLUG ) ) {
    // add components to be blocked to non-logged in visitors
    if(!is_user_logged_in()) {
    wp_redirect( get_option(‘siteurl’) . ‘/register’ );
    } // Change /register to the page you want non-logged in visitors directed to
    }
    }
    add_filter(‘get_header’,’bp_block_pages’,1);
    /* End BP Blocked Pages */
    /* Remove RSS Feeds */
    function bp_remove_feeds() {
    remove_action( ‘bp_actions’, ‘bp_activity_action_sitewide_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_personal_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_friends_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_my_groups_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_mentions_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_favorites_feed’, 3 );
    remove_action( ‘groups_action_group_feed’, ‘groups_action_group_feed’, 3 );
    }
    add_action(‘init’, ‘bp_remove_feeds’);
    /* End Remove RSS Feeds */
    `

    #155667
    Hugo Ashmore
    Participant

    @billgates82 you should always start a new post rather than tack onto an existing one that may seem to cover the same issue.

     

    As in the post above yours consider looking at the S2 member plugin.

    dachimaster
    Participant

    Are there any special network settings i need to authorise for buddypress to operate?

    dachimaster
    Participant

    Hi Thanks Brajesh,

    found the settings buddypress tab and clicked through. but no configuration wizard to speak off
    all i see are the tabs across saying – components (with 10 active, and 2 must use), pages, settings and forums (where i installed the configure site wide forums). . checked again in the wordpress site, and still buddy press hasn’t shown up. .

    Should i be installing buddypress 1.7 perhaps?

    #155661
    billgates82
    Participant

    hi to everybody;

    I have a BuddyPress Community that I’m building that’s based around a rather sensitive topic for my users and as such I need to make parts of the community totally private and not accessible by non logged in users.

    I would like guests to be redirected to a page/message that requests login/sign-up before proceeding to the following parts of my community:

    mysite.com/members
    mysite.com/activity
    mysite.com/groups/

    However, I like guests to be able to freely view public blog and public content.

    Is there a way to accomplish this?

    #155657
    valuser
    Participant

    Posted a topic here yesterday.

    see buddypress.org/support/topic/bp-default-full-width/

    though it now can’t be found ??.

    no biggie — just leaving you know

    Brajesh Singh
    Participant

    You will need to configure BuddyPress before it comes into action.

    Look for the notice in the Network admin. If it is not there, just click Network Admin-> Settings->BuddyPress and you should see the configuration wizard.

    Hope that helps.

    Brajesh Singh
    Participant

    Hi,
    Have a look at this function

    bp_core_get_notifications_for_user here https://github.com/buddypress/trunk/blob/master/bp-members/bp-members-notifications.php#L83

    You can modify it to suit your need(this is the one that generates the notfication messages).

    and here you can see how the drop down is created
    https://github.com/buddypress/trunk/blob/master/bp-members/bp-members-buddybar.php#L18

    Hope that helps.

    #155653
    resun
    Participant

    Hi, I have just installed Buddypress. I am using the theme K-BOOM-v1.0.2 and I have tirelessly searched the forums to solve my problem. Basically there is no sidebar and the plug in I have on the page sits under the buddypress. Here is my website http://www.redsun.com.au
    It is not on the first page, only when you go and edit your profile and stuff. I have a feeling it has something to do with the structure of the index.php, page.php, sidebar.php and footer.php. files.I am not good with HTML I cant match the structure of the Footer-buddypress.php, headder-buddypress.php and the sidebar-buddypress.php files.
    Anyhelp would be much appreciated.
    Here is the code from my pages.

    header.php
    http://pastebin.com/vWRuKvwE
    index.php
    http://pastebin.com/FAcTMYz5
    page.php
    http://pastebin.com/UjvTuQgm
    sidebar.php
    http://pastebin.com/NJU3gyDE
    footer.php
    http://pastebin.com/aspP2h3n

    Thanks in advance ๐Ÿ™‚

    dachimaster
    Participant

    HI there,
    I’ve just set up a website as a wordpress multisite, and created a wordpress site.
    Installed buddypress and network activiated it, but can’t see any evidence of it in my wordpress site? wondering have i missed something in the installation?
    I’ve instsalled Buddypress 1.6.4 on a wordpress multisite version 3.5.1

    thanks

    Derrick

Viewing 25 results - 34,576 through 34,600 (of 94,539 total)
Skip to toolbar