Search Results for 'bbpress'
-
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
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.
Topic: Li Post Tags Outside Blocks
WP 6.2.2, BBPress: 2.69
Problem Page:
https://stearnvault.com/forums/topic/styles/page/3/#post-452List tags force the post text outside of bbp-body block.
If not BBPress, then the WP editor?
Thanks.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.phpI 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.
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?
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
ForumBCourseB
ForumC
ForumDIf there is a student in courseB and he wants its forums, he can see all of them
ForumA
Associated Courses and Groups
CourseA
GroupAForumB
Associated Courses and Groups
CourseA
GroupAForumC
Associated Courses and Groups
CourseB
GroupBForumD
Associated Courses and Groups
CourseB
GroupBSo, 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
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 ); }
Topic: Customize Shortcodes
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 );