Thank you but nope. Still no luck. See eg. http://pupyshevo.hol.es/forums/forum/11/
Maybe some debugging? You can use my credentials on this test site, would be glad to help! Let me know and thanks again for proper support!
Oleg
PS: flushed permalinks with default and then with postname. Also reactivated both bbPress and the plugin. Still believe it isn’t really plugin’s fault, but me doing smth wrong…
I’m using the following in my theme’s functions.php, although for some reason is_bbpress() isn’t working on Buddypress Group Forums for me.
if( ! function_exists( 'my_dequeue_bbp_scripts' ) )
{
function my_dequeue_bbp_scripts()
{
if( function_exists( 'is_bbpress' ) )
{
if( ! is_bbpress() )
{
wp_dequeue_style('bbp-default');
wp_dequeue_style('bbp-default-rtl');
}
}
}
}
if( ! is_admin() ) add_action( 'wp_enqueue_scripts', 'my_dequeue_bbp_scripts' );
I found the bug in plugin with some validates. Never liked if ($var) constructions. if ($var !== false && $var !== '') better to understand 🙂
Just replace content of plugin.php in plugin folder:
https://github.com/korobochkin/bbPress-permalinks-with-id/blob/master/plugin/plugin.php
Tested on brand new WordPress install only with bbPress and my plugin with default theme – works as… haha.
Having same issue. Was wondering what was filling up deferred mail log. noreply@www.domain.com. Should not even be sending to/from noreply@ by default.
Note: I am running the default twenty fourteen theme and having the problem I referenced above.
Hi,
Im a total newbie and I have the socute theme trying to integrate this code.
I have this “socute child theme” that holds the folders : cache, woocommerce and woocommerce_2.0x.
There are not wp-content/your-theme/bbpress/ in the child theme. So where should I put the file loop-forums.php?
In my socute original theme I find the loop-forums.php in the following folder: wp-content\plugins\bbpress\templates\default\bbpress
Should I remover this file from this place, edit it by removing everything that is already in that file and paste the code that you suggest? And where to put the file afterwards when I dont have the directories you are telling me about?
And one last question:
What should I do with the code written below “RAW Paste Data”?
I really appreciate if some of you please can help me with this total newbie questions. It will help me have a good start with learning this.
Thanks
All the best, Stig
How can I change Font-Size of My Forums and Topics names and replies? It’s very not good default font-size for my website. Thank you.
Same issue here … almost. I see:
- In forums I see only sticky topics, the rest are missing
- Within topics I see no replies.
I have removed all bp-default template files from my theme and disabled all plugins to no avail. Could this be an issue with how bbpress loops through topics and replies?
I made a quick fix, I added this code into content_single_topic.php under bbpress/templates/default/bbpress
<?php echo "<div style=clear></div>"; ?>
<?php echo "<br />"; ?>
<?php bbp_topic_content(); ?>
just after
<?php else : ?>
<?php bbp_topic_tag_list(); ?>
<?php bbp_single_topic_description(); ?>
<?php if ( bbp_show_lead_topic() ) : ?>
<?php bbp_get_template_part( 'content', 'single-topic-lead' ); ?>
<?php endif; ?>
and before
<?php if ( bbp_has_replies() ) : ?>
<?php bbp_get_template_part( 'pagination', 'replies' ); ?>
<?php bbp_get_template_part( 'loop', 'replies' ); ?>
<?php bbp_get_template_part( 'pagination', 'replies' ); ?>
<?php endif; ?>
It shows the content, but it is not properly formatted.
Any other fixes?
ok i havent really messed with breadcrumbs that much i usually remove them but there suppose to show home > forums > forums i think from what i just tested on my localhost.
since it shows the root anyway if you are already on the forum archive.
but i did end up removing one of the forums link this weird way
ok i dont know for sure what i did because i was basically just fiddling around so here are all of what i did
i had this in my functions php in my own thematic child theme.
function mycustom_breadcrumb_options() {
// Home - default = true
$args['include_home'] = false;
// Forum root - default = true
$args['include_root'] = true;
// Current - default = true
$args['include_current'] = true;
return $args;
}
add_filter('bbp_before_get_breadcrumb_parse_args', 'mycustom_breadcrumb_options');
add_filter( 'bbp_get_breadcrumb', 'change_breadcrumb_text' );
Function change_breadcrumb_text ($trail) {
$trail = str_replace ('No Labels Community Forum','N L C F',$trail) ;
return $trail ;
}
then i removed the add_filter line for the mycustom_breadcrumb function
so i have this now.
function mycustom_breadcrumb_options() {
// Home - default = true
$args['include_home'] = false;
// Forum root - default = true
$args['include_root'] = true;
// Current - default = true
$args['include_current'] = true;
return $args;
}
add_filter( 'bbp_get_breadcrumb', 'change_breadcrumb_text' );
Function change_breadcrumb_text ($trail) {
$trail = str_replace ('No Labels Community Forum','N L C F',$trail) ;
return $trail ;
}
this removed one of the NLCF links in the breadcrumbs.
i even removed the my custom breadcrumbs function and its still only shows one NLCF link…
its weird :/
hmm, strongly suspect that the content block is your issue
come back when you’ve tried a default theme, so we can concentrate on headway.
I presume you’ve posted a query on their support forum as well?
I can see lots of ‘?’ – is this your issue??
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
come back with the results !
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
We’re use white text on a dark background in our BBPress Forum.
The problem that we’re having is that the Insert/edit Link Box defaults to white background, now with unreadable white text.
Can the background color of this message window be modified?
If not, is there a way I can set the text in this message window to display as dark, while retaining the white text on the forum?
See: http://bmslifttruck.com/forums/forum/welcome/ and click LINK
Thanks!
Has this just started happening?
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
I suspect it is your theme, but carry out the tests above, and then come back !
sorry to post this here but my i cannot create topics or anything on the site..
i have been messing with this all day and getting quite aggrevated
my members cannot edit they’re topics or replies or forums if i allowed it which i dont
And they cannot create a topic from the Dashboard menu bar at the top
so the topics they are allowed to use looks totally horrible and does not have all my wordpress options, well i think it uses the normal wordpress replies maybe i would need to change that?
If they could Edit they could use the proper Tools after but..
Unless i set Edit_others_posts there is absolutely nothing i can do to allow them to edit
it always says you do not have the proper rights
and of course i DO NOT want them to be allowed to edit other peoples posts…
How could i make it so that they can edit they’re own posts only
and that they could post a Topic Directly from the Dashboard bar at the top of page to be able to have the proper tools instead of using post topic like a reply
I did reset all users to default Role since i saw it mentioned often and it didnt help
Only if id set it to moderator they could edit theyre own posts
but they can delete everything from everyone
i am using latest WordPress and latest bbpress with twenty fourteen theme and i have no plugins that would conflict
Still did not help. Yes, I
1. Created a wp-content/themes/twentyeleven-child folder
2. Created a twentyeleven-child/styles.css file with the info from the instructions
3. I copied twentyeleven/sidebar-page.php to twentyeleven-child/bbpress.php
4. I created a twentyeleven-child/css filder
5. I copied the bbpress.css file from the plugins/bbpress/templates/default/css folder to the twentyeleven-child/css folder.
6. I modified the bbpress.css to change a few colors.
7. I installed the plugin plugins/bbpress/templates/default/css and configured it to look at bbpress.php
8. I chose Post Name int he Permalink Settings
9. I created a page call Forums and ensured its Permalink was forums
10. I tried both default and sidebar template for it.
I tried both of the above suggestions in style.css and bbpress.css in the child tree to no avail.
I would be good with going with a “wide” page and no sidebar and just putting creating pages for logins and so forth, however, the problem there is the index page ends up with a blank sidebar so looks funky.
Thanks four your help and suggestion though!
Hello guys,
I’m using the latest version of WordPress and BBpress to date.
I don’t know if this is expected default behavior but in the front page of my forum, the total topic counts only show in the categories and not next to each forum.
I would like the categories NOT to have any count, and for the counts only to show next to the forums.
Any idea of what I could do?

