Forum Replies Created
-
In reply to: Bbpress disappears
Install
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?
In reply to: Submit Button Editinggenerally the styling is part of the theme – the ‘submit’ button has classes of ‘submit’ and ‘button’, so see if you theme lets you change this.
if not try
http://css3buttongenerator.com
this will give you code you can put in your themes custom css area
just change
.btn {
to
.button {
and
.btn:hover {
to
.button:hover {
before you paste the code
In reply to: How to insert short codes under topic pages?add_action( 'bbp_template_before_topics_loop' , 'rew_add_shortcode3'); function rew_add_shortcode3 () { echo do_shortcode( '[shortcode here]' ); }
In reply to: @mention functionality on forumsif you mean the bits in dashboard>settings>bbp mentions they are in the options table under ‘bmen_settings’
so
get_option('bmen_settings', null)
In reply to: Is this a bbpress issue or something else?glad you are fixed
In reply to: Format of the bbPress topic linksCoding to do ID’s is possible I suspect, but I have no idea how to do that π
This article suggests that urls are used for seo ranking
and says
A well-crafted URL provides both humans and search engines an easy-to-understand indication of what the destination page will be about.
Although URLs can include ID numbers and codes, the best practice is to use words that people can comprehend.
Just a thought.