Search Results for 'bbpress'
-
Search Results
-
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 );Topic: Forum Dashboard
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.Topic: make text single space
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?
Topic: user review plugin?
Is there any plugin that integrates with bbpress, where users can leave rate and leave feedback on other users?
Topic: Website integration
Hello,
I have a WordPress website in the tattoo niche and I’m interested in adding a discussion forum where people can engage in conversations about tattoo artwork. I would like to know if it’s possible to integrate the bbPress forum with my WordPress website on body artwork.
Thank you.
Topic: Child theme questions
I am finishing a Bootstrap 5 theme and I have some questions about the child theme structure.
From what I can asses using BBpress theme as a child theme is by doing the following:Copy all the template/default/bbpress files into my /childtheme/bbpress folder. This works smoothly and I am happily converting and theming.
But, the class “bbp-breadcrumb” is located in the /includes/common/template.php file.
And the class “bbp-template-notice info” is located in the /includes/forumss/template.php file.How would I go about to move this behavior to my childtheme? Copy those files there or add code to the functions.php file or something similar?
Any pointers are appreciated!