Checking again if anyone is able to assist me.
I am happy to pay for someone to perform the migration work to bbPress.
ok do not worry, I deleted the forum and uninstalled the bbpress plugin.
As of the beginning of August, two strange things began happening with emojis:
1) The emoji appears properly in the editor (visual AND text), but displays as “?” in the published post.
2) All previously-published emoji icons changed to a single style, independent of browser, OS, and device.
(Note: Robin Wilson’s “add visual editor” plugin has been enabled)
——
WP 4.9.8 / BBPress2.5.14
https://www.fluentself.com/forums/
Problem exists with standard theme enabled
Forum is private, can’t publish login details here
Great thanks for your help…
well not sure what used to be there – but bbpress had some spam authors I was trying to search for – but i do not think they were created as users. Is this possible? I did have incorrect settings to allow posts without first having user (now changed)
so in my case – I couldn’t search for users (there were none) or authors – correct?
Any way – thanks for the help and have a great vacation!
I suspect your theme is blanking them.
If you are able to view your file structure using ftp, then see if you have a folder
wp-content/themes/%your-Avada-theme-name%/bbpress.
where %your-Avada-theme-name% is the name of your Avada theme.
If so then you should find a bunch of templates which the theme author have altered
If you also want to delete the user, you can do
dashboard>users>all users then search for the user you want to delete
hover around there avatar and name and you will a bunch of links which one of them says delete
click that
then the next screen which is added from bbPress which says
[] delete all content
[] attribute all content to: {some username}
tick delete all content then confirm deletion
best I can do, I’m on vacation at the moment:-)
I have the same problem.
I enabled reply threading in the setting of forum but not working.
My bbPress version is 2.5.14
Hi. I am building my Online School and I installed bbpress to have a forum. I can’t give you a link now, because my website has coming soon mode active.
I have a problem with breadcrumbs. First of all, they don’t show as I see them in others’ forums. They don’t show at all. I have enabled Page Title Bar to show breadcrumbs, but this is an option from my theme (I use Avada theme). This helped me to show breadcrumbs in the page title bar, but I would prefer to see default breadcrumbs from bbpress just above the forum.
Another problem is that when I click on “Home” it takes me to my homepage, not to the Forum homepage, but this is understandable, since the breadcrums come from my theme, not from the bbpress.
Why I can’t see that simple forum breadcumb trail just above the forum?
View post on imgur.com
Hi,
I found a bunch of new topics and replies and want to delete them – hopefully in a bulk way.
I tried to use the search to find spam authors but it doesn’t seem to work..
Q: whats the best way to delete spam in bbpress?
I am somewhat new to bbpress – I’m curious if there is a way to make sure that posters need to be signed up as members before they can post.
The goal is to prevent just anybody from posting without first becoming a some kind of member.
Q: how would I set up a membership requirement prior to posting?
Hello !
I installed bbpress on my website (no problem with it) and want to use a category for users who wants to add comments about another page in my website.
For example, a user looks at page http://www.mysite.com/pageABC/, he clicks on a button “add comment”, a new page opens, with in it a prefill post in my bbpress forum (for example with subject “comment about pageABC”).
Is it possible to do this ?
Thanks !
Hi,
If the post is edited, the original post will be gone.
How to keep the original post?
For example,
This reply was modified 1 second ago by bbpress. click to see original.
Anyone knows the custom code for it?
that error suggests that your theme Stockholm and file js/plugins.js is the problem.
So it initially looks like enabling tinymce within bbpress is calling the tinymce or other code within your theme – the bbpress code you are using just turns on the wordpress function.
to prove, try switching as a test to a default theme, such as twentyseventeen and see if the error goes away
Looks like a conflict between your theme, bbpress and 4.9.8.
It works fine with a default theme.
what theme are you using?
I believe my site was automatically updated to WordPress 4.9.8 today. I went to
Appearance -> Customize, and I got a 505 Internal Error page. After a bit of
digging, I found that bbpress v 2.5.14, when deactivated, makes this problem go
away. When I enable the plugin again, the problem returns. When Deactivated the
problem goes away again. Everything else seems to work fine except for the Customize under Appearance. Since this is isolated to bbpress, I figured I should notify you.
rewrite rules
This could be an issue with your rewrite rules. To fix this try resetting your permalinks. In your WordPress Administration Screens navigate to Settings > Permalinks, select a different permalink structure and save. Then select your preferred permalink structure and save again.
or
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
suspect that @p30better is just posting spam.
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
you can do it by amending a template if you know how to do ftp
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
where %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/content-single-forum.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/content-single-forum.php
bbPress will now use this template instead of the original
and you can amend this
so amend this template to read
<?php
/**
* Single Forum Content Part
*
* @package bbPress
* @subpackage Theme
*/
?>
<div id="bbpress-forums">
<div id="forum-intro">
<?php if (bbp_get_forum_title() == 'technical' ) echo 'this is some content' ; ?>
<?php if (bbp_get_forum_title() == 'leisure' ) echo 'this is some different content' ; ?>
</div>
<?php bbp_breadcrumb(); ?>
<?php bbp_forum_subscription_link(); ?>
<?php do_action( 'bbp_template_before_single_forum' ); ?>
<?php if ( post_password_required() ) : ?>
<?php bbp_get_template_part( 'form', 'protected' ); ?>
<?php else : ?>
<?php bbp_single_forum_description(); ?>
<?php if ( bbp_has_forums() ) : ?>
<?php bbp_get_template_part( 'loop', 'forums' ); ?>
<?php endif; ?>
<?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?>
<?php bbp_get_template_part( 'pagination', 'topics' ); ?>
<?php bbp_get_template_part( 'loop', 'topics' ); ?>
<?php bbp_get_template_part( 'pagination', 'topics' ); ?>
<?php bbp_get_template_part( 'form', 'topic' ); ?>
<?php elseif ( !bbp_is_forum_category() ) : ?>
<?php bbp_get_template_part( 'feedback', 'no-topics' ); ?>
<?php bbp_get_template_part( 'form', 'topic' ); ?>
<?php endif; ?>
<?php endif; ?>
<?php do_action( 'bbp_template_after_single_forum' ); ?>
</div>
You will see I have added lines to change the content per forum
so the line
<?php if (bbp_get_forum_title() == 'technical' ) echo 'this is some content' ; ?>
says that if the forum is called ‘technical’ then write ‘this is some content’ so you simply need to change the forum name and what you want that forum content to be.
You can add additional lines for each forum, my example has two forums ‘technical’ and ‘leisure’
I’m trying to enable Visual Editor for my forum.
I’m using this code – https://codex.bbpress.org/enable-visual-editor/
However, it doesn’t work for me and i see this errors:
jquery.js?ver=1.12.4:2 Uncaught Error: no such method 'instance' for autocomplete widget instance
...
tinymce.min.js?ver=4711-20180425:2 Uncaught TypeError: Cannot read property 'refreshContentEditable' of undefined
My bbPress version is 2.5.14
Wordpress – 4.9.7
Tried to disable all plugins, didn’t help..
The Use TinyMCE with BBPress plugin worked.
transitory solution
install plugin
Use TinyMCE with bbPress
I am new to bbPress. I have it installed with the Genesis framework. I have also installed the bbPress Genesis Extend plugin.
I have a problem with the editor when making a post. The editor buttons are displaying vertically instead of horizontally in one row. I have attached a photo to illustrate.
How do I get the buttons to display properly?

Image found here: https://imgur.com/a/oRrNZh5
I would really prefer that TOPIC publishing/editing be limited to MODERATORS with PARTICIPANTS limited to REPLY publishing/editing etc. This seems like an widely useful adaptation but I don’t see how to do it, either within bbPress or using other plugins such as Members. bbPress 2.5.14, wordpress 4.9.7