Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 6,051 through 6,075 (of 64,513 total)
  • Author
    Search Results
  • #201357
    Robin W
    Moderator

    ‘Even though bbPress’ documentation says that users with the Participant role can read private forums and topics, the current version of bbPress (2.5.14) allows participants to read private forum names, but not private topics names or content. ‘

    sorry, can you explain further – what is not showing on what page ?

    #201356
    Robin W
    Moderator

    It could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #201353
    Robin W
    Moderator

    the templates are in

    \templates\default\bbpress

    ojmorales0002
    Participant

    Hello all,

    The social links menu displays icons only on a WordPress (version 5.2.2) site using the Twenty Seventeen theme (version 2.2), except on pages of bbPress (version 2.5.14) where it displays icons and text.

    The url of the site is Prepare.Survive.Live

    Any ideas of how to address this?

    Thanks!

    #201305
    kexia
    Participant

    Does anyone know the correct way to enable the participant role to read private topics? I found a bit of a work around (see below). But I’d like to know how to enable it correctly.

    Even though bbPress’ documentation says that users with the Participant role can read private forums and topics, the current version of bbPress (2.5.14) allows participants to read private forum names, but not private topics names or content.

    I did some searching on this site and it looks like people have been complaining and notifying bbPress about this bug for about seven years and it’s STILL not fixed. The most support help I’ve seen is someone saying the issue is because of another plugin. But that’s not the case.

    I checked the bbPress code in the capabilities.php file located in wp-content/plugins/bbpress/includes/core/capabilities.php, and sure enough, the capability to ‘read_private_topics’ is not listed under the Participant’s Topic Caps section:

    // Participant/Default
    case bbp_get_participant_role() :
    default :
    $caps = array(

    // Primary caps
    ‘spectate’ => true,
    ‘participate’ => true,

    // Forum caps
    ‘read_private_forums’ => true,

    // Topic caps
    ‘publish_topics’ => true,
    ‘edit_topics’ => true,

    // Reply caps
    ‘publish_replies’ => true,
    ‘edit_replies’ => true,

    // Topic tag caps
    ‘assign_topic_tags’ => true,
    );

    I tried adding the ‘read_private_topics’ capability to the Participant capabilities section:

    // Topic caps
    ‘publish_topics’ => true,
    ‘edit_topics’ => true,
    ‘read_private_topics’ => true,

    But that didn’t work. So then I tried copying and pasting all the capabilities from the Moderator role to the participant role, including the first part of the code under the “Primary Caps” section that lists spectate, participate, moderate, throttle, and view trash.

    // Moderator
    case bbp_get_moderator_role() :
    $caps = array(

    // Primary caps
    ‘spectate’ => true,
    ‘participate’ => true,
    ‘moderate’ => true,
    ‘throttle’ => true,
    ‘view_trash’ => true,

    // Forum caps
    ‘publish_forums’ => true,
    ‘edit_forums’ => true,
    ‘read_private_forums’ => true,
    ‘read_hidden_forums’ => true,

    // Topic caps
    ‘publish_topics’ => true,
    ‘edit_topics’ => true,
    ‘edit_others_topics’ => true,
    ‘delete_topics’ => true,
    ‘delete_others_topics’ => true,
    ‘read_private_topics’ => true,

    // Reply caps
    ‘publish_replies’ => true,
    ‘edit_replies’ => true,
    ‘edit_others_replies’ => true,
    ‘delete_replies’ => true,
    ‘delete_others_replies’ => true,
    ‘read_private_replies’ => true,

    // Topic tag caps
    ‘manage_topic_tags’ => true,
    ‘edit_topic_tags’ => true,
    ‘delete_topic_tags’ => true,
    ‘assign_topic_tags’ => true,
    );

    And it worked! Participants could then read private topics. However, it meant that they had the exact same capabilities as moderators, which defeats the purpose of having those two different user roles. And I don’t want to make all participant users moderators. So I kept the moderator capabilities under the Participant section, however, any of the moderator capabilities that I didn’t want the participant to have, I changed it from “true” to “false.” For example, I do not want participants to be able to edit others’ topics, so I changed this part of the code:

    ‘edit_others_topics’ => true,

    To this:

    ‘edit_others_topics’ => false,

    That worked. However, the button to edit others’ topics still show up for the participant, but if they click on it, either nothing happens or they get an error message saying they don’t have that privilege.

    The first time I tried this I deleted most of the first section, called Primary Caps:

    // Primary caps
    ‘spectate’ => true,
    ‘participate’ => true,
    ‘moderate’ => true,
    ‘throttle’ => true,
    ‘view_trash’ => true,

    But when I did that, it didn’t work again. It seems like the “‘moderate’ = > true,” part has to stay there in order for this work around to work.

    So in conclusion, the participant caps section was replaced with this code:

    // Participant/Default
    case bbp_get_participant_role() :
    default :
    $caps = array(

    // Primary caps
    ‘spectate’ => true,
    ‘participate’ => true,
    ‘moderate’ => true,

    // Forum caps
    ‘publish_forums’ => false,
    ‘edit_forums’ => false,
    ‘read_private_forums’ => true,
    ‘read_hidden_forums’ => false,

    // Topic caps
    ‘publish_topics’ => true,
    ‘edit_topics’ => true,
    ‘edit_others_topics’ => false,
    ‘delete_topics’ => false,
    ‘delete_others_topics’ => false,
    ‘read_private_topics’ => true,

    // Reply caps
    ‘publish_replies’ => true,
    ‘edit_replies’ => true,
    ‘edit_others_replies’ => false,
    ‘delete_replies’ => false,
    ‘delete_others_replies’ => false,
    ‘read_private_replies’ => true,

    // Topic tag caps
    ‘manage_topic_tags’ => false,
    ‘edit_topic_tags’ => false,
    ‘delete_topic_tags’ => false,
    ‘assign_topic_tags’ => true,
    );

    So that’s a work around for now. But I’d still like to know: When is bbPress going to fix this bug issue? And if they have already (and I’ve just missed it somehow): How do I correct it so that the participant user role can read private topics? If anyone has any ideas, can you please leave a DETAILED reply below, including WHERE to find the files that need to be altered. (Ex: wp-content/plugins/bbpress/includes/core/capabilities.php. I noticed that many people in this forum don’t really write down all the steps to fix things, which causes more confusion.)

    #201304
    kexia
    Participant

    Does anyone know the correct way to enable the participant role to read private topics? I found a bit of a work around (see below). But I’d like to know how to enable it correctly.

    Even though bbPress’ documentation says that users with the Participant role can read private forums and topics, the current version of bbPress (2.5.14) allows participants to read private forum names, but not private topics names or content.

    I did some searching on this site and it looks like people have been complaining and notifying bbPress about this bug for about seven years and it’s STILL not fixed. The most support help I’ve seen is someone saying the issue is because of another plugin. But that’s not the case.

    I checked the bbPress code in the capabilities.php file located in wp-content/plugins/bbpress/includes/core/capabilities.php, and sure enough, the capability to ‘read_private_topics’ is not listed under the Participant’s Topic Caps section:

    <blockquote cite=”// Participant/Default
    case bbp_get_participant_role() :
    default :
    $caps = array(

    // Primary caps
    ‘spectate’ => true,
    ‘participate’ => true,

    // Forum caps
    ‘read_private_forums’ => true,

    // Topic caps
    ‘publish_topics’ => true,
    ‘edit_topics’ => true,

    // Reply caps
    ‘publish_replies’ => true,
    ‘edit_replies’ => true,

    // Topic tag caps
    ‘assign_topic_tags’ => true,
    );
    “>

    I tried adding the ‘read_private_topics’ capability to the Participant capabilities section:

    <blockquote cite=” // Topic caps
    ‘publish_topics’ => true,
    ‘edit_topics’ => true,
    ‘read_private_topics’ => true,
    “>

    But that didn’t work. So then I tried copying and pasting all the capabilities from the Moderator role to the participant role, including the first part of the code under the “Primary Caps” section that lists spectate, participate, moderate, throttle, and view trash.

    <blockquote cite=”// Moderator
    case bbp_get_moderator_role() :
    $caps = array(

    // Primary caps
    ‘spectate’ => true,
    ‘participate’ => true,
    ‘moderate’ => true,
    ‘throttle’ => true,
    ‘view_trash’ => true,

    // Forum caps
    ‘publish_forums’ => true,
    ‘edit_forums’ => true,
    ‘read_private_forums’ => true,
    ‘read_hidden_forums’ => true,

    // Topic caps
    ‘publish_topics’ => true,
    ‘edit_topics’ => true,
    ‘edit_others_topics’ => true,
    ‘delete_topics’ => true,
    ‘delete_others_topics’ => true,
    ‘read_private_topics’ => true,

    // Reply caps
    ‘publish_replies’ => true,
    ‘edit_replies’ => true,
    ‘edit_others_replies’ => true,
    ‘delete_replies’ => true,
    ‘delete_others_replies’ => true,
    ‘read_private_replies’ => true,

    // Topic tag caps
    ‘manage_topic_tags’ => true,
    ‘edit_topic_tags’ => true,
    ‘delete_topic_tags’ => true,
    ‘assign_topic_tags’ => true,
    );”>

    And it worked! Participants could then read private topics. However, it meant that they had the exact same capabilities as moderators, which defeats the purpose of having those two different user roles. And I don’t want to make all participant users moderators. So I kept the moderator capabilities under the Participant section, however, any of the moderator capabilities that I didn’t want the participant to have, I changed it from “true” to “false.” For example, I do not want participants to be able to edit others’ topics, so I changed this part of the code:

    true,”>

    To this:

    false,”>

    That worked. However, the button to edit others’ topics still show up for the participant, but if they click on it, either nothing happens or they get an error message saying they don’t have that privilege.

    The first time I tried this I deleted most of the first section, called Primary Caps:

    <blockquote cite=” // Primary caps
    ‘spectate’ => true,
    ‘participate’ => true,
    ‘moderate’ => true,
    ‘throttle’ => true,
    ‘view_trash’ => true,”>

    But when I did that, it didn’t work again. It seems like the “‘moderate’ => true,” part has to stay there in order for this work around to work.

    So in conclusion, the participant caps section was replaced with this code:

    <blockquote cite=” // Participant/Default
    case bbp_get_participant_role() :
    default :
    $caps = array(

    // Primary caps
    ‘spectate’ => true,
    ‘participate’ => true,
    ‘moderate’ => true,

    // Forum caps
    ‘publish_forums’ => false,
    ‘edit_forums’ => false,
    ‘read_private_forums’ => true,
    ‘read_hidden_forums’ => false,

    // Topic caps
    ‘publish_topics’ => true,
    ‘edit_topics’ => true,
    ‘edit_others_topics’ => false,
    ‘delete_topics’ => false,
    ‘delete_others_topics’ => false,
    ‘read_private_topics’ => true,

    // Reply caps
    ‘publish_replies’ => true,
    ‘edit_replies’ => true,
    ‘edit_others_replies’ => false,
    ‘delete_replies’ => false,
    ‘delete_others_replies’ => false,
    ‘read_private_replies’ => true,

    // Topic tag caps
    ‘manage_topic_tags’ => false,
    ‘edit_topic_tags’ => false,
    ‘delete_topic_tags’ => false,
    ‘assign_topic_tags’ => true,
    );”>

    So that’s a work around for now. But I’d still like to know: When is bbPress going to fix this bug issue? And if they have already (and I’ve just missed it somehow): How do I correct it so that the participant user role can read private topics? If anyone has any ideas, can you please leave a DETAILED reply below, including WHERE to find the files that need to be altered. (Ex: wp-content/plugins/bbpress/includes/core/capabilities.php. I noticed that many people in this forum don’t really write down all the steps to fix things, which causes more confusion.)

    Danishsard
    Participant
    deafmetal
    Participant

    Forum Index (does same thing when using shortcodes), Child Forum, and Topics:
    Lost Header

    After upgrading to 2.6 RC 7, and doing forum repairs, I lost the header, categories and formatting for my forum index and child forums. The topics work just fine still.

    To troubleshoot, I deactivated all plugins, removed bbPress, activated the default 17 theme, and removed my primary theme. If I re-install/activate bbpress, the index and children headers then show up, albeit without the default styling.

    So I reinstalled my theme (which has native bbpress/buddypress support built in), re-activated bbpress, and the headers/categories/formatting disappeared again.

    I wanted to think it was a css issue, but I had re-installed everything fresh. So it appears something corrupted my database, tied specifically to my theme. Any recommendations for how to “fix” the repairs and undo the damage?

    For the life of me I cannot figure out how to fix this without a wholesale home home directory and sql db restoral. But I’d lose WEEKS of edits and css customization. Ughh

    Thank you in advance!!

    #201291
    Robin W
    Moderator

    It could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #201288
    Danishsard
    Participant

    Hello, are you planning to add more options to bbpress? Currently, nothing can be set on the forum, disable things that are unnecessary, change the appearance without hundreds of additions and how well it would be in the package as in other forums. Very turdno something to do with this forum

    BizDev Results
    Participant

    Hello and thanks in advance for the help. I am new to bbpress.

    I have been looking for a way to arrange my bbpress page to look like the https://bbpress.org/forums/

    With a short description of each forum on the left hand column and the list of recent topics on the right.

    Is this done with shortcodes or css or will it require development? if it is shortcodes, can someone share them with me?

    Thanks!

    bbtrouble
    Participant

    Hello, we’re using bbPress Version 2.5.14 on WordPress 5.2.2, on our site https://lightstalking.us/.

    Recently, we decided to move the part of our website to a new server (only forums actually) to increase the speed and we need to copy SQL tables with forum database from one server to another.

    Can I get the list of all the tables I need to copy in order to successfully get all the forum posts from one server to another?

    Thank you,
    Light Stalking Team

    Gogoalshop
    Participant

    hi all,

    i had created a forum with the bbPress plugin on my block, but then i still want something displaying the latest topic in forum on my front page. I have to look for some plugins to do the job but it is really difficult to find a good one.
    it will be a nice thing to me if you can really help thanks!

    #201252
    PCCC Song Thai Tung
    Participant

    Hi! i have one questions is:
    if i created forum with bb press then, my website is subdomain or website/forum?
    and if subdomain then subdoamin have receive pagerank same as website official?
    Thanks!

    #201199

    In reply to: Favourite topics

    Jamie Alexander
    Participant

    Have you integrated both bbpress and buddypress? If not, then please go to https://wisdmlabs.com/blog/integrating-buddypress-bbpress-forums-right-way/ and study the ways to integrate them. Once you did it, you can see the updates you made in your bbpress profile reflecting in your profile on buddypress. Try it, and let me know if the problem gets resolved.

    earlsn
    Participant

    As the admin, I was able to create a forum, then some topics and one reply. However, once I login under a different user with the role of “participant” or “moderator”, none of the topics display for that forum. I get the following messages on the returned forum screen:

    “This forum contains 4 topics and 1 reply, and was last updated by Earl Sneeringer 2 weeks, 3 days ago.

    Oh bother! No topics were found here!”

    How is it that I see that I have 4 topics and 1 reply but it doesn’t display this or a participant or moderator?

    My WP version is: 5.2.2 and my bbpress version is 2.8.1, my site is howardcountypickleball.org. The forum is under the Members menu item which is restricted to joined members.

    Earl Sneeringer

    #201196
    skyloft
    Participant

    Hello, I am not developer or software guy but I managed to get pretty far with my new project website

    I would like to make the bbpress forum fonts larger and darker and figure out why the search is not working.

    I searched some of the solutions but I think the solutions are beyond me so am looking to pay someone (bbpress expert) to make my forum look awesome.

    I would prefer to do this outside of this forum. Can you private message me…or do I need to put my email address in a follow up post?

    Thanks,
    Mike McGovern
    San Diego, CA

    #201194
    babacio
    Participant

    Hi to everybody, I’d like some hints over a very hard job.

    I’m making a RPG forum:

    before replying to a topic, the user must choose “Dialog” or “Description”
    If chosen “Dialog” ,replying into the topic will be with the avatar, and if chosen “Description”, it will be shown without avatar.

    Other than that, I’d like to personalize the reply with a custom class.

    How can I do this? Must I add some condition into loop-single-reply.php?
    Thank you for your attention.

    Wordpress version:
    Version 5.2.2

    Website:
    https://www.eeldasleague.it/ (site’s in italian, my mothertongue!)

    Bbpress:
    Version 2.5.14

    #201187
    chengdu-living
    Participant

    I found a solution here, in case this is helpful for anyone else: https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/

    #201186
    chengdu-living
    Participant

    I recently updated bbpress on my forum and it somehow changed the time formatting for “Freshness”. Previously it said things like “One week ago”, “One month ago” etc but now it says things like “One week, four days ago” and “One month, one week ago” etc.

    How can I change this back to the simpler format?

    Having the freshness written out in such a long way looks a bit messy. Thanks in advance for any help.

    schossie
    Participant

    Hello,
    I think this issue has been going on for years, but I dont seem to be able to find that it had been fixed at some point!

    I am using wp 5.22 bbpress 2.5.14 and buddypress 4.3.0
    It still happens when I use different themes and if I uninstall other plugins.

    In bbpress I have a plugin called private groups and the forums show in the activity stream (which I believe to be from buddy press). You cant enter the forum via the link, but still you see the heading and actually also the text.
    I wonder if this problem is because of a false bbp and BP integration? BP doesnt get the info for private/hidden forums?

    I am very new to this and dont have much experience so please tell me what more information I can give. I have also posted this issue on buddypress support.
    Has there ever been a solution to this?
    Thank you!

    #201161
    StudentFilmmakers
    Participant

    I am really struggling with this. I can’t get the index page and breadcrumbs working correctly. Screenshot

    jsima
    Participant

    Hello folks,

    I am using bbpress. I get mail when user reply on forum thread posted by me or on the thread i have been following. But i also want to send notification on the mobile in the form of text message “some one has reply to your thread”. I tried my best to find the plugin but did not get it. Do you guys know any plugin that can fulfill my requirement?

    Waiting for your positive reply.

    #201139
    Morphim
    Participant

    Sorry no one was able to help here.

    But, I managed to do it by seeing in THIS thread that there is a 2.6 beta candidate of BBPress.
    I installed that and used the BBPress1 importer and this worked.

    The same importer in the current version (2.5.?) had the same options (BBPress1) but places the DB name at the beginning of the DB prefix and then couldn’t find this extended prefix … which it wouldn’t as it didn’t exist.

    So, version 2.6 beta seemingly didn’t add this so all went well.

    I do like the integration on BBpress into WP rather as a separate entity. I might move my PHPbb forums to this at some point.

    #201119
    Morphim
    Participant

    Hello.
    I’ve just changed host and one of the WP sites I have included a bbpress forum. Someone else managed the site; I only ever updated the core and plugins and didn’t really pay much attention to it other than to see the main site was still working OK. I think I probably missed something regarding this a few years back.

    However, having moved it, I realise the BBpress forum isn’t working. I’m not sure if it was working on the old site but my hunch is that BBpress has changed.

    The old forum was located at http://mysite/bbpress
    whereas now, I think BBpress is integrated into WP (which is great, by the way)

    I also have a bbpress config file with settings for the DB. I’m thinking this is also redundant too as it seems the bbpress settings are just stored in the regular WP db tables.

    I can see my old forum within the bb_forums, bb_meta, bb_post table of my db but in the admin of WP, under the ‘forums’ menu I see ‘no forums’

    So, my question is, how do I get the info from the bb_ tables to register as an integrated forum in the new bbpress?

    Thanks very much in advance if you can help.

    By the way, the old site is no more as I have already switched hosts.

Viewing 25 results - 6,051 through 6,075 (of 64,513 total)
Skip to toolbar