Search Results for 'bbpress'
-
Search Results
-
Topic: Query error
We are running WordPress 4.7.3 with bbpress 2.5.12 at http://one-name.org. This mysql error started appearing last night when accessing any forum, topic or reply. I believe it relates to the ‘AND ((()))’ clause:
Apr 06, 13:03:46
WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ‘))) AND ggx_posts.post_type IN (‘topic’, ‘reply’) AND (ggx_posts.post_status = ‘ at line 1 for query SELECT ggx_posts.* FROM ggx_posts FORCE INDEX (PRIMARY, post_parent) WHERE 1=1 AND (ggx_posts.ID = 29822 OR ggx_posts.post_parent = 29822) AND ((())) AND ggx_posts.post_type IN (‘topic’, ‘reply’) AND (ggx_posts.post_status = ‘publish’ OR ggx_posts.post_status = ‘closed’ OR ggx_posts.post_status = ‘retained’ OR ggx_posts.post_author = 5528 AND ggx_posts.post_status = ‘private’ OR ggx_posts.post_author = 5528 AND ggx_posts.post_status = ‘hidden’) ORDER BY ggx_posts.post_date ASC made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), apply_filters(‘template_include’), WP_Hook->apply_filters, call_user_func_array, bbp_template_include, apply_filters(‘bbp_template_include’), WP_Hook->apply_filters, call_user_func_array, bbp_template_include_theme_compat, BBP_Shortcodes->display_topic, bbp_get_template_part, bbp_locate_template, load_template, require(‘/plugins/bbpress/templates/default/bbpress/content-single-topic.php’), bbp_has_replies, WP_Query->__construct, WP_Query->query, WP_Query->get_postsI’m going to use bbPress but via shortcodes so that only topics and posts within the topics are displayed on pages. I don’t want the full Forum Root, Forums, Topics etc., displayed on a page. so I’m going to create individual pages for each topic assign the bbpress shortcode for the topic and posts. So is it really necessary to do page/slug assignments in bbpress setup and have the full thing displayed even though I’m not going to use the full bbpress forum display structure and I certainly don’t want to the public to see it.
or does anyone have any other suggestions on how to accomplish this?
The “forum” will the individual Page, the Topic will be the posts from users on the assigned page. there won’t be an actual “topic” for each forum since the forum is the topic.
1.) I have tested and deactived all plugins, but there is no difference. BBpress just throws 404 on all child forums.
2.) i have tested with permalinks. Nothing works except for “default”, then it finds the sub forums and displays them all other permalink modes/options fails.
3.) I have checked .htaccess and cannot find anything special that could make a difference. I haven’t changed anything for sometime. It (bbpress) has worked fine until now.
4.) I’m using the latest version of wordpress, bbpress & buddypress.
Any idea what could be worng here? I would appreciate anything that would point me in the right direction!
Thanks!
I’m trying to add a parent/child relationship between bbpress forums and a custom post type I’ve created. Is there a way to do that, currently I can only make forum a child of another forum?
I’ve tried adding a custom meta box that would allow that:
function my_add_meta_boxes() { add_meta_box( 'lesson-parent', 'Module', 'lessons_attributes_meta_box', 'forum', 'side', 'high' ); } add_action( 'add_meta_boxes', 'my_add_meta_boxes' ); function lessons_attributes_meta_box( $post ) { $post_type_object = get_post_type_object( $post->post_type ); $pages = wp_dropdown_pages( array( 'post_type' => 'lesson', 'selected' => $post->post_parent, 'name' => 'parent_id', 'show_option_none' => __( '(no parent)' ), 'sort_column'=> 'menu_order, post_title', 'echo' => 0 ) ); if ( ! empty( $pages ) ) { echo $pages; } }This shows the metabox and I can select the CPTs from a dropdown list, they are not saved. This should be because the forum post type has hierarchy=>true. So I’ve tried to disable it using the below code, but it doesn’t work:
add_action('registered_post_type', 'disable_hierarchical', 10, 2 ); // Runs after each post type is registered function disable_hierarchical($post_type, $pto){ // Return, if not post type posts if ($post_type != 'forum') return; // access $wp_post_types global variable global $wp_post_types; $wp_post_types['forum']->hierarchical = false; }The above code works fine with the page post type, but not with the forum. What’s special about it that I’m missing?
Topic: Language
Dear friends.
I installed BBpress on my Russian site. Everything is ok. All words in admin panel and public are translated to Russian. I need change some words. I thought I can change what I need in bbpress.pot file, but there only English. I totally don’t understand where BBpress takes Russian words. I even tried download language file bbpress-ru_RU.po and changed there, but its didn’t work anyway. I totally confused here BBpress takes Russian words. Which file I should change? And where?Sharing this here in case anyone else has this issue. It’s a combination of using bbPress with either the bbPress Toolkit or the code snippet to use the TinyMCE editor in place of the standard editor.
When using the TinyMCE editor, clicking “Reply” to a thread (using nested threads) would move the reply box to be under the thread, but the box itself loses the text area so you can’t type anything in.
The workaround is to remove and reenable the TinyMCE instance. In the bbpress/templates/default/js/reply.js file, add these two lines to the “try” block (line 38):
tinymce.get(‘bbp_reply_content’).remove();
tinymce.execCommand(‘mceAddEditor’, false, ‘bbp_reply_content’);I am new to bbPress, so I am probably just missing a setting.
When a notification to a new reply arrives, the topic url is not active. Members have to copy and paste the url to get to the link.
Have I missed a setting? Or is this just how it should work?
Regards
DouglasLooking for some advice on the best way to tackle this issue while using bbPress. I’m creating a new retailer review site where users will be able to post directly to a retailer’s listing.
using bbPress I have
forum root assigned as Reviews
forum slug assigned as Retailers
New Forum as an example – Retailer-1so the URL looks like http://www.mysite.com/reviews/retailers/retailer-1/
which is just crazy long. Is there anyway to simply cut out the first two levels in the URL and go directly to retailer-1 within bbPress or is that just the way bbPress makes you do things?
Thanks…
Topic: Login redirect for user role
BBPress is redirecting my users to their profile when logged in. I want specific user roles to get redirected to a specific page in the site. I’ve tried the following function in the theme functions.php file that normally works but it is being ignored.
function my_login_redirect_employers() { if ( current_user_can('employer') ){ return '/welcome-employers/'; } } add_filter('login_redirect', 'my_login_redirect_employers',10,3);WP Version: 4.7.3
bb Version: 2.5.12
Theme: Uncode 1.4.2 – compatibility confirmed
bb Forum Root: “forums”I’ve had some difficulty setting up and styling my bbPress forums root page, similar to this user: how-to-actually-partner-root-with-a-wp-page/
I have since figured out how to establish a custom WP page as a root for my forum. I had to match the slug declared in the forum settings, AND use the
[bbp-forum-index]shortcode. I thought it was either/or. If I only matched the slug, I would just get an empty page. If I just used the shortcode, I would have inconsistencies in the bbPress breadcrumb.Now that I have declared a custom root, I’m getting my styles ignored or rejected or something. I have my page options set to hide the page title, WP breadcrumb, and some “inline” CSS to hide the menu. (My client needs a custom menu.) These options and styles work on all pages except for the forums root. They just get ignored.
I tested with fresh pages built from scratch multiple times to see where the problem was. I can use the shortcode just fine, but then my custom page is no longer my root page. As soon as I set my custom page’s slug to match the slug in the forum settings, I lose my styles.
How can I get a custom forum root that also has custom styles?
What I want: (Visually at least)
http://kadpf.org/kadpf2017update/forums-ideal/What I get:
http://kadpf.org/kadpf2017update/forums/Thanks!