Forum Replies Created
-
In reply to: Forum first page Columns
Alternate Forum template 1
In reply to: Forum first page Columnsonce activated go to
dashboard>settings>bbp style pack>forum templates
and select the alternate template
In reply to: topic info widgetI’ll take a look shortly
In reply to: bbpress language resetsSorry, beyond my knowledge – Milan does paid support still I think
In reply to: Removing Forums From Admin BarI suspect these are theme or another plugin related
In reply to: How to make a forum Sticky in the main Forum Pagenot totally sure what you are trying to do, but you could create a page and out the following shortcodes in it
[bbp-single-topic id=$topic_id] [bbp-forum-index]
where $topic_id is the topic you want at the top.
If you just want some basic rules, then you can create this as text and put it on a page above the
[bbp-forum-index]
In reply to: Removing Forums From Admin BarI’m not sure what you mean by ‘remove the bbPress menu from the toolbar’ – whereabouts are you seeing this and what ‘menu’ are you seeing ?
In reply to: forum moderator roledo you mean that you would like admins to see forums in the dashboard ?
In reply to: Can’t remove comments from top level forumby ‘comment’ – do you mean create topics?
In reply to: No back button to parent forumthanks, 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; }