Thanks a lot! I read it, but they only talk about the directory files in de bbpress/templates/default. I also made changes in bbpress/includes/core/capabilities. Do I put these files in the same folder in my child-theme (bbpress)?
https://codex.bbpress.org/themes/theme-compatibility/
should answer your questions, but do come back if you need further help !
Hi all,
I have a hierarchical forums (> 20) and I use bbp_insert_topic functionality to create topics programmatically. Everything is fine so long as we rely only using bbpress. But suppose I want to create a post and want a corresponding topic following the same hierarchy and tags, how can I do that ?
That is, how can I merge something like this:
WordPress <—–> bbpress
- Topics <—–> Posts
- Categories <—–> Forum Categories
- Tags <—–> Topic Tags
All this is because I wish to avoid duplications of category names and tags across the some posts and topics that I intend to create.
I know how to create a post with a given parent id, using wp_insert_post,
Can I set the post id as a child to a Forum Category ? Am I mixing apples and oranges , can it be done ? What should be a right approach ?
Hi,
Is this want you are looking for : http://www.rewweb.co.uk/bbpress-additional-shortcodes/ from @robin-w
It’s INcluding, not EXcluding …
Pascal.
I made some changes in the style of bbpress and other files. I copied the bbpress.css file to my child-theme in the root, but I don’t see any difference, when I make another change in a style. I also tried to put it in a folder (bbpress) in my child-theme, but that seems not to work either. What am I doing wrong?
@PinkishHue Glad to hear it’s useful! We built it after looking for a way to enable inline image uploads on a client’s bbPress forums and not finding anything.
Hi
bbpress is not working fine with my theme “Appointment”.
https://blog.indy-guide.com/forums/forum/adventures-in-kazakhstan/
Where can I get the forum theme used here on bbpress.org? Is this page using buddyPress?
Thank you.
bbPress 2.5.8
Wordpress 4.4.2
Where can my users register for my bbpress forum?
Thank you
@hearken Your plugin looks good, a much needed function for many bbpress users. Thank you for sharing this with us đ
You could also do this by editing the theme files so that the reply form is only shown to users with specific user roles, there is a similar topic here that may help:
All Users can see category and topics but only certain roles have access toreply
Hi all,
I think I got it worked out together with Otto and Tia over at WPML.
You can have a look at it at those two topics:
https://wpml.org/forums/topic/multiple-site-languages-but-just-a-bbpress-forum-in-english/
https://wpml.org/forums/topic/bbpress-breadcrumbs-how-to-localize-and-point-to-the-right-page/
BTW I hide the language switcher(s) on the topics pages by adding this piece of code in my header file
<?php if (!is_bbpress()) {
do_action('icl_language_selector');
} ?>
and this in my footer.php
<?php if (!is_bbpress()) {
do_action(‘wpml_footer_language_selector’);
} ?>
I hope it helps you as well.
Regards,
Adri
Hi,
I suppose you mean that you want to change the default page that you get when going on /forums ?
If so, just create a page in WordPress and change the slug to ‘forums’, then put anything you want in that page.
The standard page shown when going on /forums is content-archive-forum.php.
You can customize all templates if you want, just read some pages of the bbPress Codex: https://codex.bbpress.org/themes/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/
Pascal.
The problem is that wordpress was designed to work with templates that were different for each type eg template for page with sidebar, another template for page without sidebar.
The trouble is that theme authors are getting too clever ,and nowadays write a single big page template that bbpress cannot easily react with.
So your theme displays one template for the main page, but then bbpress can’t work with it for the other sub pages, as it doesn’t know how the theme is using the template.
Ok, so that’s the explanation, but probably doesn’t help you at all.
If you know some wp stuff then this might help
https://codex.bbpress.org/themes/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/
Hi,
In my ‘bbPress Toolkit’ plugin I have basic ‘featured image’ possibilities. Have a try…
Pascal.
Hello.
Here in bbPress site I found a “featured” site with small images before each forum.
Forum
You can see small photos on the left in the main areas, but I found no way to add such images in my forum. I have a bbpress with initial setup and I wonder if I need some plugin for this.
I don’t need to mimic the theme style (my theme have a nice bbPress template!!), I just want the ability to add images on the left, similar the example above.
I will appreciate suggestions with this basic question.
Regards,
Celso.
Hi,
Forum moderation is being reviewed and improved a lot for future versions of bbPress. For now there is standard moderation and blacklisting as described here: https://codex.bbpress.org/moderation-and-blacklisting/
The above mentioned plugin is the only one that I found when I looked at it in the last months. Please note that it has a small bug with saving topic subscriptions from user before their post is approved, so the user might have to re-subscribe from the checkbox during the reply.
Pascal.
I haven’t tried it, but this plugin may be what you want.
If you try it, PLEASE let us know if it works and does what it says !
https://wordpress.org/support/plugin/bbpressmoderation
Hmmm, I’m getting the ‘Oops’ page, not the ‘Oh Bother’ … So that’s the 404 page.
If your forums are private, check if my replies here help: https://bbpress.org/forums/topic/setup-login-for-private-forum/
EDIT: Thanks for the coffee !!!
Pascal.
It’s no good, I can’t find anything like what you’re talking about. The only thing I can find is this: bbpress/templates/default/bbpress/feedback-no-search.php (inactive) which is clearly the thing I want to edit but it’s marked as “inactive” so editing it doesn’t have any effect.
I’m going to have to find a different plug-in, I haven’t time for this. But thanks anyway and have a cup of coffee on me!
bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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 twentyfifteen, and see if this fixes.
Then come back
What I want to change is “Oh bother! No search results were found here!” , not “Oh bother! No topics were found here!” which is what your plug-in changes. This is what I want to edit:
bbpress/templates/default/bbpress/feedback-no-search.php (inactive)
but it’s marked as “inactive” so what does that mean?
Hi,
Never edit bbpress templates directly in the bbpress folder, otherwise you will loose your changes when bbPress updates.
There are several ways that I know of, but the most easy one would probably be by installing my ‘bbP Toolkit’ plugin.
Or you play with CSS yourself:
.bbp-template-notice {
display: none;
}
.bbp-template-notice.info,
.bbp-template-notice.error,
.bbp-template-notice.important,
.bbp-template-notice.warning {
display: block;
}
Not that also other similar messages will disappear with the above.
And if you want to modify bbPress files, please check the codex (https://codex.bbpress.org/themes/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/) and/or create a child theme
Pascal.
I am trying to edit the phrase “Oh bother! etc,” but when I get to the Plugin Editor it’s saying that the default template is inactive, like this –
bbpress/templates/default/bbpress/feedback-no-replies.php (inactive)
I am using WordPress 4.4.2 running Twenty Sixteen theme. and bbPress is Version 2.5.8
My site is http://www.fagleyforum.site
How can I find the right place to edit this phrase?