Forum Replies Created
-
In reply to: All Forums not showing
forums per page uses one of these settings
In reply to: All Forums not showingdashboard>settings>forums>topics and replies per page – forums uses one of these, can’t remember which
In reply to: bbpress moderation – word blocking or flaggingbbpress uses the wordpress moderation and blacklists
dashboard>settings>discussion
In reply to: Certain User Cannot Create Topic or Reply to Topicthis crops up occasionally and has proved difficult to fault find.
I’ve just written a small plugin that will check what is set in the blacklist, but also let you skip that check.
can you give it a try, and let me know if it helps
1. go to
and download and save, and make a note of where it is saved.
2. Then go to dashboard>plugins>add new> upload and upload the plugin you saved in 1. above
3. then activate
4. go to dashboard>tools>bbp blacklist checker and it will confirm whether data is held, and let you skip the check
In reply to: increase font sizeor install
In reply to: increase font sizeas per op
What I did,
1. installed Simple Custom CSS plugin – all ok
2. insert the below code. and changed the font-size: 1.1em; to 1.6emIn reply to: Custom Breadcrumbs (what URL to use for forum)great – glad you are fixed
In reply to: Help with installationIn reply to: Custom Breadcrumbs (what URL to use for forum)I’d suggest you do this as follows:
there is a ‘hook’ that you show above called ‘<?php do_action( ‘bbp_template_before_single_topic’ ); ?>’
This tells bbpress to do any action that is added at that point.
so adding a hook will mean that the function is called at that point.
The following code should go in your child theme functions file, or use the code snippets plugin
add_action ( 'bbp_template_before_single_topic' , 'rew_back' ); function rew_back () { $text = 'click to go back' ; if (bbp_get_topic_forum_id() == '25') $href = home_url( '/forum/domestics/' ) ; if (bbp_get_topic_forum_id() == '33') $href = home_url( '/forum/commercial/' ) ; //where to go if page not there else $href = home_url( '/login/' ) ; echo '<a class="button" href ="'.$href.'">'.$text.'</a>' ; }
so each forum will need a line.
In reply to: How to let user publish the post right away?you must have an additional plugin that is moderating posts, bbpress just publishes
In reply to: Topic Viewhey great – glad you’re fixed, and thanks for posting your solution to help others
In reply to: Topic Viewthe problem is that modern themes ignore what wordpress expects and do all sorts of clever stuff.
yes copy page.php and rename it to bbpress.php
then post a copy of the file here, and I’ll try and help further
so what is the post publication schedule ? wordpress delayed publishing or a plugin?
is this related to bbpress ?
In reply to: Topic ViewIn reply to: notification description not showingok, not sure what to suggest next, as I’m not a buddypress expert.
In reply to: notification description not showingactually try both, making it lower means it runs first which might also be the answer !!
In reply to: notification description not showing20 – just a stab at a solution
In reply to: notification description not showingI suspect it is to do with a conflict in this file
bbpress 2.5.14\includes\extend\buddypress\notifications.php
which hooks to the same filter. Maybe up your priority from 10 to get yours to run later ?
In reply to: admin menu doesn’t show on topic pageok, not something I’ve seen, as can only suggest that you do the basic fault finding process ie
It could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
In reply to: User registration email not sending to userWhether you register via wordpress or bbpress the password email comes from
see this article for further help
https://www.wpbeginner.com/plugins/how-to-change-sender-name-in-outgoing-wordpress-email/
In reply to: admin menu doesn’t show on topic pageis this publicly viewable ?
In reply to: Undefined Index NoticesI suspect it is a conflict.
It could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
In reply to: XOOPS xForum to bbpressyou will need to do a custom import
buddypress and bbpress just use the wordpress logon.
It could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back