well it does have the issue that it doesn’t work on bbpress 🙂
Sorry, not one I’m going to investigate, bbpress cannot be responsible for making sure every other plugin in the world works with it
Their plugin is working well. No issues. They are working each and every other pages. Just not in the bbpress archive pages.
Again easiest solution is to not to show the avatar
#bbpress-forums p.bbp-topic-meta img.avatar {
display : None ;
}
The issue isn’t actually with this css, but changing it is the quickest solution !
you may also need to use this
bbPress Genesis Extend
Thank You. Well, I saw the issue since the first time I installed bbpress and there wasn’t any extra plugin.
Notice Bar is fixed now, but Avatar and Username still floating…
If it helps… I can deactivate all plugins right now!?
not sure if it’s theme or plugin – maybe be a combination
anyway if you are happy not to have the avatar showing in that line, then this fixes
#bbpress-forums div.bbp-template-notice img.avatar {
float: left;
}
add it to your custom css.
When I change to any default wordpress theme the issue seems fixed. I thought It is something related with the theme
Minimal Coming Soon & Maintenance Mode
Inline Image Upload for BBPress
WP User Avatar
Yoast SEO
ok, nothing obvious.
apart from bbpress, what other bbpress related plugins are you using ?
add this to your custom css and alter the image to the one you want
#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
background-image: url("paper.gif");
}
besides bbpress , what other bbpress related plugins are you running ?
one for the bbPress Notify (No-Spam) plugin’s support page.
sorry, can you be clear, this is JUST using the search box on forum pages – yes ?
if so
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
Hi,
No shortcodes are working in the bbpress pages. The shortcodes are runnng very well in all other pages of my site. Just not working on bbpress topics, forums and replies pages. So I guess the problem is within bbpress. I tried to find out plugin conflict but no conflict was found.
Here is one of my topic pages: click on the “Login” or “register” button in the top menu. A hover will appear where I put a shortcode that works well in any other pages. Also, you can click on “contact” in the footer to see another shortcode not working. No problem with the plugins created shortocode or the popup modal, as they are working just fine in all other pages.
All the plugins, themes and applications are updated.
Hello,
When there is a reply to a topic or a new topic is created, people are notified.For notifications, I have been using bbPress Notify (No-Spam) plugin. In the notification emails sent, the ‘Topic url’ shows the full url text with no hyperlink. Is it possible to have the topic url to be hyperlinked so that recipient can simply click on it to go in order to go to the page?
Regards,
Reza
I have a bbpress forum with Twenty Twelve and also with Buddypress and both works right. But sometimes you should need make some css-tricks to get a better front-end design.
with bbpress you subscribe to forums, so unless you bhave subscribed, then you won’t get notified.
You can and control and auto-subscribe users to forums using
bbP Toolkit
or instaed/in addition use
bbPress Notify (No Spam)
which some admins use to see what is being posted
I use Members plugin (by Justin Tadlock), and don’t have problems with Moderators viewing private topics, in fact I temporarily switched everyone to Moderator. This plugin doesn’t allow me to edit any of the bbpress roles, is this expected?
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 it is related to your memebership plugin – see
Topics only visible to Administrators
sorry – it needs to go in your theme’s functions file
Functions files and child themes – explained !
I’ve added it to bbpress/includes/core/functions.php, but it doesnt work. It only redirects me as admin to the homepage when I click on the tabs.
Hello
My participants cannot view or reply to private topics. Administrators/keymasters seem to be able to.
I’ve installed bbPress version 2.5.14, and Members Version 2.0.2 plugins. When I look at the participant’s role it:
can read_private_forums
cannot read_private_topics
cannot read_private_replies
and I cannot edit this role: “The Participant role is not editable. This means that it is most likely added via another plugin for a special use or that you do not have permission to edit it.”
I tried deactivating plugins one by one to see if I could edit this role. I thought by default Participants could read and reply to private topics…
Thanks for any help
I add:
The theme is twenty twelve
WordPress version: 4.9.4
bbPress version: 2.5.14
This should work
add_filter( 'bbp_after_get_the_content_parse_args', 'rew_disable_text_editor' );
//editor bbpress
function rew_disable_text_editor( $args = array() ) {
$args['tinymce'] = true;
$args['quicktags'] = false;
if( current_user_can('administrator')) $args['quicktags'] = true;
return $args;
}
add this to your functions file