Forum Replies Created
-
In reply to: Change Default Display Name
pretty much – if you want to not show user profiles, then use
once activated go to
dashboard>settings>bbp style pack>Profile
where you can set profiles not to display
In reply to: Change Default Display Nameuntested, but this should work
add_filter( 'bbp_get_reply_author_display_name' , 'rew_reply_change_to_first_name', 10 , 2 ) ; function rew_reply_change_to_first_name ($author_name, $reply_id) { // Get the author ID $author_id = bbp_get_reply_author_id( $reply_id ); $user = get_userdata($author_id); $first_name = $user->user_firstname; return $first_name ; } add_filter( 'bbp_get_topic_author_display_name' , 'rew_topic_change_to_first_name', 10 , 2 ) ; function rew_topic_change_to_first_name ($author_name, $topic_id) { // Get the author ID $author_id = bbp_get_topic_author_id( $topic_id ); $user = get_userdata($author_id); $first_name = $user->user_firstname; return $first_name ; }
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: The names of the user exist in the marginlink to an example on your site please
In reply to: the emails don’t reachbbpress just uses wordpress registration.
I suspect that emails from your site may be being seen as spam.
try the ideas in here
In reply to: search input boxIf you have allowed the serach, then it should appear in your main forum list.
If it is not, it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, 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.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: Forum not showing on WordPress Dashboard coiumnyou need to be a keymaster to see forums in the dashboard – check your settings
dashboard>users
If you are not, then you need to get a keymaster to set you up.
If you are a keymaster it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, 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.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
bbpress doesn’t
In reply to: Plugins that help me fix bbpress’ profile page?it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, 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.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: I can’t limit the number of replies shown on a pageare you using reply threading?
In reply to: Search page not workingthanks – much appreciated
great – thanks for the update – hope all goes ok from now on 🙂
In reply to: Search page not workingtry again 🙂
In reply to: Search page not working🙂
In reply to: Search page not workingwish I had a dollar for every elementor question.
If your using the ‘hello’ theme try this
or maybe
\includes\replies\template.php
line 127
function bbp_has_replies
but be aware -lots of plugins filter this.
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, 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.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: Portion not translated🙂
do you have a link to an example?
hmmm…are you using any other bbpress related plugins?
you will probably need to look at the posts in phpmyadmin, the ‘menu_order’ parameter determines what order replies are shown in, you might need to manually edit to correct
so are you using an seo plugin ?
In reply to: Creating new custom rolecontact me via
In reply to: I can’t limit the number of replies shown on a pageI thought that replies matched the number of topics – is this not the case, or do you want a different no. of replies to a page than topics?
In reply to: Portion not translatedbest I can suggest is :
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, 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.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: bbpress + divi template questions@meganhughes – this is theme specific – and themes render in lots of different ways, no blanket solution unfortunately
In reply to: Adding Iconslink to a live example on your site please