Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 1,226 through 1,250 (of 64,471 total)
  • Author
    Search Results
  • We are a writer group running a 6.2.2 WordPress install, 7.4.33 PHP version, the current version of OceanWP theme, PaidMembershipPro 2.11 (current), and BBPress 2.6.9. Our host is SiteGround shared hosting.

    Our forum users are experiencing intermittent time-out issues when replying to forum posts. The issue seems to be with longer reply posts, 450 words or more, getting Page Unresponsive messages after hitting SUBMIT Page unresponsive issue

    I increased the Dynamic timeout in .htaccess but that doesn’t seem to helping:

    <IfModule mod_dtimeout.c>
    <Files ~ “.php”>
    SetEnvIf Request_URI “index.php” DynamicTimeout=300
    SetEnvIf Request_URI “wp-admin/themes.php” DynamicTimeout=300
    SetEnvIf Request_URI “wp-admin/admin-ajax.php” DynamicTimeout=300
    SetEnvIf Request_URI “wp-admin/admin.php” DynamicTimeout=300
    </Files>
    </IfModule>

    I’m not sure what’s generating this Page Unresponsive message, and why it’s intermittent. The reply posts don’t seem that large, and there are only 2 or 3 users on at a given time.

    #236144

    In reply to: Register / Sign In-Out

    Robin W
    Moderator

    bbpress just uses the WordPress registration system, so google around to find a WordPress registration and logion plugin that suits you.

    #236141
    lmstearn
    Participant

    WP 6.2.2, BBPress: 2.69
    Problem Page:
    https://stearnvault.com/forums/topic/styles/page/3/#post-452

    List tags force the post text outside of bbp-body block.
    If not BBPress, then the WP editor?
    Thanks.

    Ronny Kreuzberg
    Participant

    Deprecated: Die Funktion get_option wurde mit einem Argument aufgerufen, das seit Version 5.5.0 veraltet ist! Der Optionsschlüssel „blacklist_keys“ wurde in „disallowed_keys“ umbenannt. in /www/htdocs/w01decc8/my-url/wp-includes/functions.php on line 5697

    My script says blacklist_keys is found in
    /www/htdocs/w01decc8/my-url/wp-admin/includes/upgrade.php
    /www/htdocs/w01decc8/my-url/wp-content/debug.log
    /www/htdocs/w01decc8/my-url/wp-content/plugins/bbpress/includes/common/functions.php
    /www/htdocs/w01decc8/my-url/wp-content/plugins/updraftplus/central/modules/comments.php
    /www/htdocs/w01decc8/my-url/wp-includes/option.php

    Robin W
    Moderator
    miraj2646
    Participant

    I use Discy theme for Question and answer. How can I transfer all my questions and answers to the bbpress plugin or other questions and answers plugin?

    I have asked the same question on many platforms, no one has given an answer or solution. I currently want to use the ASTRA theme.

    #236106

    In reply to: topic user template

    Robin W
    Moderator

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the files you want put in in the directory called bbpress that you created above

    bbPress will now use these instead of the original

    Robin W
    Moderator

    As described this would be very complicated, requiring both single sign on, and data links between two wordpress sites.

    I suspect it is doable, but would take many hours work and probably custom code to achieve.

    Using a single site, you could have bbpress and use this additional plugin to create private forums for groups whilst having other forums visible by all groups.

    This will not fix the sub groups having events and blog posts

    #236084
    longtinc
    Participant

    Any other suggestions?

    Is there a way to reset bbPress without losing all the content?
    Can I export the content and posts, delete the plugin, reinstall and reimport?

    #236081
    longtinc
    Participant

    We are using bbPress for a site. Following a domain change, we are unable to load the feed page (https://portal.cnar-rcor.ca/feed/?post_type=forum).

    Fatal error: Allowed memory size of 805306368 bytes exhausted (tried to allocate 262144 bytes) in /home/customer/www/portal.cnar-rcor.ca/public_html/wp-includes/class-wp-object-cache.php

    We tried everything we can find to increase the memory and that does not fix anything.
    The memory is at 768M and we are running PHP version 8.

    The error only appears after activating the bbPress plugin.

    Any ideas?

    #236066
    andrew55
    Participant

    I’ve noticed the ‘bbPress Custom Reply Notifications’ plugin no longer seems to work. The plugin’s fields still show in forum setting, but bbPress is sending out original topic emails.

    Anyone know a workaround for this or maybe a different plugin that will allow me to send out custom topic emails?

    #236064

    In reply to: Subscription help

    Leif
    Participant

    Oh rightXD I installed a different plugin that supports bbPress that sends on-site notifications for subscribed threads.

    And thank you!

    #236016
    eluyawi
    Participant

    Hi!, I am using Learndash + bbPress, and I have LearnDash bbPress addon also. I have two courses where each of them have its forums configured.
    Example:

    CourseA
    ForumA
    ForumB

    CourseB
    ForumC
    ForumD

    If there is a student in courseB and he wants its forums, he can see all of them
    ForumA
    Associated Courses and Groups
    CourseA
    GroupA

    ForumB
    Associated Courses and Groups
    CourseA
    GroupA

    ForumC
    Associated Courses and Groups
    CourseB
    GroupB

    ForumD
    Associated Courses and Groups
    CourseB
    GroupB

    So, if the student of CourseB, can NOT access ForumA and ForumB when clicks on them, but he can access to the ForumC and ForumD.

    My question is: How can I make that when he sutdent of CourseB, if he wants to see his forums, only ForumC and ForumD appear and ForumA and ForumB remain hidden for this case?

    All the forums is showed by default

    #236015

    In reply to: Forum Dashboard

    Robin W
    Moderator
    #236013

    In reply to: Customize Shortcodes

    shake1
    Participant

    I made the following because of an error, does it look ok?

    
    function filter_bbp_get_view_query_args( $args, $view ) {
        // Check if the view exists
        if ( function_exists( 'bbp_get_view' ) ) {
            if ( ! bbp_get_view( $view ) ) {
                return new WP_Error( 'invalid_view', __( 'Invalid view specified.', 'bbpress' ), $view );
            }
        }
    
        if ( 'popular' === $view ) {
            $args['date_query'] = array(
                array(
                    'after' => '1 week ago',
                ),
            );
        }
        return $args;
    }
    add_filter( 'bbp_get_view_query_args', 'filter_bbp_get_view_query_args', 10, 2 );
    
    
    #236011
    shake1
    Participant

    Questions about customization. I am using a translation tool, so my English may be unnatural.

    In [bbp-single-view id='no-replies'], closed topics are also displayed, so I would like to limit it to open topics, does the following code seem ok? Please advise.

    
    add_action( 'bbp_register_views', 'custom_bbp_no_replies' );
    
    function custom_bbp_no_replies() {
    	bbp_register_view(
    		'no-replies', 
    		__( 'Topics with no replies', 'bbpress' ),
    		apply_filters(
    			'bbp_topic_no_replies_query', 
    			array(
    				'post_parent' => 'any', 
    				'post_status' => bbp_get_public_status_id(),  // Changed to show only open topics
    				'meta_key' => '_bbp_reply_count',
    				'meta_value' => 1,
    				'meta_compare' => '<',
    				'meta_type' => 'NUMERIC'
    			)
    		), 
    		false
    	);
    }
    
    
    #236009
    shake1
    Participant

    Excuse me for asking a question about customization.
    I am using a translation tool, so my English may be unnatural.

    I would like to limit the posts displayed in [bbp-single-view id='popular'] to 7 days.

    
    function filter_bbp_get_view_query_args( $args, $view ) {
        // Check if the view exists
        if ( ! bbp_get_view( $view ) ) {
            return new WP_Error( 'invalid_view', __( 'Invalid view specified.', 'bbpress' ), $view );
        }
    
        if ( 'popular' === $view ) {
            $args['date_query'] = array(
                array(
                    'after' => '1 week ago',
                ),
            );
        }
        return $args;
    }
    add_filter( 'bbp_get_view_query_args', 'filter_bbp_get_view_query_args', 10, 2 );
    
    
    #236005

    In reply to: topic user template

    Robin W
    Moderator
    #235997

    In reply to: Forum Dashboard

    Robin W
    Moderator

    for your role, what bbpress level do you have?

    dashboard>users>all users and look at the bbpress role.

    You need to be a keymaster to see forums, topics and replies and a moderator to see topics and replies.

    #235995
    rayray714
    Participant

    Hello,

    For some reason I can’t get bbPress to populate on my dashboard navigation. The only location i can see bbPress is within the customizer, but that wont let me edit forums.

    I am running WP v6.2.2
    I had bbPress v2.6.9 which it didnt populate on the dashboard.
    I am now running v2.7.0-alpha and still having this issue.

    #235962
    Robin W
    Moderator

    I used a plugin called “bbpress-new-topic-emailer”.

    can you provide a link to this plugin?

    #235961
    Robin W
    Moderator

    bbpress has not had a release since November 2021, so what do you mean by ‘has lately’ – if after that, then suspect something else is now making that not work.

    You suggested cause (‘I suspect the code doing this is non-standard’) may be correct and something else is now causing this to show or it may not be bbpress causing this. Maybe look at what else has changed – wordpress, php versions, other plugins etc.

    Without knowing your set up or indeed your technical ability (although from you post this seems to be good!) I’d also initially suggest the standard fault finding :

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, 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.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #235951
    zoddshop63
    Participant

    Sorry to bother but in bbpress when users type something the resulting lines of text is double or tripled space. Each break(pressing enter) results in like a 30px gap between the lines of text. How can I change this?

    #235946

    In reply to: Child theme questions

    Scordisian
    Participant

    Actually, breadcrumbs as well and I am puzzled by the Extras folder in the templates. Can those files just be moved into the mychild/bbpress/ folder? I checked the documentation but I couldn’t find a clear answer.

    #235940

    Topic: user review plugin?

    in forum Plugins
    zoddshop63
    Participant

    Is there any plugin that integrates with bbpress, where users can leave rate and leave feedback on other users?

Viewing 25 results - 1,226 through 1,250 (of 64,471 total)
Skip to toolbar