Forum Replies Created
-
In reply to: How do I edit my group forums?
which ‘home’ button?
In reply to: Getting fatal error on bbspress indexThe quickest way will be to turn on debugging in wordpress and come back with tne exact error you are getting
https://docs.themeisle.com/article/819-how-to-turn-on-off-debugging-in-wordpress
If you can’t do that, then 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: Taille policeπ
In reply to: all-forums link brokegreat – glad you are fixed !!
In reply to: all-forums link brokeIf that doesn’t work, the standard advice 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: all-forums link brokeok, I’s start with
dashboard>settings>permalinks and just click save, that resets the links and may fix
In reply to: Taille policeIn reply to: Code which links to shortcodecontent-single-view.php
In reply to: How do I edit my group forums?sorry, this is not a website design service π
In reply to: Change user role based on user post count?$users= get_users () ; if ( $users ) : foreach ( $users as $user ) : $user_data = get_userdata( $user->ID ); //whatever you want here endforeach ; endif ;
In reply to: How do I edit my group forums?the templates you need are in
wp-content/plugins/bbpress/templates/default/bbpress/
to amend a template do the following which is an example with loop-sungle-reply
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.phptransfer this to your pc and edit to how you want it to look
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-single-reply.phpbbPress will now use this template instead of the original
In reply to: Forum name on topic titleThank you so much for your kind donation – it is really appreciated !!
I am glad to have helped π
In reply to: How do I edit my group forums?I Can’t see the images, but from the sound you might need
In reply to: Forum name on topic titleadd_action ('bbp_theme_before_topic_title' ,'rew_display_forum' ) ; function rew_display_forum () { $topic_forum_id = bbp_get_topic_forum_id(); $forum_title = bbp_get_forum_title( $topic_forum_id); $forum_url = bbp_get_forum_permalink( $topic_forum_id ); echo '<a class="rew-forum-name" href="'.$forum_url.'">'.$forum_title.': </a>' ; }
In reply to: Forum name on topic titlehmm… that’s not easy as you rightly say the hierarchy is
content-archive-topic
loop-topics
loop-single-topicThis last one is also used by forums, so you can’t just change that.
In this last you could hook an action to ‘bbp_theme_before_topic_title’ eg put this in your child theme functions file
add_action ('bbp_theme_before_topic_title' ,'rew_display_forum' ) ; function rew_display_forum () { $topic_forum_id = bbp_get_topic_forum_id(); $forum_title = bbp_get_forum_title( $topic_forum_id); echo '<div class="rew-forum-name">'.$forum_title.'</div>' ; }
and then as the shortcode displays in a ‘page’ class and the forums in a ‘forum’ class, we can add css to hide the forum title unless we are in a page
so in your custom css area put
.rew-forum-name { display :none ; } .page .rew-forum-name { display : inline-block ; }
that should work
In reply to: Search form dont’t display resultsThis is probably because in the bbpress plugin there is a template called content-search.php. Many themes also now have a template file called content-search.php. Since the bbPress templates donβt necessarily need to be in a bbPress folder, the bbPress plugin is choosing the template from your theme before the template that is actually in bbPress.
To fix copy content-search.php from the bbPress plugin templates and place it in a child theme in a folder called bbpress.
So create a directory on your child theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/content-search.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-search.php
bbPress will now use this template instead of the originalbbpress sends from the address to this address with BCC to each subscriber.
This works for some sites, not for others.
This plugin whilst old, still works well
In reply to: Redirect to topic page by IDπ
In reply to: Redirect to topic page by ID$topic_url = bbp_get_topic_permalink( bbp_get_reply_topic_id( $reply_id ) ); $forum_permalink = bbp_get_forum_permalink( $forum_id );
two examples of what you might be after
In reply to: Redirect to topic page by IDsorry – don’t understand the question.
if you mean go to a topic then this is simply the url, which will depend on your permalink settings
In reply to: Limit tags to a pre-defined list?I’m working on a pre-defined list option at the moment – probably about a week and I’ll release some code
In reply to: Settings for my forumGreat – glad you are fixed
In reply to: You are already logged in text.Quickest way to chec is just to deactivate style pack (you’ll not lose any settings) and see if it comes back ! If so then check the settings
In reply to: Error message says I am currently editing a topicBackend = anything where you are in the dashboard
Frontend – everything else !So what you describe is not normal behaviour.
I’d suggest 2 things.
1. You have another plugin that is affecting how bbpress does topic edits
2. The topic in question has content that violates your moderation rules – most commonly a number of links, but might be words.so in
dashboard>settings>discussion you will have rules on how many links and what wrods are blacklisted on your site. If on a topic edit these rules get broken, then the topic will go into moderation.
If this is not obvious from the topic that you are editing that is going into pending, then you could try posting a simple topic with just a few words, and then edit this to see if it suffers from the issue.
if it does, then item 1 above might apply.
In reply to: Error message says I am currently editing a topicyou don’t say whether this is front or back end.
If you can repeat this issue, can you give us a series of steps to see it