Forum Replies Created
-
In reply to: Bug: Recount replies in each forum
I suspect this is to do with your import, not a bug in the count
hmmm… nor sure how a computer can recognise the difference between an image and a link
In reply to: Disable HTML In Forum Postsπ
In reply to: Disable HTML In Forum Postsoh and you lose the editor in
dashboard>sttings>forums>Post Formatting>uncheck
In reply to: Disable HTML In Forum Postsusing unfiltered HTML is a wordpress capability, normally given to Editors and above, so standard subscribers should not be able to user HTML
In reply to: hide public forum for user roleπ
In reply to: hide public forum for user roleIn reply to: Restore a topic does not worktry
once activated go to
dashboard>settings>bbp style pack>bug fixes
Fix Threaded Replies Jump
In reply to: Restore a topic does not workI’ve just taken a look at the front end restore.
The bbpress restore function calls a wordpress function
wp_untrash_post
which sets the restored status to ‘draft’.I’m pretty sure that it didn’t used to do that, so am presuming it’s a wordpress change.
However if you are using
then I’ve added a fix for this to the ‘bbpress bug fixes’ tab.
If you want code, then 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
add_filter ('wp_untrash_post_status', 'rew_correct_untrash_status' , 10, 3) ; function rew_correct_untrash_status ($new_status, $post_id, $previous_status) { $post_check = get_post( $post_id ); //update_post_meta ($post_id , 'rew_type', $post_check->post_type) ; //if it's a reply or topic, then change status back to $previous_status if ($post_check->post_type == bbp_get_reply_post_type() || $post_check->post_type == bbp_get_topic_post_type()) { $new_status = $previous_status ; } return $new_status ; }
In reply to: Limit tags to a pre-defined list?There are 2 standard bbpress templates, one for the topic form, and one for the reply form.
My plugin amends these templates, but I’d bet that so does the Yuozify plugin. Plugins tend to load in alphabetical order, so the Yuozify probably takes preference, but in any case, if we reversed it, my plugin would overwrite any changes they have made.
I don’t have access to the Yuozify plugin as it is paid.
Chances are that if we put a combined one in your child theme it would work, but this would be beyond free help, although not expensive.
Maybe contact me via my contact page http://www.rewweb.co.uk/contact-me/ and I’ll see if I can help further
In reply to: Shortcode to add “Edit Profile” linkπ
In reply to: Limit tags to a pre-defined list?The code is in my style pack.
once activated go to
dashboard>settings>bbp style pack>Topic/Reply Form
and tick option 18.
If this does not work, then it may be a theme or other plugin affecting
ok, so you have users who have a wordpress role, but no bbpress role – yes?
If so, then testing for a bbpress role, or as you are suggesting a capability such as create_topic seems a sensible solution.
In reply to: Restore a topic does not workok, so the first click of ‘trash’ should not delete the topic, but place it in the trash. You should then see ‘delete’ and ‘restore’ on the front end.
Is this is not what you are seeing?
You can also see the topic in the backend in the ‘trash’ selection
In reply to: Restore a topic does not worksorry, can you explain what you mean by clicking on βRecycle Binβ? Is this front end/backend or where are you seeing this?
I suspect those functions are bbpress version 1
bbpress 2.x just uses wordpress login, so the standard wordpress function
is_user_logged_in()
will tell you if the user is logged in.
In reply to: BB Press Conflict with W3 Total Cachethanks for the update π
In reply to: Forum subscribe buttons missingit 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
hmm… I would suspect that it is not file related, but rather plugin, theme, role or database.
I have gone through all the PHP files on the backend,
That would be several hundred, and given plugins, probably thousands to look through the code of and understand, and would take weeks if not months π
I would ask what you have looked at, but as I say I suspect that files as such are not the issue
participants are in the database.
Without any idea of what you changed to get to this point, it is impossible to advise what to do other than the above.
Unless you have been changing files, then looking at them is probably pointless.
Did you do the actions I suggested ?
π
I’ve just looked and then code in my style pack is not doing what I would expect – let me look at it again this week
several
\bbpress 2.6.6\templates\default\bbpress\content-single-topic.php
if show lead topic set, calls content-single-topic-leadcalls
loop-replies
form-reply\bbpress 2.6.6\templates\default\bbpress\loop-replies.php
does reply list headerscalls loop-single-reply
\bbpress 2.6.6\templates\default\bbpress\loop-single-reply.php
lists reply content
In reply to: BB Press Conflict with W3 Total Cachemany on shared servers with eg LCN or Siteground, with sub 3s response.
In reply to: bbPress + Elementorare you using the hello theme?
ok, so if you are a keymaster then I can only suggest
1. reset the permalinks – dashboard>settings>permalinks and just click save – this resets them.
2. if that doesn’t fix, 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