Forum Replies Created
-
In reply to: Any Updates on the Horizon?
bbpress is compatible with 5.0, unless you know of any issues.
I am just a user of bbpress who helps out here, but version 2.6 has been in development for some time.
The software is very stable, and the product is not fading into oblivion, in fact it has more users now than ever.
In reply to: Topic visible by author and moderators onlydashboard>settings>bbp private groups>group name settings
set up a user group called whatever you like
set up a moderator group called whatever you likedashboard>settings>bbp private groups>assign groups to roles
click add group on first or no group login
assign subscribers to the user groupdashboard>settings>bbp private groups>topic permissions
click to activatedashboard>forums>edit forum
in each forum you want to show this, add the user and moderator groups and then save. You will then see topic permissions and can make users only be able to create/edit/view own topicsThen TEST to ensure it does what you want
In reply to: Problem with TinyMCE in frontend formsI don’t know how bbpress does this – if I get time I’ll take a look
I don’t know how bbpress does this – if I get time I’ll take a look
In reply to: Disable Search Box on Forum Index Page?yes if you know how to code
the nearest action hook is
‘bbp_template_before_forums_index’
In reply to: Forum breadcrumbs not linking to forum index pageis this issue now fixed, as it looks fine to me?
In reply to: Simple URL to jump to a forum topic’s last pagebbpress does not have that, and I’m not sure how to code it, so as a user I can’t help – sorry
In reply to: topic replynothing I know of does this.
Like everything, this can be coded, but beyond free help from me I’m afraid.
But I would like to get transforming http://… into format, which has been used in my previous post. Can that be achieved with this plugin?
can you explain where you are getting this ?
In reply to: Problem with TinyMCE in frontend formssorry, but your question is lost a bit in translation, I do not know what is wrong, so cannot help in fixing it
In reply to: Topic visible by author and moderators onlyIt is not necessary under GDPR to prevent people form publishing their personal data if they wish. For instance if x wants to put their personal phone number on a public forum, that is up to x, and the site is under no obligation to remove it or advise x.
However if you want to create a ticket like system, then I presume you tried my private groups plugin mentioned in the other thread which does just what you want if I understand you correctly.
topic counts are in
In reply to: Forum URLprobably
In reply to: Trackbacksgreat !
In reply to: Visual Editor causes weird bugand I can’t see that wp tweaks has an option for visual editor, can you confirm where you set this ?
In reply to: Visual Editor causes weird buglatest BBPress – do you mean 2.5.14?
In reply to: Trackbacksah – thanks – try this
// Force ping_status on bbPress post types add_filter( ‘pings_open’, ‘rew_force_ping_status’ ); function rew_force_ping_status( $open, $post_id = 0 ) { // Get the post type of the post ID $post_type = get_post_type( $post_id ); // Default return value is what is passed in $open $retval = $open; // Only force for bbPress post types switch ( $post_type ) { case bbp_get_forum_post_type() : case bbp_get_topic_post_type() : case bbp_get_reply_post_type() : $retval = false; break; // Allow override of the override return apply_filters( ‘rew_force_ping_status’, $retval, $open, $post_id, $post_type ); } }
In reply to: multiple forumscreate a page and put this shortcode in for each forum you want to display where xx is the foirum number
[bbp-single-forum id=xx]
eg
[bbp-single-forum id=56] [bbp-single-forum id=68] [bbp-single-forum id=27]
In reply to: Trackbackssorry, should have put ‘code’ round the sentence
so should have read
‘you seem to have
<strong>
and</strong>
in your code, that is not in the version I posted’but if that is not the issue, can you post the exact error you are getting
In reply to: Remove author column from topic displayok, that is quite ambitious, so well done for getting so far.
As I think you are doing, you should only change files in the templates and then only by copying them to a bbpress folder in your child theme. The originals can (and should) stay in the bbpress plugin file. bbpress will see your files in the child theme and use them instead.
to move the topic content – the word ‘test’ in your example
#bbpress-forums div.bbp-forum-content, #bbpress-forums div.bbp-reply-content, #bbpress-forums div.bbp-topic-content { margin-left: 0px !important; }
In reply to: Trackbacksyou seem to have and in your code, that is not in the version I posted
In reply to: List most recent post for each topic?not sure why that would be – bbp_get_forum_title just does a check and then executes get_the_title
the full function is
function bbp_get_forum_title( $forum_id = 0 ) { $forum_id = bbp_get_forum_id( $forum_id ); $title = get_the_title( $forum_id ); return apply_filters( 'bbp_get_forum_title', $title, $forum_id ); }
It seems to work fine on my test site.
Is there a particular circumstance or is it consistently wrong on your site?
probably a buddypress question – suggest you repost this there
In reply to: Forum URLI should say that I am not the plugin author, just an experienced user.
bbpress just uses wordpress custom posts, so in most cases having the forums within the main site would be no problem. Of course I don’t know your site, so cannot recommend, but most sites just have it within. If the main site is down, chances are that most will not access the forums directly, but rather via the main site, so the forums would ‘appear’ to be down as well.
It is an option to uncheck the box, it is not a recommendation (the box I quoted in settings recommends that you do display the prefix, but I think this is just for clarity in the url).
unticking the box would achieve https://forums.X.com/ and putting the forums in your main site would achieve https://X.com/forums/
In reply to: Empty DIV on profile pageI cannot replicate that on my test site, and from its positioning I suspect it is theme related rather than bbpress as it seems to be within after an <article> div that bbpress doesn’t use, and I cannot find ‘comments-area’ anywhere in the bbpress plugin.
If you want to prove that, switch to a default theme and check that it disappears.