Thanks!
I just tested this and it works fine, as it states: “Disallow editing after ‘x’ minutes”, that does not infer setting to 0 will disable topic/reply editing 😉
Thus, if you set it to 1 editing will be disabled after 1 minute, the default is 5 minutes.
If this is not working for you check your time and date settings, someone else had this issue a while back and as they had the incorrect time zone configured it was adding the time zone difference to the allowed editable time 🙂
this one indeed makes its job – links are re-generated just fine!
but unfortunately i’m getting the 404 page on click of every such link. is there any specific option to be set in permalinks section or am i missing something?
i’ve tried to kick permalink settings to default and then back to custom with /%postname% with no luck. every time 404 is displayed i also see the path string to kolya’s plugin
here is a working draft: http://www.pooledge.hol.es/pup4b
forum topics are on the right sidebar in the second list
thank you in advance for any input
Versions: WordPress 3.9.2, bbpress 2.5.4, bbpress WP Tweaks 1.3.1
Site: http://www.obatron.com/forums
Theme: TwentyEleven
I have a child theme: twentyeleven-child with a style.css file in it, no customizations to it. I added a folder under it called css and copied the bbpress.css from the plugins tree to it to change the colors only (still working on colors so pardon if there are issues). I copied the sidebar-page.php file to bbpress into this folder.
My Forum page is blank, just titled Forums with a Permalink named http://www.obatron.com/forums/ and a template set as Default.
The problem: Forum index works fine, but when you go to a forum, the sidebar and the forum display overlap. I’ve tried various combinations of removing/moving the bbpress.php file to no avail. I also tried without the tweaks plugin, without the child template, and so on…
I tried going with just a full page and just use pages with the proper tags for login, etc, but then the forum index looks odd because it continues to use the sidebar template no matter what.
If I change the theme options to put the sidebar on the right, the forum index continues to work, but the forum page sidebar now appears below the forum…
Now, I’ve searched for this and see others occasionally complaining about similar, but have not seen an answer that works…
Hey, how i can disable this option in bbpress forum settings; Disallow editing after x minutes, if i type 0 or leacve it blank, it still uses default setup (5 minutes)?
WordPress version 3.9.2–fi
bbPress Version 2.5.4
My site
ok, I’d try two things
1. use method 2
2. switch to a default theme for a moment to see if this is a theme problem
I used Method 1
a. In Dashboard>settings>forums look for what is set in the forum root under the forum root slug heading. The default is ‘forums’ but you can set this to anything
b. In Dashboard>settings>permalinks check that the common settings check is set to ‘postname’ If it isn’t and you don’t want to change it, then use method 2.
Now just create a wordpress page that has the heading that was found in a. above eg if the root slug is ‘forums’ create a page with the title ‘forums’, and save.
Once the permalink has been created, you can rename the page to whatever you wish eg ‘mysite forums’ (as the permalink will stay the same, and it is this permalink that bbpress looks for)
Save this page, add it to a menu if you are using custom menus, or decide its order if you have automatic menus. Then publish it to your site.
Job done!
I don’t know what information you need to help me. All I know is that when I publish a forum I can see it for example . . .
http://ecopsi.org/forums/forum/general-discourse/
But when I follow the breadcrumbs to home of the forum I get a totally useless page from which I can’t get to any forums. If you look you can see that there is some text that suggests there are other forums but no live links to them. Can you think of what is wrong?
http://ecopsi.org/forums/
Thank you for trying to help Robin.
Not sure why you would be getting this, it could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. If it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.