Search Results for 'bbpress'
-
Search Results
-
On this page http://codex.bbpress.org/shortcodes/ they say “To use any of the shortcodes simply insert the desired shortcode into any WordPress page.”
So far I’ve tried these three
[bbp-forum-index] [bbp-single-forum id=1] [bbp-topic-index]nothing happens except they show up as text. Why?
Topic: Moderating bbPress forum
Currently using bbPress 2.3.2 … Is there a way to just screen and moderate the posts of select users, as opposed to having to screen the posts of every user? There can be hundreds of comments posted daily, and we’re too busy to monitor them all, but would like to monitor the few who are inclined to push the limits of forum decorum.
Topic: bbPress 2.3.2 malfunction
Currently using bbPress 2.3.2 Forum plugin ( http://batgap.com/forums/ ) … Every time any given thread exceeds 30 plus pages, it starts to malfunction. After writing a post, and hitting ‘Submit,’ instead of refreshing the latest page where the new comment appears, the poster is redirected back to page one. Also happens when clicking on the link to the latest comment, or the links contained in email notifications. Only way back to the latest page, is by actually clicking on the page number.
Is there any fix for this issue? Other than staring a new thread.
Howdy everyone,
I want to migrate an old bbPress forum 1 to bbPress 2.3.2. I used the importer tool to import the old topics an so on. But I am missing the attachments and the user-avatars. The attachments shortcode is shown, but not the image and no avatar. Can anyone help me please?
Wordpress 3.5.1 and bbPress 2.3.2
Kind regards,
iGorasHi – I have the bbPress “Recent Topics” widget on the homepage of the site that I am working on (http://heattreatforum.flyten.net/). I want the parent forum that the topic was entered in to show up below the topic in this widget. How can I make this happen?
The version of WP I’m working with is 3.6, the bbpress verions is 2.3.2
Any help would be appreciated – thanks!
I am having trouble trying to resize my forums table cells widths.
The “topics” and “posts” cells that only contain a number don’t need to be the same width as the “forum” and “freshness” cells that contain words and wrap to the next line.
When I look at the table through firebug I just see “.article th, .article td” which is part of my sytle.css and not bbpress.
Any ideas how I can make the cells widths change?
Here is an example of 1 forum I am talking about http://lifeafterlondon.com/forums-2/
Many thanks
Wordpress version: 3.6
bbPress 2.3.2
site url: http://www.rubycore-ng.com/blog/
Hi, i am getting this error message on my site backend. I have created a custom bbpress child theme. The error is “bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). (This message was added in version 2.3.) in /hermes/bosoraweb132/b1582/ipg.virtualweb/https/blog/wp-includes/functions.php on line 3012”What is may be wrong?
Topic: Forum Page Layout
I would like the pages for the forums to NOT have a sidebar and to fill up the page (and sidebar area). There’s not sidebar showing, but the area is white space. I want the forum pages to fill up the entire page. Did that make sense?
I am using Version 2.3.2 bbPress and WordPress version is 3.6
A link to the forums is http://bleckleycountygop.org/forums/forum/general-news-flash/
Hey guys!
I’ve added a custom role to BBpress with this piece of code in a functions.php file in my theme:
function add_custom_role( $bbp_roles ) {
$bbp_roles[‘my_custom_role’] = array(
‘name’ => ‘ACN Lid’,
‘capabilities’ => bbp_get_caps_for_role(bbp_get_participant_role()) // i just want them to have the same capabilities as moderators);
I also have a private forum that only this member can access. Right now it works through a member groups plug-in that shields it. But it still let the off limits posts show up in search results.
So I want to try and work within the BBpress system of private and hidden forums. Making the forums private won’t solve a thing, because for some weird reason, participants can also view that… Why is that?
But oh well! I’d like to include the list of capabilities found in the capabilities.php file with this custom role. Instead of the custom role taking the capabilities from the participant. I want to make the members only forums hidden, and make the ACN lid role be able to see the hidden forums.
How do I change the above code, to make it use the following capabilities:
$caps = array(// Primary caps
‘spectate’ => true,
‘participate’ => true,
‘moderate’ => false,
‘throttle’ => false,
‘view_trash’ => false,// Forum caps
‘publish_forums’ => false,
‘edit_forums’ => false,
‘edit_others_forums’ => false,
‘delete_forums’ => false,
‘delete_others_forums’ => false,
‘read_private_forums’ => true,
‘read_hidden_forums’ => true,// Topic caps
‘publish_topics’ => true,
‘edit_topics’ => true,
‘edit_others_topics’ => false,
‘delete_topics’ => false,
‘delete_others_topics’ => false,
‘read_private_topics’ => false,// Reply caps
‘publish_replies’ => true,
‘edit_replies’ => true,
‘edit_others_replies’ => false,
‘delete_replies’ => false,
‘delete_others_replies’ => false,
‘read_private_replies’ => false,// Topic tag caps
‘manage_topic_tags’ => false,
‘edit_topic_tags’ => false,
‘delete_topic_tags’ => false,
‘assign_topic_tags’ => true,
);