WP 4.6.1
bbPress 2.5.11-6121
my bbpress search widgets does not work with my theme
im using biscayalite theme 2.1.1
and bbpress 2.5.11
wordpress version 4.6.1
however when i change to default theme the search works fine
the probleme with changing my theme is that i did a lot of work on my theme i can’t afford to redo the work .
is there any solution to this probleme without changing the theme ?
thank you
another minor update, using the latest files uploaded yesterday directly into the patent theme, things work better, still needs some updates but works better,
Maybe you have your bbpress setup slightly different, what are you bbpress settings ?
user settings wont work with buddypress active in this theme.
it changes url forums/users/Adam/ to members/Adam/edit/
also doing this make not difference.
Maybe theme put styles in <?php wp_footer(); ?>
try to remove <?php wp_footer(); ?> from bbpress.php and view did work.
try to remove <?php wp_footer(); ?> from bbpress.php and view did work.
– this did not work and im not sure what you mean by this Maybe theme put styles in <?php wp_footer(); ?>
also im not using a default theme but everything else works the same as a default theme, in the basic bbpress theme.
try to remove <?php wp_footer(); ?> from bbpress.php and view did work.
– this did not work and im not sure what you mean by this Maybe theme put styles in <?php wp_footer(); ?>
also im not using a default theme but everything else works the same as a default theme, in the basic bbpress theme.
It look like the authors off BBpress ignore an very big problem that the performance goes bad on big forums.
They can’t test this, because they have no big testforum, so they think BBpress is fast enough, but it isn’t
PLEASE PUT YOUR TIME IN THIS PROBLEM, IF YOU WILL MAKE BBPRESS GROW.
Take a look of my forum. 1100000 posts, 72000 topics, 50000 members.
http://www.opel-forum.nl
wp-content/plugins/bbpress/includes/common/widgets.php
Hello –
I’ve created a copy of bbpress.css in my child theme’s folder, but edits to this file don’t seem to be taking precedence over the child theme’s css file. Possibly something to do with the enqueue function in the child theme’s functions file, but I don’t know enough about that to check that.
I’m using WP version 4.6.1, bbPress version 2.5.11 and a custom child theme. The site’s forum page is here: http://www.amersa.org/forums.
The child theme functions file includes this function:
if (!function_exists(‘inspiry_enqueue_child_styles’)) {
function inspiry_enqueue_child_styles(){
if ( !is_admin() ) {
// dequeue and deregister parent default css
wp_dequeue_style( ‘parent-default’ );
wp_deregister_style( ‘parent-default’ );
// dequeue parent custom css
wp_dequeue_style( ‘parent-custom’ );
// parent default css
wp_enqueue_style( ‘parent-default’, get_template_directory_uri().’/style.css’ );
// parent custom css
wp_enqueue_style( ‘parent-custom’ );
// child default css
wp_enqueue_style(‘child-default’, get_stylesheet_uri(), array(‘parent-default’), ‘1.1’, ‘all’ );
// child custom css
wp_enqueue_style(‘child-custom’, get_stylesheet_directory_uri() . ‘/child-custom.css’, array(‘child-default’), ‘1.1’, ‘all’ );
}
}
}
Is this what’s causing the issue? Thanks.
theme and bbpress both displaying
you can turn off the bbpress breadcrumbs using
Layout and functionality – Examples you can use
or by using the style pack plugin
https://wordpress.org/plugins/bbp-style-pack/
I’d like to stop our forum from link spamming by allowing only some level of users can post links in their posts, which plugin of bbpress can do this?
Hello,
Thank you for your reply.
It would be the same for the plugin “Image Upload for BBPress” (plugin that gives the possibility to integrate an image in the commentary without creating an account)?
To check the messages posted, I installed the plugin “bbPress moderation”; the admin has thus the ability to accept – or refuse – the message before putting it online. We wish to give the possibility to download pdf and images; do you have advice to you give us?
Thanks for your help.
I’ve only thought about it briefly, you’d need to write a set of custom templates so that everything passed the AMP specs https://www.ampproject.org/docs/guides/responsive_amp
I know bbPress uses CSS’ !important in a few places so that we can force a few things for our “template compatibility” in supporting as many themes as we do, you can't use!important` with AMP: https://www.ampproject.org/docs/guides/responsive/style_pages
Apart from that issue of the top of my head, I don’t see why it couldn’t be done 🙂
Hi Everyone,
How to implement google AMP for bbpress forum?
Those patches are over two years old. I’m running the latest version of bbpress and still have this issue. Do I need to apply the patches above to core? Why aren’t they in the current stable release?
An easy way to find bbpress themes is looking for wordpress themes with their own bbpress template (theme).
To difficult find just a bbpress theme.
You can also use a WordPress default theme and customize your bbpress through child themes or a custom css plugin.
@consultjoseph @siparker Sorry it took me so long to respond to you guys.
I am using the version of this plugin I put on Github in a beta test of a site I’m moving from Joomla to WordPress. I’m using WordPress 4.6.1 and bbPress 2.5.11.6121 and am using a child theme of Twentysixteen.
The biggest thing is that with the version of the plugin I’m using, bbPress Settings need to be adjusted:
1. Go into Forum Settings and set “Forum Root” to “forums”
2. UN-check Forum Prefix – you do NOT want to prefix all forum content the Forum Root Slug
3. Make sure that the Single Forum Slug for “Forum” is “forum”
Next, go into Permalink Settings:
1. Under Common Settings, select “Post Name”
2. Save changes
If you don’t set or RESET your permalinks, you will get 404s! But if you reset your permalinks after activating the plugin, everything will work.
I expect to take my beta site live within a week or so; when I do I’ll provide a link to the permanent live site so you can see the bbPress URLs in action.
Don’t know if anyone else has (or will have) this same problem, but I have a Category that has probably 60-70 forums, and I anticipate adding more in the future.
Like the OP, I was also only showing the first 50 forums on the category index page.
I used @casiepa ‘s filter but I had to fix the typography (I think that’s the right word?) Not sure because I’m still new to all this and completely self-taught, so there’s lots I don’t know but what I do know is the following code WORKS! (On bbPress 2.5.11-6121.)
// filter to show more than 50 forums on the index page
function casiepa_increase_forum_per_page( $args = array() ) {
$args['posts_per_page'] = get_option( '_bbp_forums_per_page', 100 );
return $args;
}
add_filter( 'bbp_before_has_forums_parse_args', 'casiepa_increase_forum_per_page' );
Nobody like this?
Am i the only one with a huge bbpress forum?
that pipe is from the admin links and seems to be an extra one.- not sure why this appears for you – 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 twentyfifteen, and see if this fixes.
That will hopefully tell you what is causing it
Twenty Sixteen
http://prntscr.com/df52hr
http://prntscr.com/df52lj
And i try on Twenty Fifteen and Twenty Fourteen work fine on localhost.
Maybe theme put styles in <?php wp_footer(); ?>
try to remove <?php wp_footer(); ?> from bbpress.php and view did work.
Sorry, but the bbPress team has no access to WLM whatsoever, we cannot do anything about it.
If WLM state they support bbPress and bbPress’ roles and capabilities implementation then they should document that and help their _paying_ customers.
Any good free bbpress themes ?
Thanks Stephen. I’m assuming, for no good reason, that the issue is at the intersection of the two. I also posted the question at WLM. Documentation very sparse as the ability to use WLM with BBPress is relatively new. I did a fair number of Google searches with no luck. One reason I think it is BBPress because it is specifically the edit function. Everything else seems to work fine. In BBPress, does someone have to be a particular user level to edit? My WLM members are all set at a “Participant” level of user, which is pretty low in the WLM hierarchy.
This sounds like it’s a Wishlist Member issue not a bbPress issue.
Does WLM have any documentation on using WLM with bbPress?
(All I could find was http://customers.wishlistproducts.com/?s=bbpress)
As it is a paid plugin I don’t have access to it, I assume you get official support from WLM as you have paid for it though.
Im wanting to add a forum to my wordpress site, I dont know how much it will grow but i want it to be flexible, i’m not a coder or designer, I only know the basics,
I know in the past bbpress had a lot of issue and was lacking in features but i’m assuming this must be possible now.
Im wanting a good looking full featured forum as good as any stand alone forum(xenforo, phpbb, mybb).
can this be done ?
if so how ?
How can I add the extra feature without bloating the site ?
Can i download any pre made bbpress.css ?
any good example