Forum Replies Created
-
In reply to: Where you can see bbpress update changes
but in general terms, then no you cannot see a list of changes
In reply to: Where you can see bbpress update changesif you mean the files in /templates then you can amend these and put them in your child theme
You can copy all the templates across, but you only need to copy those that you want to change, and it is better just to do this, as then you know which you have altered.
so if you wanted to amend loop-single-forum you would do the following
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
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-forum.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/loop-single-forum.php
bbPress will now use this template instead of the original
and you can amend this@hardel – thanks
correct
link to your site please
dashboard – do you know what that is ?
if so in there you should have Forums, just as you have pages
dashboard>forums>add forum
In reply to: bbpress links after installdashboard>settings>forums>slugs and unset the forum root slug and unset prefix
no problem 🙂
In reply to: Change bbPress role for WP users who change WP roleso you will either need a hook from your CiviCRM code, so need to query this with them, or as you suggest have a cron job.
In the spirit of community software, if you write such a function, then yes please do share it here so that other people who would like to do this canb make use of it
what plugin is doing your members list ?
In reply to: Check if on User Profile pagegreat
In reply to: Issue with “bbPress Advanced Statistics”ok, very quick as I am passing
If you just want it to display for logged in but not for others, then just change
return $HTMLOutput;
to
if (is_user_logged_in()) { return $HTMLOutput; }
In reply to: Issue with “bbPress Advanced Statistics”I only started php in 2014 – necessity makes a great motivator.
I doubt if it would take you that long to find where the output is, and add a is_logged_in test to it.
In reply to: Issue with “bbPress Advanced Statistics”@ajtruckle time for you to start learning php ??:-) https://www.udemy.com/course/php-mysql-tutorial/
In reply to: [bbp-forum-index] does not show all forumsstill haven’t got to the bottom of why this is not working for a very few people
In reply to: Issue with “bbPress Advanced Statistics”may well be, but you can’t expect us to support every plugin 🙂
In reply to: Can not create a new forumscreenshot please
In reply to: Issue with “bbPress Advanced Statistics”not one for this forum, report in
https://wordpress.org/support/plugin/bbpress-improved-statistics-users-online/
all I can tell you is that bbpress doe not have the term ‘flagged’ in it.
maybe ask in then buddypress support forumI cannot see ‘flagged’ as a term in bbpress.
what other plugins are you running ?
I think this is not part of bbpress, but instead a plugin that is additional to bbpress?
In reply to: Can not create a new forumit 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: Problems on Forum Topicsadd this to the custom css tab of the style pack plugin
ul.bbp-forums-list {
display : none ;
}no idea why that works !! but thanks for the update