Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 1,451 through 1,475 (of 7,498 total)
  • Author
    Search Results
  • #243118
    danbp
    Participant

    I was running WP and BBPress… and user where handled as forum user by bbPress. Now you use BP and bbpress aside.
    Deactivate bbpress and make sure you have only one member page (and no one in trash too). Sync BP profiles with WP – all this can be done in BP settings. Check that all is working correctly, then reactivate bbPress.

    Now if it still doesn’t work, sorry for you, but there is no result without effort. You have an issue and we’re trying to debug it.

    I presume you have no local install where you could test previously from prod site ?

    Keep Twenty Twelve active and deactivate all plugins, as the issue may come from a js conflict which we have to isolate at first.

    If you use some mu-plugin or custom functions in bp-custom.php, think to remove them temporary.

    #243104
    AdventureRidingNZ
    Participant

    Thanks for that. I’ve tried it under Twenty Twelve with the same result but not with all other plugins deactivated yet as there’s a lot of them.

    The profile path just happened like that when I installed BuddyPress. I was running WP and BBPress for a while and the members URL was /members/username. When I installed BuddyPress later it changed to /members/members-2/username as part of the BP install. I didn’t actively do anything to make it like that and thought that much have been standard.

    #243078
    atfpodcast
    Participant

    Im using raindrops. I seen the other themes jazz the profile look. I also noticed it changed the link in bbpress to the profile not the forum dashboard. Im not good with php so if i can copy and past that helps

    #242986
    Shaktimaan
    Participant

    Thanks @danbp

    It works. I am also using bbpress. I found these activity types created by bbpress in DB and added them to code given by you.

    bbp_topic_create
     bbp_reply_create

    danbp

    As mentioned by you also it may be confusing for some users and may cause problems in some situations , if someone is using a plugin like rtMedia that also creates activities.

    Can you share a code that will let us just remove unwanted activity type?

    #242974
    danbp
    Participant

    @djsteveb,

    i wouldn’t remove the whole action hook, as other functionnalities from other plugins, can use it. Filtering is even better.

    bp_parse_{component}_args is intended to filter template loops.

    If you remove an {activity} type with this function, it will remove that activity from each activity feed (swa, profile and group). Something like an all or nothing thing.

    bp_parse return values. So if you want to remove something, you have to list what you want to keep to show, and not what to remove !

    Here a snippet, listing all existing BP activity types (2.2.x). Simply comment or remove the type you don’t want.

    function my_bp_activity_types( $retval ) {
    // list of all BP activity types  - remove or comment those you won't show.
        $retval['action'] = array(        
            'activity_comment',
    		'activity_update',
    		'created_group',
    		'friendship_created',
    		'joined_group',
    		'last_activity',
    		'new_avatar',
    		'new_blog_comment',
                    'new_blog_post',
    		'new_member',
    		'updated_profile'        
        );
     
        return $retval;
    }
    add_filter( 'bp_after_has_activities_parse_args', 'my_bp_activity_types' );

    IMPORTANT: copy/paste to bp-custom.php or child-theme functions.php. Used as-is will do nothing ! You have to remove the type you don’t want from the list….

    Third party plugins (like bbPress) use also activity types. Easiest way to get the right type name is to check xxxx_bp_activity table in DB and search for it in the Type column.


    @umar007
    , removing friendship_created will solve your question.

    @djsteveb
    , remove new_avatar ! ๐Ÿ˜‰

    #242900
    djsteveb
    Participant

    @labsupplyorg
    Topics? You mean like bbpress forums topics? What do you mean exactly by “topic pages”?

    I would..
    check your permanlinks perhaps? go there, note what they are.. change them to something else.. save.. then change back.. save again..
    May not be related, but on one of my sites this similar issue crops up every other time I update rtmedia plugin for some reason.

    Does this happen if you disable other plugins?
    Does this happen with the default twenty-fifteen or 2014 theme?

    #242674

    In reply to: I want to add Spanish!

    danbp
    Participant

    @alex42152,

    The main site language should be set to spanish first.
    See in WP dashboard > Stettings > General

    Normally, this settings allows automatic translation file upload of BuddyPress and bbPress (if installed).
    If not, you can add manually the language files in the wp-content/languages/plugins/ folder to get:

    wp-content/languages/plugins/buddypress-es_ES.mo
    wp-content/languages/plugins/buddypress-es_ES.po

    Each version of BP comes also with its own translatable strings file, which is at the BP plugin root.
    wp-content/plugins/buddypress/buddypress.pot

    #242556
    danbp
    Participant

    1) depends which type of forum you use (standalone or group forum)
    https://wordpress.org/plugins/bp-registration-options/
    https://wordpress.org/plugins/bbpressmoderation/

    2) see here how to do that
    https://buddypress.org/support/topic/add-dynamic-menu-link/#post-242487

    3) i’m not aware of such feature for BP

    #242542
    danbp
    Participant

    @bigswp,

    if you have the same config today as @enaijo 5 months ago, update first.
    Actually: WordPress 4.2.3 BuddyPress 2.3.2.1 and bbPress 2.5.8-5815

    If the issue is still in, ensure that you have some friendship, as you can only invite friends to join a group.

    If all this is ok, you can open a ticket.
    Give details about your config and any hint about how to reproduce your issue and mention this topic.

    Login to Trac uses same credentials as here.
    https://buddypress.trac.wordpress.org/report

    #242537
    kjgbriggs
    Participant

    Sorry for not responding for a little while.

    Where do I put this and how do I make sure it doesn’t get removed when I update BuddyPress or BBPress?

    #242440
    kjgbriggs
    Participant

    checking the Functions file, there is a huge amount of php requirements specified at the top (13 of them), I am guessing this will mess with me trying to make a child theme out of it.

    On a lighter note.
    The CSS files are included separately so I have the styles for BBPress and BuddyPress separated out for me.

    I have tried adding these to my custom CSS, but they don’t seem to change that much, just the overall placement of things.

    #242436
    djsteveb
    Participant

    @kjgbriggs – just took a look at your oblivion thing you like – it appears to be the forums layout you are concerned with here – which may end up being more of a “bbpress” theme-ing issue – not so much buddypress… last I checked you can add “bbpress” as an auto-addon for buddypress – but if it’s not profiles and activity stream stuff – you may need to look up some “bbpress” specific theme things if you run into issues – not sure if they go over all that at bbpress dot org these days or not.. I have not checked those forums / docs in years.

    #242427
    kjgbriggs
    Participant

    Sorry for not providing enough info.

    My main theme is called Divi and is created by Elegant Themes.
    The theme I want to use just for BuddyPress stuff is called Oblivion and is created by Sky Warrior Themes.

    An example of the BuddyPress forums nd layouts is here on the Oblivion demo:

    http://skywarriorthemes.com/oblivion/forums/

    I just want the styling for the BuddyPress and BBPress stuff from Oblivion in Divi.

    I did a bit of Googling and came to the conclusion that the best way to do this was to use a Child Theme.

    Divi is updated quite a lot so I would either have to not update anymore or lose the styling if I were to add the styles to Divi directly.

    There is little information I can find on having a child theme for specific things such as buddyPress though and I am unsure of how to do it.

    #242211
    jrunfitpro
    Participant

    Must be some conflict with another plugin. My theme is Optimize Press 2 and that could be it. BBpress definitely overwrote my permalinks (used to be the custom post structure) and it flipped to subject after bbpress installation.

    #242197
    @mercime
    Participant

    @jrunfitpro What do you mean by “removing bbPress”? Deactivating/deleting bbPress from Plugins page doesn’t cause any issue per check in my local installation. WP/BP/bbPress versions?

    jrunfitpro
    Participant

    Thanks. I’m really not sure what bbPress is for? It just prompted me to add it to get the forum pages to show.

    #242120
    Whiskyharry
    Participant

    oh sorry:
    I’m using the7.2 from themeforrest.

    They’ve sent me some snippets to include in the themes functions.php, but I don’t know if I’ve included them correctly. But after including them, I had the sidebar on several pages (e.g. the member-subpages), but still missing on

    • all groups
    • single group
    • members list (first page)
    • group list (first page)
    • activity list (first page)

    They said it was a kind of “blueprint”, so I added the lines – without really understanding what I’m doing. As a result, it seems to work on some pages – but not on all:

    function dt_bbypress_template_config1()
    {
    if( is_bbpress() )
    {
    $pagid = 35615; //sidebar, footer settings of the page id given will be applied to user profiles
    $config = presscore_get_config( );
    presscore_config_base_init( $pagid );

    }
    }
    add_action( ‘get_header’, ‘dt_bbypress_template_config1’, 10 );

    function dt_buddypress_template_config2()
    {
    if( bbp_is_single_user() ){
    $pagid = 35615; //sidebar, footer settings of the page id given will be applied to user profiles
    $config = presscore_get_config( );
    presscore_config_base_init( $pagid );
    }
    }

    add_action( ‘get_header’, ‘dt_buddypress_template_config2’, 10 );

    function dt_bbypress_template_config3()
    {
    if( is_bbpress() )
    {
    $pagid = 35609; //sidebar, footer settings of the page id given will be applied to user profiles
    $config = presscore_get_config( );
    presscore_config_base_init( $pagid );

    }
    }
    add_action( ‘get_header’, ‘dt_bbypress_template_config3’, 10 );

    function dt_buddypress_template_config4()
    {
    if( bbp_is_single_user() ){
    $pagid = 35609; //sidebar, footer settings of the page id given will be applied to user profiles
    $config = presscore_get_config( );
    presscore_config_base_init( $pagid );
    }
    }

    add_action( ‘get_header’, ‘dt_buddypress_template_config4’, 10 );

    #242112

    In reply to: Restrict by role

    djsteveb
    Participant

    @lorenzoto – take a look at s2member plugin and or maybe the “press permit core” – both in the wp repo – they may do what you are describing – have not tested with bbpress stuff yet – so not 100% sure, but think I saw something in both of them for bb stuff.

    I am sure there are other similar options out there as well.

    #242055
    Henry Wright
    Moderator

    bbPress is a separate plugin. You’d need to install that as well as BuddyPress.

    shanebp
    Moderator

    Check your site-wide settings, in wp-admin, for Forums.

    btw: this is the BuddyPress support forum.

    The bbPress support forum is here.

    #241938
    xxcoincoinxx
    Participant

    Hi, I find out how to do it for Bbpress, but I still don’t find out how I can restrict access to a “normal Page” =(

    #241869
    peter-hamilton
    Participant

    sorry, password is: demouser

    I hope it shows a bit more then just a bbpress forum thats added,
    Took me a long time to add the custom functions, especially the profile pages and activity.

    #241868
    xxcoincoinxx
    Participant

    BTW, I would also have the possibility to do the same for Forums in bbpress ๐Ÿ˜‰

    #241813

    In reply to: location of selectbox

    @mercime
    Participant

    @felipexx85 You’d need to go to your site’s Activity directory page e.g. http://example.com/activity
    The content of the selectbox will depend on what components you have activated and plugin you have installed. For example, Topics and Replies only show up in the selectbox if bbPress plugin is activated.

    #241775
    djsteveb
    Participant

    @thatmtnman – sounds to me that you just have not played with a few different themes and changing some widgets – that would do about everything you are saying from what I gather. Should be pretty easy to come up with what you are talking about with just some basic theme modifications – a little css color changes and different widgets in the sidebars.

    “dying to see how you did it” – I think the site you are talking about just added a bbpress forums plugin and added some topics to the sidebar.

    “BP might not be able to handle a high traffic siteโ€ฆ” – handles a small site on a shared server fine – handles a site with 10,000 members on a dedicated server just fine (even sharing that dedicated with a dozen other wp and wp-multisite and bunch of other fair traffic sites – so I don’t think that would be an issue.

Viewing 25 results - 1,451 through 1,475 (of 7,498 total)
Skip to toolbar