Forum Replies Created
-
In reply to: Force Sticky Post Order
🙂
In reply to: Double click on send button make duplicate postpart of the new topic check is for duplicates , not sure why your site isn’t.
you get an error message of
‘Duplicate topic detected; it looks as though you’ve already said that.’
In reply to: Force Sticky Post Orderso do the stickies have any replies to them ?
that might alter the order, eg most recent reply determines order
In reply to: Force Sticky Post Ordersorry, forget that, in wrong place
In reply to: Force Sticky Post Orderstickies should appear in date order early to late.
ok so in dashboard>topics>edit topics and find the sticky topics and edit, do they have a ‘menu order’ set ?
In reply to: Force Sticky Post Ordero how are you changing the order, which is not sticking
In reply to: Force Sticky Post Orderif not then come back, but let me know how you are changing the order
In reply to: Force Sticky Post Orderorder is determined usually by date – might be worth using the backend to change the date of one to be before or after the other.
In reply to: Change Default Display Namepretty 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?