Search Results for 'bbpress'
-
Search Results
-
Topic: Customize forums
Any idea how he got his forum to display all posts like this – http://themehybrid.com/support/ . My bbpress page just shows the forum titles then you have to click to get to the different topics, etc.
– James
Hello,
We are pleased to introduce our redesigned site.
http://www.ar-wp.com/forums/We are satisfied that we have a forums integrated nicely with WordPress.
We will continue to help as much as possible in the development and promotion of bbPress.
Thanks!
I currently no longer have options for editing, trashing, spamming, etc any topics or replies on the forum. I also have one topic that somehow moved to the trash bin in the bbpress. When I click topics, I see the topic, but it won’t let me select it to restore it.
Any ideas why this could be happening?
I have user role editor enabled, but disabling it or giving admin all the ability in the world still doesn’t let me edit or delete or restore anything.
is it possible to make bbpress look & work like a traditional forum with plugins?
with the easy to read/find threads, read/unread posts, polls, moderation features, Reputation, rating, User Promotionsposition (admin, mod, ext) Warning System, ext.
Topic: Installed then white screen
Hi, I’m somewhat new to WP and for sure bbpress. I installed bbpress. Went to activate and then all the white screens. Can’t get into admin panel unless I remove the bbpress dir.
Any ideas ?After having battled with this problem for a long time, I finally found out, why only keymaster users could upload images to their replies with the new media manager.
The problem is not bbPress’ fault, but rather due to a shortcoming in the WP_Editor.
When a front end editor is inserted on a page using the
wp_editor()function, and media buttons are enabled, the media buttons will be automatically set up to attach the images being uploaded to the current global post object.This is a problem, because the current global post on a forum topic page is the topic. So if the user replying to the topic (and trying to upload images) is not the topic starter, a permissions problem will arise.
The user will then in fact be attempting to attach media to the topic, which is owned by someone else. This will result in an error, unless the user has the “edit_others_topics” permission set to true.
So, what to do? Here’s my temporary solution, until this hopefully gets addressed in the future:
Because the core function that takes the post id from the current global post can’t be hooked directly into, I decided to hook in before and after it, to first change the global post id to null, and then change it back afterwards, so any logic that follows the WP_editor will not get disturbed.
This will, however, cause the uploaded image to not be attached to any post. But it doesn’t have to be. The image will be inserted into the forum reply html, regardless of which post it is attached to in the DB.
add_action('media_buttons', 'ml_pre_media_buttons', 1); add_action('media_buttons', 'ml_post_media_buttons', 20); function ml_pre_media_buttons($editor_id) { if (!$editor_id == 'bbp_reply_content') return; $GLOBALS['post_temp'] = $GLOBALS['post']; $GLOBALS['post'] = null; } function ml_post_media_buttons($editor_id) { if (!$editor_id == 'bbp_reply_content') return; $GLOBALS['post'] = $GLOBALS['post_temp']; }I created this issue on the WP support forums:
http://wordpress.org/support/topic/front-end-editor-media-upload-would-like-ability-to-pass-post-id?replies=1#post-3895962