Forum Replies Created
-
In reply to: Bbpress should support schema
are you talking about scheme.org or the schema theme?
In reply to: Error 404 after a multiple words searchok, but that’s like saying ‘my car won’t start – what is wrong with it’ 🙂
In reply to: Bbpress should support schemasorry, but bbpress is a wordpress plugin, that’s it
In reply to: There’s a space sign before usernames in bbpressgreat – glad you’re fixed !
In reply to: There’s a space sign before usernames in bbpressput this in your functions file or in code snippets
add_filter( 'bbp_suppress_private_author_link', 'rew_remove_author_space' ) ; function rew_remove_author_space ($author_link ){ $author_link = str_replace( ' ', '', $author_link ); return $author_link; }
In reply to: Error 404 after a multiple words searchlink to your site ?
In reply to: Missing Reply Toolbaryou are using a paid theme which we don’t have access to, so can’t help you. You need to refer to support for your theme
In reply to: Error 404 after a multiple words searchtry
dashboard>settings>permalinks and just click save, this resets the permalinks
In reply to: Why is the post ID so high?bbpress uses wordpress posts, so this will be the count of all posts of whatever type since your site started. Post and page revisions count as posts, so each time you hit update on a page, post, topic, reply, forum and whatever other custom post types you have, a new post is created, so 1346 is actually quite low !!
In reply to: username place holder in emailsCurrently, I use “AsynCRONous bbPress Subscriptions”
yes that sends individual.
In reply to: BBPress Forum Has Problem With ThemeThis is a theme that you purchase, so suggest you go to their support for help, as we don’t have access to the theme.
In reply to: username place holder in emailsI’m actually working on a version of that plugin for my style pack plugin to allow html and some other features.
The problem with personalisation is that bbpress sends the email to noreply@yoursite and BCC’s in all the forum/topic subscribers. Only one email is therefore actually sent, so it cannot have personal greetings.
great – glad you are fixed
In reply to: How to change admin notification email address?great – glad you are fixed
try this
function rew_count_threaded_replies ($reply_id = 0) { $meta_key = '_bbp_reply_to' ; global $wpdb; $user_count = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->postmeta where meta_key='$meta_key' AND meta_value = '$reply_id'" ); echo $user_count ; }
so a threaded reply – yes ?
contact me via my website
My original user has roles listed as:
site (Administrator, Participant)
forum (Participant)hmmm… where is this listed? eg dashboard>users>etc.
– looks like some role plugin is doing some stuff.
In reply to: Subscribe link shortcodeno problem, I’ll load to to my test site when I get a moment
One oddity I have noticed is that I am no longer listed as Keymaster under User Roles for both the site and forum. I do not know how to restore those roles or if it is connected.
that is absolutely the issue !! – only keymasters get to see the forums in wp-admin. But you are not allowed to change your own forum role.
so if you are an admin, create a new user, give them admin privilege, and then log on using that username, set yourself back to keymaster, and then delete the new account
In reply to: Subscribe link shortcodecoma back if that doesn’t work and you can’t fix it
In reply to: Subscribe link shortcodefor
[bbp-subscribe-link forum_id=’557′]
this code (untested) should be close
function bp_subscribe_shortcode($attr) { //must have a forum_id or we just return ! if (empty( $attr['forum_id'])) return ; else $args['forum_id'] = $attr['forum_id']; echo bbp_forum_subscription_link($args) ; } add_shortcode( 'bbp-subscribe-link', 'bp_subscribe_shortcode' );
ok, I think you will need to do some more testing
so it could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
$topic_id = 100 ; $ count = bbp_get_topic_reply_count( $topic_id) ; echo $count ;
or shorter
$topic_id = 100 ; echo bbp_topic_reply_count( $topic_id ) ;
In reply to: Buddypress, bbpressI’d suggest you also post on the buddypress suppprt forum
https://buddypress.org/support/
Sorry – I am a user who moderates on bbpress, and don’t use buddypress so I can’t personally help