Forum Replies Created
-
In reply to: BBPress user profile page is restricted !!!!
just yours, everyone’s, are you using a shortcode on a page?
In reply to: Unable to Edit the post in bbPressok, well unless you can replicate – hard to help 🙂
In reply to: Keep subscribers at frontend -redirect wp loginhmm – if that is all that is in that page, then suggest you just do it without wp-bakery
In reply to: Unable to Edit the post in bbPressSo I’m presuming that you have tried this for yourself as a participant?
In reply to: bbPress Topics for Posts commentAs I say I don’t plan to change how the default works – you can change that for your site, and yes it does not apply retrospectively
‘I also wanted to ask if there is a way to update that field in forum topics when editing in admin.’
yes just edit the topic.‘leave a comment’ is part of the comment form, and that is disabled when topics for posts shows. You can add that back on dashboard>settings>discussion>bbPress Topics for Posts Strings>Link text
In reply to: Keep subscribers at frontend -redirect wp logincan you define ‘not working’ please
In reply to: Automatic subscribtionIn reply to: bbPress Topics for Posts commenton ‘Is it useful to have this function also for pages?’ – it might be for some, and I do not plan to change this at the moment.
On the default – I also don’t plan to change this – there are lost of people using the existing default, and to suddenly change this forcing them to change it back is not good practice. You can of course change it yourself for your site
In reply to: Forum Not showingjust given screenshots, impossible to help
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: Stop redirect after submitting replyyou’ll find the filter in
bbpress 2.6.6\includes\replies\functions.php
lines 473 and 768
In reply to: Edit the comment box size🙂
In reply to: Edit the comment box sizethis (untested) should work
add_filter ('bbp_after_get_the_content_parse_args', 'change_rows') ; function change_rows ($args) { if ($args['context'] == 'reply' ) { $args['textarea_rows'] = '6' ; } return $args ; }
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: Fix for PHPBB3 to BBPress conversion script@davidmanch thanks so much for posting this answer – it will certainly help others 🙂 🙂
In reply to: How to enable Unsubscription link only to Topic ?I always have hated that PHP doesn’t have a simple ‘contains’, so you have to say if the position of some text does not equal false, then it is true so the string contains the text – very silly !
In reply to: Blank Repliesgreat – glad you are fixed
In reply to: How to enable Unsubscription link only to Topic ?no problem, glad you ae fixed !
In reply to: Blank Repliestry
dashboard>settings>permalinks and just click save – this resets the permalinks and may help
In reply to: Blank Repliesso are you able to replicate this, is it all replies, some replies, all users, some users?
In reply to: How to enable Unsubscription link only to Topic ?without getting complicated, this will work quite well
add_filter ('bbp_get_topic_subscribe_link' , 'julia_unubsribe') ; function julia_unubsribe($retval) { if (strpos($retval, 'Subscribe') !== FALSE) { $retval = '' ; } return $retval ; }
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
it will let someone unsubscribe from a topic, but does let them re-subscribe if they stay within that topic (so if they click by mistake, they can unclick immediately) once they leave that topic, then they can’t subscribe, and they can’t subscribe to a topic that they are not subscribed to in the first place.
In reply to: Developer DocumentationI’ll look at that – might be useful
In reply to: How to enable Unsubscription link only to Topic ?can you define what you mean by ‘reply page’ please
In reply to: Developer Documentationonly stuff is in the documentation tab.
buddyboss basically uses bbpress and buddypress so all the bbpress hooks are the same
In reply to: Deleting Spam Topics PermanentlyI’d guess you haven’t clicked the database on the left hand side to get a list of tables in the middle
In reply to: Do I have to stay in version 2.5 for life?@supermagicien – thanks so much for posting back, it is always good to get feedback and updates !
Really glad you are now working on the latest bbpress 🙂
In reply to: Deleting Spam Topics Permanentlyyo could then use this to clear out the post meta