Forum Replies Created
-
In reply to: No back button to parent forum
thanks, yes that looks a better idea – I’ll add it to my next changes
it was bounced automatically, not by a human, maybe because of the heading.
I suspect your question is beyond free help, but maybe someone will come along and help. I suspect you’ve posted this in then buddypress support site as well, and it looks more buddypress oriented
Hope you find some help !
because it looks like spam !
In reply to: Forum Description Not SavingGreat – thanks for posting back the solution and that you are fixed !
In reply to: Error 404 after a multiple words searchActually if you are getting the same as the first poster, which still does the error, then having link won’t help.
I’ve just tested on my test site and all ok, so if you have disabled all the plugins, have you switched theme?
thanks for sharing that this fixes 🙂
In reply to: About replying custom field securitycan you post the code that creates the field in the reply form please
In reply to: No back button to parent forumas a temporary, add this to your functions file
add_action( 'bbp_template_after_forums_index' , 'rew_add_breadcrumb'); add_action( 'bbp_template_after_single_forum' , 'rew_add_breadcrumb'); add_action( 'bbp_template_after_single_topic' , 'rew_add_breadcrumb'); function rew_add_breadcrumb () { bbp_breadcrumb(); }
I’ll look to add it to style pack shortly
In reply to: About replying custom field securityso what is the code doing/not doing that you want it to ?
I presume you have $_POST[‘input_url’] set in either the reply post template or a function ?
In reply to: User’s replies / topics outside the profile pagegreat – glad you are fixed
In reply to: User’s replies / topics outside the profile pageI suspect that it doesn’t know which user you want displayed
untested but try this
<?php $current_user_id = (int) bbp_get_current_user_id(); $topics = bbp_get_user_topic_count_raw($current_user_id); $replies = bbp_get_user_reply_count_raw($current_user_id); $totalTopics = $topics * 5; $totalsReplies = $replies * 2; $points = $totalTopics + $totalsReplies; echo " points = $points."; ?>
In reply to: Bbpress should support schemaare 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