Forum Replies Created
-
In reply to: Not showing Freshness/
just taken a quick look, and yes it is your theme
eg
https://www.ggforo.com/wp-content/themes/ekko/core/assets/css/bbpress.css?ver=5.7
hides freshness on line 1511
In reply to: Not showing Freshness/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 in WP Dashboard@tcmdoc61 great – glad you are fixed !!
In reply to: Index page is empty.dashboard>settings>permalinks and just click save – this resets the permalinks and may help
or
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: Reply threading auto drops to bottom of pageonce activated go to
dashboard>settings>bbp style pack>bug fixes
Fix Threaded Replies Jump
In reply to: Forum not showing in WP Dashboardok, in which case…
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 ‘recent Topics’ widget bypasses password?thanks, but of you only protect at ‘page’ level, then all topics and replies are freely visible to users – they are only hidden by people not knowing a topic title.
bbpress itself has forums visible to all (public forums), and/or visible only to logged in (private forums) it does not have a concept of page protection for someone not logged in.
Hence the widgets do not have any protection.
In reply to: bbPress ‘recent Topics’ widget bypasses password?you might want to look at
here you can set up a group – say called ‘members’ and allocate forums and users to that group.
This will automatically show forums/topics/replies to logged in members, but otherwise hide them.
There are widgets in this plugin for recent topics and replies which will hide these
In reply to: Forum not showing in WP Dashboardyou need to be a keymaster as well as admin to see the forum.
great – glad you are fixed
In reply to: How do I edit my group forums?contact me via
sorry, I don’t understand the question?
In reply to: How do I edit my group forums?sorry, but you are assuming that your site is exactly the same as everyone else’s.
I have no idea how you are creating these menu items, and suspect is a wordpress not bbpress question.
If you would care to give a link to your site rather than images I might be able to hep further.
At the moment all you are doing is showing me pictures of your car and asking how to mend the engine 🙂
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