Don’t understand that completely. Is it possible to make a new comment field and field when you post a topic with shortcodes?
I have not personally tried that, so I’m not 100% sure. However I think you best bet is going to be using shortcodes to try and do this.
https://bbpress.org/forums/topic/bbpress-20-shortcodes
Hi
I wonder if it is possible to innstall the bbPress plugins twice on a page? Two different mainforums? I need it because I want some extra fields to one of the forums. Instead of keyword I will have Sport.
Is it a way that I can install bbPress twice on my webpage?
This is totally possible, bit you need to piggy back off a better foundation.
For example, bbPress 2.1 + Genesis Framework + bbPress Genesis Extend plugin allows exactly this.
It provides ton’s of layout options for bbPress – you can inherit the site-wide Genesis layout, set your own site-wide layout just for bbPress, or set layouts on a per forum basis – like I said, tons of options.
Bottom line is using the Genesis Framework (or anything similar) it’s really simply to provide this functionality as the foundation is already there.
Trying to tackle this – and have it work for all themes and use cases – within bbPress seems like a logistic nightmare.
Having dealt directly with tons of frameworks, I can say this with pretty good confidence
As OC2PS said, it’s definitely you there.
Unfortunately many themes out there filter the_content and do other weird (and not so correct) things that bbPress doesn’t/can’t take into account.
My recommendation would be to contact the theme author and alert him of the issues you are having.
Yep, that’s a some-what common issue.
In 2.1 table layouts have been ditched for the much preferred clean xhtml (lists, and what not) however some theme’s choke on it.
There are some wrappers in place (such as #bbpress-forums) you should be able to use to reset the styles that are needed,
Kinda what I figured… but I don’t know enough about how bbPress works to even begin troubleshooting what would be weird on the theme level.
SKParticipant
Try changing theme to TwentyEleven and see if bbPress still doesn’t work.
Try this in your CSS file:
.forum .entry-content{
width:100%;
}
Ok.
In the forum page you created, try adding this shortcode: [bbp-forum-index]
It’s not the natural thing to do, but will force WordPress to display bbPress.
My Blog content looks good at a narrower width,
but forum content generally looks better at wider widths.
I would like to style bbpress forums wide, while keeping my other content narrow width
The problem is that with the current div hierarchy i don’t see how to do this.
the div hierarchy of BBpress forums right now is this:
<Div id =”Content”>
<div class =”entry”>
BBPress forum stuff
Since div class Entry is shared between blog stuff and bbpress, there’s no way i can see for me to keep the blog entries narrow while making forums wide.
Any way around this?
Ah ok, sorry, I’m only familiar with the plugin version of bbPress (2+).
What version of bbPress are you running?
I doubt it’s 2+ because what your saying doesn’t make any sense – is it 1.x?
Dear Jaredatch,
Please read my first post, i would like to fetch RSS feeds to display in the sidebar of my BBPress forum and not the WordPress sidebar.
I’m using version 1.0.3
The easiest fix is to use the user widget bbPress provides in the sidebar, and when you are not logged in it will provide links to either Login or Register.
I’m not sure I understand. You said you wanted to:
“display the latest posts from different external blogs in my BBPress sidebar?”
1 – Go to Appearance > Widgets
2 – Drag RSS widget to the sidebar you are using with the forums
3 – Enter RSS URL
That should be all there is to it…
It is certainly possible but would require a custom theme built from scratch – there really wouldn’t be an “easy” way to go about it.
Also, if you create a child theme, copy ‘page.php’ from Twenty Eleven and rename it ‘bbpress.php’ you’ll have more control over your forums theme.
You can, for instance, register some sidebar exclusively to bbPress and adding it to your template file.
I understand that maybe you could misinterpret a lack of moderators to the entire project being dead, but topics like this only end up making the active contributors feel bad. There’s only so much time available to volunteer in the day. If you want to help us out, tag any spam topics as ‘modlook’ and Jared and I will go through them when we see them.
This is strictly theme controlled. Nothing bbPress can really do about overriding this for now.
I have added a custom field to user profiles in bbPress however I am unsure how to do form validation other than javascript. I would like to do some PHP validation however the few things I have tried didn’t work.
If you fail to enter an email it will say “ERROR: Please enter an e-mail address.” after you have submitted the form. I want something like that.
I have tried:
$myErrors = new WP_Error();
$myErrors->add(‘id_error’, __(‘Test error.’,””));
bbp_add_error( ‘bbp_steamid_invalid’, __( ‘ERROR: The ID you entered is invalid.’, ‘bbpress’ ) );
I am not at all familiar with error handling in both WordPress and bbPress however I feel it is a must.
Any help would be must appreciated.
I just activated the bbpress plugin for my wordpress blog (i’m using latest version of wp and the twenty-ten theme).
I created a “test” forum with two topics.
I then created a new Page and titled it Forum.
I tried to get my test forum with two topics to show up on the new Page, but can’t get it to work.
I can see the Forum with two topics that I created when I click on View Forum button.
So, I guess my question is: How do I get a navlink titled Forum in my navbar and/or sidebar on my WordPress site?
What am I missing? I’ve searched all over with Google on this problem and can’t find the solution to my problem.
Here’s a little more info:
When I click on View Forum, and it looks great with the site’s theme here, the url is:
http://www.mydomain.com/forums/forum/test-forum/
When I click on the Page that I created called Forum, the url is:
http://www.mydomain.com/forums/
Thanks in advance for any help!
SKParticipant
In WordPress, there is an opportunity to select the template for each page (dropdown on Edit Page and Edit Post pages).
bbPress forum root, forums, topics and replies are custom post types.
It would be good to see in bbPress the ability to set the default layout (wrapper) for each of these.
Dropdown (like the one on Edit Page page), wherein the admin can select the layouts from among the active theme’s layouts shall be ideal.
(I understand that if after this the admin decides to change the theme, (s)he will need to select the default layouts for bbPress custom posts again – just like (s)he needs to do so for normal pages and posts)
So, for instance, while the rest of my site may use 3-column (2-sidebar) layout, for forums, I may decide to go with a single-column layout.
http://bbpress.trac.wordpress.org/ticket/1784
Hmm, actually I think this works for my case
<?php echo do_shortcode(‘[bbp-topic-index]‘); ?>
Still if someone have another code let me know. Thanks