Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,676 through 19,700 (of 69,133 total)
  • Author
    Search Results
  • #169260
    @mercime
    Participant

    @tom-peak there’s no longer any Forums Component circa BP 1.7. You need to install the bbPress forums plugin https://codex.buddypress.org/user/setting-up-a-new-installation/installing-group-and-sitewide-forums/

    #169259
    @mercime
    Participant

    the options for the user privacy setting totally DISAPPEARED! It also doesnโ€™t show on the Update posting boxes.

    Not quite sure what you mean for the first one? Privacy setting for xProfile fields?
    And what doesn’t show on the update posting boxes (status updates right?)?

    #169258
    @mercime
    Participant
    #169256
    maddogmcewan
    Participant
    #169254
    @mercime
    Participant

    You can show off your new BP site here. Check out bpinspire.com for ideas.

    #169253
    Techknowledgic
    Participant

    About the image it’s true because I tried to change it after I did some changes to the website and also it didn’t work

    and about what you said, if I switch to theme to twenty twelve, will I lose any data in my website or saved settings even if I back up the database?

    and about my problem, I found someone having exactly the same problem as me and he fixed it but I didn’t understand exactly how https://buddypress.org/support/topic/avatar-crop-not-working-2/

    bu I am using a different theme so if you could help me with doing what he did it’s gonna be great ๐Ÿ˜€

    Thanks!

    @mercime
    Participant
    #169245
    @mercime
    Participant
    #169244
    @mercime
    Participant

    @moto-foto The theme author would be the best person to inquire about requiring a post image. I am not familiar with the premium theme, sorry.

    As to the login page, did you enable registration in Settings > General. If you did, did you create a blank page named whatever you want and assign it as the register page in Settings > BuddyPress > Pages?

    #169241
    @mercime
    Participant

    @techknowledgic the link to the image in your first post leads to 404 page. Basic troubleshooting involves changing to Twenty Twelve theme and deactivating all plugins except BuddyPress. I recommend setting up a development site if you’re going to grow and maintain your BP site with the same environment as your production/live site. That way, you could test plugins and themes before installing/activating them.

    Back up your database, then deactivate plugins batch by batch to identify the conflict. Start with the avatars plugin you have activated in your site.

    #169237
    imeea
    Participant

    Hi,
    APologies for jumping into this thread, but I couldnt help as this is related to my problem.

    I have two questions:
    1. is the issue now fixed
    2. will it be possible to embed gravity form into a tab on the member profile. we want to have an experience tab (next to profile, activity, settings) where the user can view and edit job experience.

    is there a better way of doing this please?

    would really appreciate any comments

    cheers

    #169235
    LogicWolf
    Participant

    Hi David,

    Hoping I’ll be able to help. I’ve seen alot of questions on the topic of How To Change and Reorder BuddyPress Group tabs and not much great direction. Hopefully you won’t be saying that after my posts… What I’m really hoping is someone comes in with a simpler, more elegant solution ๐Ÿ™‚

    Were you able to control the standard tabs?

    For the standard group tabs, you can control them directly like this:

    if (isset($bp->groups->current_group->slug) && $bp->groups->current_group->slug == $bp->current_item) 
    {
            $bp->bp_options_nav[$bp->groups->current_group->slug]['home']['position'] = 10;
            $bp->bp_options_nav[$bp->groups->current_group->slug]['members']['position'] = 60;
            $bp->bp_options_nav[$bp->groups->current_group->slug]['notifications']['position'] = 110;
    }

    So the code to put in functions.php might look like this:

    function whff_setup_nav() 
    {
    
      if (isset($bp->groups->current_group->slug) && $bp->groups->current_group->slug == $bp->current_item) 
      {
         $bp->bp_options_nav[$bp->groups->current_group->slug]['home']['position'] = 10;
         $bp->bp_options_nav[$bp->groups->current_group->slug]['members']['position'] = 60;
         $bp->bp_options_nav[$bp->groups->current_group->slug]['notifications']['position'] = 110;
    }
    
    } 
    add_action( 'bp_setup_nav', 'whff_setup_nav', 100000 );

    CUSTOM BUDDYPRESS GROUP TABS
    Now, the non-standard tabs are the tricky ones. You can’t access them through $bp->bp_options_nav (at least I couldn’t figure out how to do this.)

    Nonstandard Group tabs through the $wp_filter global. A good starting point is to dump the $wp_filter variable and get a look at it’s guts. Add this code in functions.php:

    global $wp_filter;
        
    foreach ( (array)$wp_filter as $key => $value ) 
    {
       echo '<pre>';
       echo '<strong>' . $key . ': </strong><br />';
       print_r( $value );
       echo '</pre>';
    }
    

    $wp_filter is a bunch of nested arrays. Search through the output for your Group Tab Names (i.e. search for “Calendar”) and you will find something like this:

    [00000000746c6153000000004e38ec1f_register] => Array
                    (
                        [function] => Array
                            (
                                [0] => BP_Group_Calendar_Extension Object
                                    (
                                        [visibility] => private
                                        [enable_create_step] => 
                                        [enable_nav_item] => 1
                                        [enable_edit_item] => 
                                        [name] => Calendar
                                        [slug] => calendar
                                        [admin_name] => 
                                        [admin_slug] => 
                                        [create_name] => 
                                        [create_slug] => 
                                        [create_step_position] => 81
                                        [nav_item_position] => 40
                                        [nav_item_name] => 
                                        [display_hook] => groups_custom_group_boxes
                                        [template_file] => groups/single/plugins
                                    )
    
                                [1] => _register
                            )
    
                        [accepted_args] => 1
                    )
    

    That’s your Group tab and all the hooks you need to change attributes (in this case it’s the tab that says “Calendar”.)

    But… unfortunately you can’t use the [00000000746c6153000000004e38ec1f_register] as a handle — that string is random and changes every time. But, now you know the class name is BP_Group_Calendar_Extension Object and you can search for that in the $wp_filter array and make the changes.

    Hope this gets you closer, let me know how you make out. Cheers David!

    #169229
    makbeta
    Participant

    I had no luck with any code here. I used Theme My Login plugin and it worked like a charm. The custom page is displayed even on error.

    #169227
    paxtonhaden
    Participant
    #169226
    bp-help
    Participant
    #169222
    @mercime
    Participant

    @omgayush recently posted template for sahifa

    You just need to tweak CSS a little afterwards.

    #169218
    Hugo Ashmore
    Participant

    Buddypress 1.7 introduced Theme Compatibility, this process allows BP to seamlessly work with the vast majority of themes simply by activating BP. When it doesn’t work is due to the theme not following the standard WP process for looping content in page.php, however this is in the hands of the theme author , BP can have a custom top level template used in place of page.php and that can be modified to work with BP and the theme but the theme author would need to help you with that.

    #169217
    Ben Hansen
    Participant

    Well i think you have some competition already but there’s certainly nothing wrong with a new outfit trying to help promote what can be done with wordpress/buddypress so i think you would be welcomed in that endeavor. Not sure i have a good answer for that last one maybe sites like yours? If your site becomes popular and effective enough perhaps even more mainstream sites? i hear there is a new wordpress focused media outfit at torquemag.io maybe they have some interest?

    #169216

    In reply to: Theme problem

    Hugo Ashmore
    Participant

    This is a problem with your theme not BuddyPress I’m afraid. Your theme is choosing to load it’s own copy of jQuery for whatever reason instead of using the version bundled with WP, your theme is using 1.6 which is a little outdated now , WP is currently using 1.8; the ‘on’ method requires 1.7 iirc.

    #169211
    omgayush
    Participant

    Are you using the default theme provided by WordPress? Have you installed bbpress?
    To go to BuddyPress settings, go to
    Settings > Buddypress..

    #169207
    minto
    Participant

    still looking for a solution!

    #169203
    leonardlapena
    Participant

    @mercime I have everything propagated over and running now. Yahoo just couldnt cut it. Thanks for the help, do you have any favorite buddypress themes?

    Roger Coathup
    Participant

    You shouldn’t be using Genesis Connect with current versions of BuddyPress.

    From the Genesis Connect developer:

    As of BP 1.7 you do not need to have GenesisConnect. We are currently maintaining it for customers who had BP installs prior to BP 1.7.

    #169196
    marmuel
    Participant

    no idea?

    #169195
    writegnj
    Participant

    Having a same issue. @modemlooper for my case I did click the link on activation email. it only gives error when you try to sign in with bbpress login widget after you get account activated success message.

    Anyone have solution for this issue?

Viewing 25 results - 19,676 through 19,700 (of 69,133 total)
Skip to toolbar