Forum Replies Created
-
In reply to: Bbpress disappears
great – come back if you need further help
In reply to: How to add a custom buttonthere is a hook in the content-archive-forum.php file you can use
bbp_template_before_forums_index
so
add_action ('bbp_template_before_forums_index' , 'rew' ) ; function rew () { //your code here eg echo 'hello' ; }In reply to: Any shortcodes in footer breaks on pages of bbpressjust tried a shortcode in the footer of my test site running twentyten, and it works on both bbpress and non bbpress pages using the text widget
In reply to: Any shortcodes in footer breaks on pages of bbpressso if you don’t use VC, does it break ?
In reply to: Any shortcodes in footer breaks on pages of bbpresscan you give an example – eg of a footer shortcode that breaks and what bbpress page
In reply to: Bbpress disappearsInstall
and go to
dashboard>settings>bbp style pack>bug fixes
you’ll see the ability to set yourself back up as keymaster
You can deactivate and delete this plugin afterwards if you wish
In reply to: Bbpress disappearsare you listed as a keymaster ?
In reply to: Bbpress disappearsif you didn’t mean to do that, then you or your hoster will need to revert to a backup
In reply to: Bbpress disappearsif you ran ‘reset’ then yes that deletes everything in bbpress, so you are starting again.
In reply to: BBpres isnt really responssive with my themegreat – glad you are fixed
In reply to: BBpress not showing correct topics under forumok, suggest
dashboard>tools>forums>repair forums, and run as appropriate
In reply to: BBpress not showing correct topics under forumone forum?, lots of forums?, new install? old install?, just started happening?, always happened?
Please try and help us to help you
In reply to: Topics browser not workinghey no problem, glad you are fixed !!
In reply to: Topics browser not workingsorry, working across many things and missed that.
so that page is made up of ‘all topics’ and ‘recent topics’ – are these shortcodes on a page, or how is this page content created?
In reply to: Topics browser not workingis this public, and if so link please
In reply to: Notification of new comments to for Adminthough old, this plugin still works
In reply to: Keymaster, still don’t see forums in WP dashboardgreat – glad you are fixed
In reply to: Topics browser not workingtry
dashboard>settings>permalinks and just click save – that resets the permalinks
If that does not work, 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: Content filter not workingif within content you can use
but if at the bottom of ‘bbpress’ pages, then there are a bunch of actin hooks you can link to
do_action( 'bbp_template_after_forums_index' ); do_action( 'bbp_template_after_topics_loop' ); do_action( 'bbp_template_after_replies_loop' ); do_action( 'bbp_template_after_user_profile' ); do_action( 'bbp_template_after_search_results_loop' );should get you most of the way there
In reply to: Autoptimize and bbpressmy personal view is that with internet speeds nowadays, aggregating js and css is not really such a need – just a personal view 🙂
In reply to: Reply permalink not showing up in searchok, thanks for reporting back
In reply to: Profile Settingsummm….click the ‘edit’ button.
In reply to: How to insert short codes under topic pages?no problem !
In reply to: @mention functionality on forumsthe setting is ‘bmen_mute’ and if present then email not sent. If absent, then email sent
so
$do_not_send = get_user_meta ($user_id, 'bmen_mute' , true) ; if (empty ($do_not_send)) { //then send } else { //do not send }In reply to: @mention functionality on forumssorry, not sure I understand the above post – are you answering your own question, or asking another or what?