Thanks, sometimes one does need to be shown the obvious.
It was the “bbPress Threaded Replies” plugin.
This warning is contained in three templates all in
wp-content/plugins/bbpress/tempates/default/bbpress/
form-forum.php
form-reply.php
form-topic.php
You can create a folder in the root of your theme called ‘bbpress’ and copy these three themes to it, and then alter this text to read whatever you like, or remove it.
Or you could add the following code to your functions file
//This function changes the text wherever it is quoted
function change_translate_text( $translated_text ) {
if ( $translated_text == 'Your account has the ability to post unrestricted HTML' ) {
$translated_text = 'new text';
}
return $translated_text;
}
add_filter( 'gettext', 'change_translate_text', 20 );
Just make ‘new text’ whatever you want.
or you could probably get you function to do something, but I don’t offhand know what you’d need to do.
Looks like it’s wider than just bbpress from this post.
http://evidentiasoftware.com/forums/topic/object-stores-not-found/
Have you added/upgraded any software lately?
Ok, first I’d check plugins and theme to discount these.
Check other plugins
Check that no other plugins are affecting this.
Turn off all other plugins apart from bbpress, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.
Check themes
If plugins are not the cause, then it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.
come back if that doesn’t pinpoint your problem.
Yes absolutely.
1. A child theme is great because it preserves your changes
2. Yes put the file in there – the child theme is your theme, so yes changes to bbpress templates should go in a bbpress directory in the theme folder.
Do come back if you have further queries !
Look at this blog post:
http://themekraft.com/blog/customize-profile-and-group-menus-in-buddypress/
I haven’t checked it, so if it doesn’t work, you can always use css.
put this line in bbpress.css in your child theme:
#forums-personal-li {display:none;}
I am making a dating site which requires NO forum capability at all. I deactivated bbpress and this did the job removing the title ‘forums’ from the profile pages. perfect! Then I realised it had also taken away my browse features like Members Online and Top Members features so NOT perfect!
Surely there must be a simple way of removing the forum feature or at least the Forum button from my profile page? On the forum settings page it allows me to do anything but this! Why not a check box to disable actual forums?
Help please!
I suggest you have a read of this:
https://github.com/rmccue/bbPress-Reply-by-Email/issues/19
This is an advanced and complex plugin to get setup and a fair bit of reading and configuration with 3rd party service is required.
Hi, I’m using WordPress 3.8.1 with bbPress.
Looking for a plugin that will allow me to reply to posts by email.
I found this post and use this plugin but it causes an error
Reply to Posts via Email
https://github.com/rmccue/bbPress-Reply-by-Email.
Error:
Warning: require_once(/home/power90/public_html/wp-content/plugins/bbsub/vendor/postmark-inbound/lib/Postmark/Autoloader.php): failed to open stream: No such file or directory in /home/power90/public_html/wp-content/plugins/bbsub/library/bbSubscriptions/Handler/Postmark.php on line 9 Fatal error: require_once(): Failed opening required '/home/power90/public_html/wp-content/plugins/bbsub/vendor/postmark-inbound/lib/Postmark/Autoloader.php' (include_path='.') in /home/power90/public_html/wp-content/plugins/bbsub/library/bbSubscriptions/Handler/Postmark.php on line 9
That didn’t work, but this does:
#bbpress-forums li.bbp-forum-freshness, li.bbp-topic-freshness { display:none; }
#bbpress-forums li.bbp-forum-info, li.bbp-topic-title { width:75%; }
but this targets ALL forums, and I just want to disable it on the front page where all forums are listed.
I just had a quick read of the topic on rtMedia
https://rtcamp.com/support/topic/media-tab-takes-me-to-bbpress-forum-profile-page/
Maybe try contacting the theme author and pointing them to that discussion, there are some good tips there in that it should be fairly easily for the themes author to troubleshoot the issue and help get a fix sorted out.
You probably just need to target the CSS to only there forum titles:
#bbpress-forums ul.forum-titles {
background: none;
margin: 0;
list-style: none;
}
In the theme here on bbpress.org they are the ‘default’ sizes, it is just a sidebar with the shortcode [bbp-topic-tags].
If you want to add custom sizes to a custom template part then something like this is a goo d start:
<?php wp_tag_cloud( array( 'smallest' => 12, 'largest' => 16, 'number' => 16, 'taxonomy' => bbp_get_topic_tag_tax_id() ) ); ?>
Is it possible to have a bbpress forum set up on aaa.com and have that same forum be used on all subdomains in a multipress network? So the same forum in aaa.com would be shown on site1.aaa.com and site2.aaa.com and if someone responds on any of them they all update the same forum.
Is that possible?
Hi,
I’m using the BBPress Converter but for some reason it’s stuck on converting users, it’s done 5250 users at the time of this post but I only have 2500 users on my website.
I am currently using Simple Press forums which I detest and it’s getting all of the users from the WishlistMember database…
How am I supposed to import correctly?
Thanks in advance
– Hyflex
Should this be in an own file (named how?) and added to my childtheme’s subolder bbpress, or should I place the code somewhere in an existing file?
Any of these methods will work 😉
That said I’d download the gist from https://gist.github.com/ntwb/9887310 and extract the file and upload it as a plugin for your site.
It needs a bit more work in that it shouldn’t be displayed for the current user or anonymous users.
When I get a chance I’ll update that gist with those updates.
Ok, on your first :
This is to do with your theme and it’s page templates, not bbPress directly.
what you will need to do is create a bbpress.php file and into that put the page layout
see
Step by step guide to setting up a bbPress forum – Part 1
for creating a bbpress page to use
Then see
http://brookswebdesign.net/how-to-create-a-wordpress-template-with-left-sidebar/
for creating a left hand sidebar.
On your second, this is either
related to your theme and how it is displaying content. Switch to a default theme such as twentytwelve for a moment and see it is it then displaying – in default all with not be indented.
or
maybe because you are using threading on dashboard>settings>forums>reply threading
Let me know which, and I’ll take a lokk to see how to get all to ident
see
Layout and functionality – Examples you can use
From memory I think $args[‘sep’] = “>” would be what you are looking for
so for instance
function mycustom_breadcrumb_options() {
$args['sep'] = '>>';
return $args;
}
add_filter('bbp_before_get_breadcrumb_parse_args', 'mycustom_breadcrumb_options'
would give a double chevron.
If that doesn’t work, come back and I’ll look it up.
Hello,
I used CSS to remove certain parts of my breadcrumb and now need to remove certain separators (ex: “>”) between the words. Unfortunately all the separators have the same class, so is there a way to code bbpress so some separators are shown and others are not? Please see image below for example. Thanks.
Link to image
bbPress uses your theme’s page templates to wrap the code in, so you will need to use a page from your theme that doesn’t have a sidebar, and rename this.
see https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/#8-make-sure-bbpress-uses-the-page-template-we-want
So once you know which page template file you need, copy this and rename the copy to bbpress.php
Place this file in the root of your theme ie wp-content/themes/%mytheme%/bbpress.php where %mytheme% is your theme’s name.
come back if any of that is not clear, and I’ll try and help further !
I want to change the template used for my forums index and the forum itself – currently it is using a default that has a sidebar that I don’t want.
I think they live in …/plugins/bbpress/templates/default/bbpress. So I can create new ones in my child theme if I only knew which to copy?
Is there a list anywhere of which is what…. the codex doesn’t seem to have it. Right now I need to know the ones for:
- Forums Index page
- Forum list of threads page
- Thread Page
Thank you
liz
Hey Robin,
Is there anyone else on the bbPress side who might be able to offer some advice
as i’m getting nothing from buddypress, ie no response 🙂 ?
Many thanks.
I’d like to use this as well, but not sure how to implement this. Should this be in an own file (named how?) and added to my childtheme’s subolder bbpress, or should I place the code somewhere in an existing file?
@leon_drake
I found an old thread within this forum, where you offered you plugin “bbp_signature_buddypress-edition”:
bbPress signatures with BuddyPress
I installed it and first it worked fine, but now the signature doesn’t show anymore. I tried to find the plugin homepage to see if there’s a new version or a fix, but I couldn’t find anything.
I have no idea for what reason it stopped working, I tried to reinstall it, that didn’t help. Any ideas what I could do? Or is there maybe another solution existing meanwhile?
think its as simple as lacking the hash (#) at the start
ie
#bbpress-forums .bbp-topic-content p,
#bbpress-forums .bbp-reply-content p {
font-size: 12px ;
Come back if that doesn’t work and I’ll look further.
If it does, let me know and I’ll change the docs !
“Version Control Software” is how I ‘got it fixed’, everything I do these days is done using ‘version control’ it lets me know what I’ve done and easily roll back any changes I made to site or bbPress. 🙂
bbPress & WordPress use SVN though a real popular one is Git and GitHub https://github.com/
They have nice intro course for Git on GitHub here http://try.github.io and it does take a while to grasp all the concepts but once you do you would never go back to not using it 🙂