Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 1,251 through 1,275 (of 7,527 total)
  • Author
    Search Results
  • #253018
    ppsonline1
    Participant

    Is there anything out there that will allow me to post a new topic and select members of the site who are authorized to reply and view the topic. I have multiple groups set up but need the ability to post some topics in bbpress where only certain members have access.

    #253008
    rmens
    Participant

    The new e-mail system in version 2.5 a step in the right direction, but it doesn’t make things simpeler. For example:

    – Registration e-mails are sent via Buddypress
    – Password reset e-mails are sent via WordPress
    – Changing an e-mail address is sent via Buddypress
    – Notifications of reply in topic is sent via bbpress
    – Notifications van private messages are sent via Buddypress

    It would be great if Buddypress has templates for WordPress en bbpress e-mails too. Or at least for password resets. This makes it less complicated to style e-mails once Buddypress is installed.

    jl3nz
    Participant

    I am having an issue with my Buddypress Notification Settings not saving. When you change any options from “Yes” to “No” and click the “Save” button at the bottom of the page, the page reloads but the changed options don’t save.

    WP version 4.4.1
    Theme PageLines Framework 2.4.6
    PHP version 5.4.13
    bbPress version 2.5.8-5815
    site url http://www.wpfilm.com
    Active Plugins Name and Version
    – p1 Gravity Forms 1.9.15
    – p2 Add Shortcodes Actions And Filters 2.0.3
    – p3 Akismet 3.1.8
    – p4 BAW Multipass for Protected Pages 1.4
    – p5 bbP Toolkit 1.0.6
    – p6 bbPress 2.5.8
    – p7 Better Notifications for WordPress 1.3.9.5
    – p8 BuddyPress Username Changer 1.1
    – p9 BuddyPress 2.4.3
    – p10 CloudFlare 1.3.20
    – p11 Display Categories Widget 2.0
    – p12 Disqus Comment System 2.84
    – p13 Gravity Forms ActiveCampaign Add-On 1.3.1
    – p14 Gravity Forms Authorize.Net Add-On 2.1.1
    – p15 Gravity Forms MailChimp Add-On 3.7.1
    – p16 Gravity Forms PayPal Standard Add-On 2.6
    – p17 Gravity Forms Survey Add-On 2.6
    – p18 Like Button Voting & Rating 2.1.9
    – p19 MemberPress Active Campaign 1.0.4
    – p20 MemberPress AWS 1.2.5
    – p21 MemberPress Developer Tools 1.0.2
    – p22 MemberPress Importer 1.2.3
    – p23 MemberPress to VHX.tv 1.0
    – p24 MemberPress WP Films Addons 1.0
    – p25 MemberPress Developer Edition 1.2.7
    – p26 Nav Menu Roles 1.7.7
    – p27 Open Graph Metabox 1.4
    – p28 bbPress for PageLines 2.0.2
    – p29 Recent Posts Widget Extended 0.9.9.5
    – p30 Shortcodes in Menus 3.1
    – p31 Stream 3.0.5
    – p32 Update Control 1.5
    – p33 UpdraftPlus – Backup/Restore 1.11.28
    – p34 WP Better Emails 0.3

    #252984
    bogski
    Participant

    Hi,

    I was just wandering how the forum permissions worked with regards to inheritance.

    I have numerous forums which are set to private, inside them I have sub forums. Do these sub forums inherit their permissions from the parent forum?

    I have

    Forum Category – Set to private
    Sub Forum – set to dafult (public, i think?)
    Sub Forum – set to default also

    I know some forum software will do this. I just wanted to know if BBpress does this or if i would need to set it on each private forum. Id rather do it now before the forums start to fill up.

    Regards,

    Phil

    itsasiak
    Participant

    Hi all,

    I am working in a site with WP4.5.1 + BP 2.5.2 + bbpress 2.5.8

    I have been working on a custom group creation process and I got some good stuff I just want to share with the community. I have noticed that the group creation steps are stored within the $bp object and that they can be accessed and reseted. The standard group creation steps are the following (though they may be reordered in your installation or have less or more steps):

    1. Group Details 2. Group Settings 3. Forum 4. Group Avatar 5. Group Image Cover 6. Invite friends

    In my case, I needed to get rid of some of those steps and, as well, “Group Image Cover” step was prompting me to the “Are you sure you want to do this?” screen (I think it is related to the nonces, but I am not sure about this).

    You can list your particular group creation steps by copying this snippet somewhere in your site (they will be listed in a page – I used my /group/create.php template). I took a part of the code from the function “groups_action_sort_creation_steps”, located in /buddypress/bp-groups/bp-groups-actions.php:


    <?php global $bp;
    foreach ( (array) $bp->groups->group_creation_steps as $slug => $step ) {
    while ( !empty( $temp[$step['position']] ) )
    $step['position']++;
    $temp[$step['position']] = array( 'name' => $step['name'], 'slug' => $slug );
    };
    print_r(array_values($temp)); ?>

    Once you have your steps and you have decided which you want to get rid of, build the array to be passed to the $bp object following this model and the information you found in the previous list:


    $temp = array(
    "0" => array("name" => "Details","slug" =>"group-details" ),
    '1' => array("name" => "Information","slug" =>"plus-tab"),
    '2' => array("name" => "Forum","slug" =>"forum" ),
    );

    And then place this action hook in your bp-custom.php (which is also inspired in the sorting function):


    function custom_group_creation_steps() {
    global $bp;
    unset($bp->groups->group_creation_steps);

    $temp = array(
    "0" => array("name" => "Details","slug" =>"group-details" ),
    '1' => array("name" => "Information","slug" =>"plus-tab"),
    '2' => array("name" => "Forum","slug" =>"forum" ),
    );

    foreach( (array) $temp as $position => $step )
    $bp->groups->group_creation_steps[$step['slug']] = array( 'name' => $step['name'], 'position' => $position );
    }

    add_action( 'bp_init', 'custom_group_creation_steps' );

    As I got rid of the “Image Cover Step”, now my group creation process does not print the annoying “are you sure you want to do this?” screen. But this screen is related to particular setups, so I cannot guarantee you’ll get rid of it with this code.

    Happy coding!

    #252933
    bogski
    Participant

    Hi,

    I have BBpress forum installed and I have a few groups with their own forums set up. What I would like to do which doesnt seem possible from the WP admin panel is set a ‘Category’ for a group instead of a forum.

    Each group has its own set of forums but I dont want users to be able to post into the first level of forums. so far I have:-

    Group forum title – I want this to be a category, not a forum. The rest can be forums
    Forum 1
    Forum 2
    Forum 3

    I have noticed in the Groups Administration area any categories are greyed out when I try and select them. Is there a way to change this? Is there something that I can put into the bp-custom.php file I have created to do this?

    Thanks,

    Phil B

    #252926
    Jeff
    Participant

    I have a chance to use a third-party plugin for allowing users to “Like” activity entries. I need to first disable or hide the existing “Like” functionality. Is there a setting for this?

    Plugins:
    Akismet (3.1.10) by Automattic
    Awesome Support (3.2.9) by ThemeAvenue
    bbPress (2.5.8) by The bbPress Community
    BuddyBoss Inbox (1.0.4) by BuddyBoss
    BuddyBoss Media (3.1.9) by BuddyBoss
    BuddyBoss Reply by Email (1.0.2) by BuddyBoss
    BuddyBoss Wall (1.2.7) by BuddyBoss
    BuddyPress (2.5.2) by The BuddyPress Community
    BuddyPress Edit Activity (1.0.7) by BuddyBoss
    BuddyPress Xprofile Custom Fields Type (2.4.6) by donmik
    Gravity Forms (1.9.18) by rocketgenius
    Gravity Forms Help Scout Add-On (1.3) by rocketgenius
    Gravity Forms Polls Add-On (3.0) by Rocketgenius
    Gravity Forms Survey Add-On (3.0) by Rocketgenius
    Gravity Forms Trello Add-On (1.0) by rocketgenius
    Gravity Forms User Registration Add-On (3.3) by rocketgenius
    Invite Anyone (1.3.10) by Boone Gorges
    Like Button Voting & Rating (2.1.9) by LikeBtn
    List Plugins (1.4.4) by SedLex
    Maintenance (2.7.1) by fruitfulcode
    Orbit (1.6) by TrueThemes
    POWr Social Feed (1.4) by POWr.io
    POWr Social Media Icons (1.4) by POWr.io
    Remove Dashboard Access (1.1.3) by Drew Jaynes (DrewAPicture)
    Subscribe To Comments (2.3) by Mark Jaquith
    TinyMCE Advanced (4.3.8) by Andrew Ozz
    User Role Editor (4.25.1) by Vladimir Garagulya
    WordPress Social Stream (1.5.15) by Lee Chestnutt
    WPBakery Visual Composer (4.11.2) by Michael M – WPBakery.com

    Thanks!

    #252899
    bogski
    Participant

    Hello!

    I have a WordPress website running BuddyPress and BBPress and they are working great. However I have one small question.

    Currently, when my users log in they are taken to their profile page and presented with the ‘Forums’ tab as default. Now from what I can tell, this will display all forums that they have posted in or are subscribed to.

    What I would like to do when they land on this page is display a list of all forums they have access too. Like the default forums page (mysite.com/forums) and not their most recent activity.

    The reason for this is the forums are all private or hidden depending on a users group. So I would like to present them the forums listing first, without having to put a link in my main Nav Menu to the forums.

    Is this possible? I thought it might be possible with something like define('BP_DEFAULT_COMPONENT'); and i’ve found a way to change the groups and members landing page to display forums as a default using similar code.

    EDIT:

    Also, is there a document that contains all the usable functions/hooks that I can download such a spreadsheet or something? just to save time trying to find stuff again. If not I will just add the them into one myself as I go along.

    #252889
    peterkortvel
    Participant

    Hi, I know this is a pretty common question and I googled but still can’t find answer. I had permalink set up to postname (/%postname%/) and it worked. However then I only visited the page with permalink settings (didn’t even click on anything) and I got 500 error. (Before this I disallowed commending for non registered users).

    When I delete web.config home page and admin works. So then I was able to disable permalink. Now all website worked (apart from one ALl-in-ONe migration tool, where I couldn’t download the backup 404)

    Then I set up permalinks back to postname and added this to htaccess:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    

    Now the website works with clean urls well (only ALl-in-ONe migration tool still not working – and who know what else is not working).

    Did I do something wrong here? Should I expect some more problems with this setting? Is there a more proper way to set it up?

    Thank you!

    Answers:
    1. Which version of WordPress are you running? 4.5
    2. Did you install WordPress as a directory or subdomain install? Normal main domain
    3. If a directory install, is it in root or in a subdirectory? Root
    4. Did you upgrade from a previous version of WordPress? If so, from which version? No
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes (even with buddypress till this happened)
    6. Which version of BP are you running? 2.5.2
    7. Did you upgraded from a previous version of BP? If so, from which version? No
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    All-in-One WP Migration, BuddyPress, Frontier Post, Shortcodes Ultimate, Simple Share Buttons Adder, The Events Calendar, Velvet Blues Update URLs
    9. Are you using the standard WordPress theme or customized theme? Standard
    10. Have you modified the core files in any way? No
    11. Do you have any custom functions in bp-custom.php? No
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    13. Please provide a list of any errors in your server’s log files.
    14. Which company provides your hosting? forpsi
    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Windows

    #252817
    fredgraver
    Participant

    Sure:

    bbPress
    BB Profile Search
    BB Registration Options
    BuddyPress
    BuddyPress Cover Photo
    BuddyPress Docs
    BuddyPress Group Email
    Fast Secure Contact Form
    K Elements
    NextGen Gallery
    NextGen Plus
    rtMedia for WordPress, BuddyPress and bbPress
    Sidekick
    Slider Revolution
    User Role Editor
    WP Smush Pro
    WP-DBManager
    WPBakery Visual Composer
    WPMU Dev Dashboard

    No Custom Code on there, just what comes with Kleo and WP.

    thanks!

    fred

    lalas
    Participant

    I’m usind PmPro, BuddyPress and bbPress on my website.

    I would like to create 4 separate, private forums, each one requiring a separate membership level for access. All information pertaining to group members should be absolutely private — not only for non-logged in users but also for users who are not part of the respective group.

    I’ve done a lot of research and know how to hide member profiles, activity page, etc from non-logged in users in general.

    But how can I achieve the same effect for non-logged in users of specific forums?

    I’m so sorry if I’m missing something — I’ve spent days researching this.

    Thanks so much,
    Kat

    #252760
    Maksym
    Participant

    Hi!
    We’ve found a bug and we’d like to notify you about it.
    Slider Revolution 5.2.5 + BuddyPress 2.5.2 + bbPress 2.5.8 shows next notices:

    Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in wp-includes\functions.php on line 3901

    Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in wp-includes\functions.php on line 3901

    Best regards,
    Maksym

    #252757
    Julia_B
    Participant

    Hi @pixelpushermama – interestingly, no I’m not using any of the other plugins, only BuddyPress 2.5.2 and
    bbPress 2.5.8

    I’ve found a few other recent posts here on the support forums reporting similar issues but have yet to find a fix.

    Hope someone can help us out soon. 🙂

    #252750
    JaneAkshar
    Participant
    #252749
    Henry Wright
    Moderator

    Hi @janeakshar

    Try asking over at bbPress. They should be able to help with bbPress-related questions like this.

    Ref: https://bbpress.org/forums/

    #252748
    JaneAkshar
    Participant

    When I try and search the forums I get no results and returned to the home page

    website chinnockswharf.website

    Theme Custom Community

    It is a member site and you can use user bbPress password bbPress

    itsasiak
    Participant

    Hi all,

    I am currently developing a site in WP4.5 + BuddyPress2.5.2 + BBPress2.5.8.

    I need that upon member promotion to Group Admin, s/he is also promoted to BBPress Keymaster (I know, I know, some will say I should ask in BBpress forums, but what if I wanted to promote to Site Admin, uh? :).

    This should be really simple (I think) and this is the code I am using in my bp-custom.php (currently not working):


    add_action('groups_promoted_member' , 'bp_custom_update_role',206,3);

    function bp_custom_update_role($user_id,$group_id){

    $updateuser = WP_user($user_id);

    if(groups_is_user_admin($user_id,$group_id))
    $updateuser->add_role('bbp_keymaster');

    }

    Any hint? It would be highly appreciated. Thanks a lot!

    rothaar
    Participant

    Hi,

    I’m trying to figure out how I can create a translation of the BuddyPress profile page. Is there an easy way to do this? I’m not a programmer, so please go easy on me. 🙂

    Thank you!

    WordPress 4.5
    BuddyPress 2.5.2
    bbPress 2.5.8
    Polylang 1.8.5

    pixelpushermama
    Participant

    Hi there! I hope you can help at least point me in the right direction. I assist with operations of a membership-based site that runs BuddyPress. Recently, the email notifications for @ mentions and replies on wall posts have stopped working, potentially after some updates were run (by the site owner). I cycled the “Notifications” setting in the BuddyPress settings to no avail. BuddyBoss theme folks gave us no help. If there is something I am missing somewhere, or a direction to look to troubleshoot, I would be ever so appreciative!!!!! Thank you in advance!!!!!

    Here are our details:
    Wordpress 4.4.2
    Running BuddyBoss Boss.Child theme

    Plugins:
    Akismet 3.1.5
    bbPress 2.5.8
    TinyMCE Widget 2.2.8
    BuddyBoss Media 3.1.9
    BuddyBoss Wall 1.2.7
    BuddyPress 2.5.2
    BuddyPress Edit Activity 1.0.7
    BuddyPress Follow 1.2.2
    BuddyPress Forum Editor 1.0
    BuddyPress Global Search 1.1.4
    i2SDK 3.5
    Memberium 2.46.16
    Memberium Path Protect .1
    Page Builder by SiteOrigin 2.4.6
    QueryMonitor 2.10.0
    SiteOrigin Widgets Bundle 1.5.11

    #252628
    Henry Wright
    Moderator

    bbpress.php is handled by bbPress so you should give those guys a shout:

    https://bbpress.org/forums/

    This issue may also be applicable to BuddyPress templates so it’s worth keeping this topic open.

    Jake
    Participant

    On my site jspharler.com using my own theme, I have a forum page that was initially using the template page.php, but is now using bbpress.php. On all my pages I am able to utilize custom css templates except for the page using the bbpress forum. In the admin area, I am still able to select a page template, but they do not take effect. For instance, I do not want sidebars on the forum page, so I selected the no-sidebar option. I was able to verify the forum page is utilizing the files bbpress.php and template-parts/content-page.php. Doing some research I was able to discover one can edit the default bbpress css files by copy/editing to the root folder, but I want my theme users to still be able to select the layout from the admin area.

    #252584
    dfarland
    Participant

    It doesn’t appear to be. The only emails I’m receiving are those initiated by WP or bbPress. The emails related to activation, group requests, mentions, and other BuddyPress emails are not coming through.

    #252576
    sharmavishal
    Participant

    regrets dan…am very much confused now…will try to test/check few things and update…..

    currently in my setup only this works for me:

    /wp-content/languages/buddypress/bbpress-fr_FR.mo

    /wp-content/languages/bbpress/buddypress-fr_FR.mo

    other options are not working for me…might have messed up somewhere at my side….

    and that path has been mentioned here

    Languages and Translations

    bbPress in Your Language

    Thanks once again for your time.

    #252568
    sharmavishal
    Participant

    Thanks a million dan….i had a tough time to get this working….thanks once again..regarding the points

    1) i’m not aware of this behave and i doubt you can get this to work.

    Yes..its not working as expected…and yes am testing plugins out..will update this thread if i find a working solution…..

    4) you understood wrong. I said the inverse.

    so this means the following:

    the po files which would be auto updated as and when there are updates need to be put in wp-content/languages/plugins/buddypress right?

    ex:

    /wp-content/languages/plugins/buddypress/buddypress-fr_FR.mo
    /wp-content/languages/plugins/bbpress/bbpress-fr_FR.mo

    custom PO files go to wp-content/languages/plugins/

    ex:

    /wp-content/languages/plugins/buddypress-fr_FR.mo
    /wp-content/languages/plugins/bbpress-fr_FR.mo

    Kindly do confirm.

    Thanks once again

Viewing 25 results - 1,251 through 1,275 (of 7,527 total)
Skip to toolbar