Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 4,976 through 5,000 (of 64,471 total)
  • Author
    Search Results
  • #208963
    alexsteninge
    Participant

    Hi,

    Is there in BBPress a way to setup a “new posts/activities since your last visit”? A sort of ‘mark as read’ functionality or similar?

    I have searched the forum and can see that there are some topics relating to this area, but they are quite old and the majority refer to plugins that are 4 – 7 years old.

    Br Alex

    #208961
    cwaite
    Participant

    Hi Robin

    Yes I have even tried deactivating, then deleteing bbpress and then re-installing. I still, get the same issue.

    This is a new site, new problem. It worked OK to start with while testing until we deleted a test post.

    I’m thinking, as wer have deleted and reinstalled, something is retained in the settings/post in the DB that causes the issue.

    #208960
    Robin W
    Moderator

    hmmm…..

    old site, new problem?
    new site new problem?
    always happened?
    only happening after update of bbpress?
    etc.

    you could try deactivating and then deleteing bbpress and then re-installing

    you won’t lose any posts you already have

    cwaite
    Participant

    Hi
    I have seen quite a few people have this issue. Everythibg in bbpress works apart from when you click replies and then the page shows a Service Unavailable error message. I have tried all the options mentioned in other posts like turning off all other plug-ins, changing the theme to Twenty Twenty and also talking to our hosting company and still cannot get it to work. The hosting company tried changing the php versions but the still gave the error message. Error 500 for php7 and error 503 for php7.2. They also checked the error logs and said there was no errors showing. It was working OK when it was a fresh installation, all we have done is add a few test topics and posts and deleted 1 reply. The it starts to give the error.

    Does nyone have a solution to this that I haven’t tried?

    Many Thanks
    Regards
    Colin

    #208956
    Chuckie
    Participant

    I am using WP Sweep and it lists unused tags. It does not test BBPress for using any of the tags.

    What steps are involved to detect if a tag is used in the database with forum topics / replies

    #208954
    wpweaver
    Participant

    This refers to bbPress 2.6.4.

    If a new user topic or reply fails bbPress moderation (either links or bad words), the end user gets no message at all. What they see is simply nothing – just the edit box again, with no indication that their post was marked as pending, and awaits moderation.

    So what happens? The user reposts the same message, over and over and over. I have examples of users reposting 10 times. They eventually may ask what is going on, or go away angry.

    This seems to be new behavior since 2.6, and depending on the forum admins, this behavior may seem to be mysterious. I’ve run a highly technical forum for years, and did not know about this changed behavior in 2.6 because users typically did not post with more than 2 links.

    Even now knowing that, the users are still left mystified. This is very poor user interface design, and the only reasonable solution now is to essentially eliminate any moderation at all.

    add_filter( 'bbp_bypass_check_for_moderation', '__return_true' );

    Much much better would be to let the user know what happened. I’ve read all the code for moderation, and can’t see any filters to override to add a message for the user.

    It would be wonderful to fix this issue, and issue a “Your topic/reply is awaiting moderation.”
    The moderators need to get a message as well.

    #208950
    Robin W
    Moderator

    ok, put this in your child theme’s function file – or use

    Code Snippets

    add_filter( 'bbp_register_topic_post_type', 'rew') ;
    
    function rew ($rew) {
    
    $rew = array(
    				'labels'              => bbp_get_topic_post_type_labels(),
    				'rewrite'             => bbp_get_topic_post_type_rewrite(),
    				'supports'            => bbp_get_topic_post_type_supports(),
    				'description'         => esc_html__( 'bbPress Topics', 'bbpress' ),
    				'capabilities'        => bbp_get_topic_caps(),
    				'capability_type'     => array( 'topic', 'topics' ),
    				'menu_position'       => 555555,
    				'has_archive'         => ( 'forums' === bbp_show_on_root() ) ? bbp_get_topic_archive_slug() : false,
    				'exclude_from_search' => true,
    				'show_in_nav_menus'   => true,
    				'public'              => true,
    				'show_ui'             => current_user_can( 'bbp_topics_admin' ),
    				'can_export'          => true,
    				'hierarchical'        => false,
    				'query_var'           => true,
    				'menu_icon'           => '',
    				'source'              => 'bbpress',
    			)  ;
    			
    return $rew ;
    }
    
    add_filter( 'bbp_register_reply_post_type', 'rew2') ;
    
    function rew2 ($rew) {
    
    $rew2 = array(
    				'labels'              => bbp_get_reply_post_type_labels(),
    				'rewrite'             => bbp_get_reply_post_type_rewrite(),
    				'supports'            => bbp_get_reply_post_type_supports(),
    				'description'         => esc_html__( 'bbPress Replies', 'bbpress' ),
    				'capabilities'        => bbp_get_reply_caps(),
    				'capability_type'     => array( 'reply', 'replies' ),
    				'menu_position'       => 555555,
    				'exclude_from_search' => true,
    				'has_archive'         => false,
    				'show_in_nav_menus'   => true,
    				'public'              => true,
    				'show_ui'             => current_user_can( 'bbp_replies_admin' ),
    				'can_export'          => true,
    				'hierarchical'        => false,
    				'query_var'           => true,
    				'menu_icon'           => '',
    				'source'              => 'bbpress',
    			)  ;
    			
    return $rew2 ;
    }
    #208945
    mindylll
    Participant

    Sometimes, in our forums, a post shows up twice or even three times. Is there a fix for this?

    Version 5.3.2 of WordPress
    The most recent version of BBPress

    #208944
    mindylll
    Participant

    I tried to subscribe to one of my forum posts yesterday, but it wouldn’t “Take” until clicking “subscribe” about 3-4 times. The same thing happened today. I click “subscribe”, it looks like I’m subscribed, then it disappears after I reply to the thread. I had to click multiple times to get it to “take”. Do you know why this would be happening?

    Version 5.3.2
    The newest version of BBPress
    Rickthomas.net (forums are member protected, though)

    #208939
    wpa2mik
    Participant

    This fix works for me! Thanks a lot!

    Following info may be useful:
    * PHP 7.3
    * Word Press 5.3.2
    * bbPress 2.6.4
    * No additional plugins related to bbPress.

    #208925
    Robin W
    Moderator

    bbpress just uses WordPress login, so the issue is there.

    wordpess doesn’t gave this feature in native mode, so I suspect you have another password/login related plugin that is causing the issue

    #208919
    wpa2mik
    Participant

    Hi,

    I faced the same problem after update to bbPress 2.6.4.
    It’s very important to show ‘last updated’ correctly, because it’s needed to control the forum.

    #208911

    In reply to: User Statistics

    Chuckie
    Participant

    Thanks, so something like this:

    // Actually build all of this HTML
    function build_html() {
        
        $this->sort_users();
        $data = $this->stats_builder();
        $HTMLOutput = "";
        
    	if (is_user_logged_in())  {
    		if ( is_bbpress() && current_user_can( 'spectate' ) ) {
    			foreach( $data as $key => $html ) {
    			   $HTMLOutput .= "<div class='bbpas-" . $key . "' id='bbpas-" . $key . "'>" . $html . "</div>";
    			}
    		}
        }
    	
        return $HTMLOutput;
    }

    Yes?

    #208910

    In reply to: User Statistics

    Robin W
    Moderator

    add an additional if statement

    if ( is_bbpress() && ! current_user_can( 'spectate' ) )

    if they can’t spectate then they are blocked

    #208895
    daphnedelay
    Participant

    It seems this forum only answers certain questions…

    I really want to keep BBpress on my site, but it’s just as easy to take it down if support is non-existent 🙁

    Any help to above question would be appreciated.

    #208877
    visimedia
    Participant

    how to hide new topics n replies of bbpress in buddypress activity wall?
    I tried wb com plugin activity filter, it messed up with my other plugin from buddydev to show all community activity tab.
    can u help?

    #208871
    jimandms
    Participant

    Ok everyone I have searched and tried everything I have found but it all seems to be for subforums.

    My problem: I have categories set up and then my forums are sub forums under that.

    I have one forum that I have sub-subs under. These show as a list like forum1,forum2, forum3…

    I would like the sub-subs to display like
    forum1
    forum2
    forum3

    I have the latest version of bbpress and haven’t found anything in there. I have also tried the plugins that others have suggested and they were no help either.

    https://jimandms.com/wp-content/uploads/2020/02/Screenshot.png

    You can see how my forum is set up in the pic. The big list I would much rather have look like the rest of the forum but just be indented some.

    Thanks for reading!
    Jim

    #208866
    Mike Straw
    Participant

    I’ve got the same issue with a BuddyPress/bbPress installation with private groups that have private forums. Forum search searches ALL the forums, whether they’re private or not and whether the user should be able to see that forum.

    I deactivated forum search from WP Admin (Settings > Forums > Allow forum wide search) until there’s a way to close this security hole.

    #208865
    webmasterfreya
    Participant

    WP 5.3.2
    BBpress 2.6.4
    Buddypress 5.1.2 (with private forums)

    Hi,

    When entering a registered user name via [bbp-search], messages from this user are shown eventhough they are in a private forum and the requesting user is NOT a member of that group.
    This clearly violates the privacy and should not be happening.

    I have removed all occurences of [bbp-search] , and with that lost the ability to search through the forums.

    To test
    – create 2 users (eg user-1, user-2)
    – Make user-1 member of a private forum (forum-1) and create a topic and some replies.
    – Make user-2 member of anothher private forum (forum-2) and create a topic and some replies.

    – create a testpage with content [bbp-search], publish
    – login with user-1
    – got to testpage and search for user_2

    No messages should show up, but i’m afraid they will.

    Could anyone please try and get back here to share the result?

    #208864
    daphnedelay
    Participant

    Hi! Started to advertise new forum on my site and had my assistant try it out only to discover lots of kinks (yikes!) I’m working through them but stuck on “Password reset is not allowed for this user”

    She waited for an email to set password which never happened. So she tried to login without a password to force the “forgot password” reset and got the above error message. I’ve looked everywhere on the backend to allow but can’t figure it out.

    I’m sad my forum isn’t working yet. Sure hope it can get going easily. Appreciate any help to make user registration seamless 🙂 thanks!

    Mirror Ministries


    BBpress 2.6.4
    WP 5.3.2

    #208854
    Robin W
    Moderator

    if you have subscriptions set in

    dashboard>settings>forums

    then this should show.

    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

    #208853
    Robin W
    Moderator

    I suspect that another plugin or your theme is causing this.

    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

    artmuns
    Participant

    This is an odd one. I set a topic to Super Sticky but was unable to change to Normal. After Update it would revert back to Super Sticky. I was able to change to Sticky from Super Stick but still can not change to Normal.

    Wordpress 5.3.2
    bbPress 2.4.6

    musiclibraryreport.com

    Thanks for any help.

    #208837
    bigskyry
    Participant

    We are hosted on Kinsta and are considering testing Redis for object caching to improve bbPress performance.

    Questions:

    1. Any particular advice on specific recommendations for configuration?
    2. Anyone else use Redis and see improvements? How did you measure those improvements?

    Caveat: * we are also a membership-based site (MemberMouse) and forum posting is a privilege of certain membership levels.

    #208828
    Alpo
    Participant

    I have the latest WP version and bbPress version installed as vell.

    Now I faced a challenge, since we have several organisations on our site and each of them have their own discussion forums.

    When forum moderator wants to edit forum thread, the moderator is able to see other forums and even move topics to other organization forum.

    Now comes the question:
    Are there any ways how to hide site forums existence and prevent moving threads to other forums?

    Thank you in advance!

Viewing 25 results - 4,976 through 5,000 (of 64,471 total)
Skip to toolbar