Alright, when I block links with: remove_filter( ‘bbp_get_reply_content’, ‘bbp_make_clickable’, 4 );remove_filter( ‘bbp_get_topic_content’, ‘bbp_make_clickable’, 4 );
it seems to work BUT admins can’t post links either even with the code you have sent me.
Secondly, the links doesn’t work wich is good BUT site that doesn’t provide a “www” can still be clickable so when someone type:” https://bbpress.org ” this link is clickable and both admins and user can do that, and if you type: “www.google.ca” then both admins and user can do that and it WONT be clickable.
I would like the admins to be able to send link, AND be able to block non www links too.
Thanks you.
Hi there,
I am using bbpress and buddypress. I was trying to replace user role with an extended profile info (say “Occupation”) which will be shown below the profile picture of the user. (Open the image link for clarification: https://www.dropbox.com/s/4u18n8ju2pp8rbl/change%20info.png?dl=0)
Does anyone have any idea about this?
Thank you,
Md Sadiqur Rahman
Yes,
If your remember, I have a page dedicated to Members and protected by a password (with or without it doesn’t make any difference either, of course), and the 3 following pages on the which I simply pasted the relevant short codes:
– “Forum” which is the default bbpress root page, I simply added a shortcode for the connection widget thanks to a plugin otherwise I couldn’t have done it on this specific page (but my VM doesn’t have it and again it makes no difference)
– “Registration”
– “Reset password”
Regards,
Philippe
Thanks again Robin, i’ve tryed this but is doesnt work either: $user_id = wp_get_current_user()->ID;
I think the problem is that website that doesn’t use the www. doesnt get blocked and still can be clickable.Exeple: bbpress.org is clickable. but http://www.google.ca isn’t. etc.
oh and by the way, bbpress links still works on my forum wich is normal I suppose?
can you explain what you mean by that ?
no one can post links, wich is good, but the code : !bbp_is_user_keymaster, did not let keymaster be able to do so.
oh and by the way, bbpress links still works on my forum wich is normal I suppose?
Hello Robin,
Yep, always, and this is a copy of the original one where I just changed as advised in one of the forums I mentioned previously, to change the DIV that way :
<div class=”wrap page-full-width“>
<div id=”primary” class=”content-area-wide“>
<main id=”main” class=”site-main” role=”main”>
Actually, both child theme folders (the real site and my VM) contains those files :
– bbpress.php
– functions.php
– page-full-width.php
– screenshot.jpg
– style.css
This latter currently contains only your code as well as the code for background gradient as the page-full-width does the job for the page width, I mean, only for the site pages except forum ones !
The rest is similar.
Regards,
Philippe
ok, so are you still using a bbpress.php file in your child theme?
Hi moderator,
I think I should have searched a bit more narrow down. This topic is much related to this :
how to create dynamic reply-box
So I like to remove this, can you please do ?
Am I missing something or does bbPress not have the capability of moving a reply in a topic to create a new topic elsewhere?
I have some people who post/reply in the wrong topic, so I want to move that reply to a new topic (which I would make from doing that action). In the Kunena forum (for Joomla), this is one of admin moderator options…to move a single reply, or even a topic, to a new location while creating a new topic with that original reply. In doing so, it leaves no trace in the previous topic.
I have a couple of issues with my dashboard widget “Right now on forums”:
1 – It is not displaying the links to topics, replies, or tags. The link is there but it is empty.
2 – The count of forums excludes my single “hidden” (set to private) forum. As “private” means show only to registered users I don’t see why it would be excluded for the dashboard.
Attached image shows what I mean.
I have run the repair tool (all options) but no change.
(WordPress 4.7.2; bbPress 2.5.12-6148)

What I ve done:
1. installed bbpress plugin
2. added a filter bbp_show_lead_topic to do lead topic
3. added a filter bbp_has_replies_query to do DESC order
4. created a forum
5. created a topic under the forum
6. created a reply to the lead topic
7. repeatd 6. a couple of times by clicking Reply of topic-admin-links
8. created a reply to one of the replies created from 7., i.e. threaded reply.
9. got out of the forum, and revisited the forum, and clicked the topic to do a reply
a. clicked a link which is not the one of topic-admin-links, but reply-admin-links
b. but changed mind to click the one of topic-admin-links to the lead topic (remember !! having clicked the reply-admin-links, not clicking send button)
c. put some words into editor and Send
d. the reply is under the reply which was clicked at a., not the lead topic
The Reply topic-admin-links has [reply] => <a href="#new-post" class="bbp-topic-reply-link">Reply</a>
and it is ok before any Reply of reply-admin-links is clicked.
href=”#new-post” is pointing correctly when no bbp_reply_to is, i.e. no reply of reply-admin-links was clicked.
The Reply of reply-admin-links has `[reply] => <a href=”/forums/topic/test-topic1/?bbp_reply_to=18&_wpnonce=1d17517a0b#new-post” class=”bbp-reply-to-link”
onclick=”return addReply.moveForm(‘post-18′,’18’,’new-reply-8′,’8′);”>Reply</a>`
where 8 is the lead topic id, 18 is reply id
As far as reply-admin-links was clicked, href=”#new-post” of the Reply of topic-admin-links is meaning /forums/topic/test-topic1/?bbp_reply_to=18&_wpnonce=1d17517a0b#new-post
I don’t know whether it is the way supposed to be.
Or did I miss anything ?
Hi, I would like to be able to block all users except admin to posts links url in a topic, a posts or even a reply. I’ve tryed this, the only one that I found: https://bbpress.org/forums/topic/how-to-prevent-users-from-posting-url-links/
remove_filter( ‘bbp_get_reply_content’, ‘bbp_make_clickable’, 4 );
remove_filter( ‘bbp_get_topic_content’, ‘bbp_make_clickable’, 4 );
and this doesn’t seem to work when I add thoses lines in my functions php theme.
Anybody have an idea on how to make this works?
Thanks you
Maxime
@padrenola I’ve added a reply on your ticket, but I wanted to post here as well.
The issue you are seeing is related to your theme, so you will want to get in touch with their support to get an official fix. You can send them to the ticket for background. https://bbpress.trac.wordpress.org/ticket/3059
In the meantime, adding the below code to the bottom of your theme’s/child theme’s functions.php file should give you some relief.
remove_filter( 'bbp_get_forum_topic_count_int', 'x_bbpress_filter_forum_topic_count' );
remove_filter( 'bbp_get_forum_reply_count_int', 'x_bbpress_filter_forum_reply_count' );
remove_filter( 'bbp_get_forum_post_count_int', 'x_bbpress_filter_forum_post_count' );
Hy!
I’m use the UltimateMember plugin for login, registration and i use the (bbPress) login widget, in the forum sidebar.
How can i do that:
When user try to login, but it’s not completed, redirect the user costum url?
My problem opinion is the Ultimatemember recaptcha plugin dont add captcha for the (bbPress) login widget.
I am planning to use bbPress plugin for WordPress. My current forums is built using https://invisionpower.com/ IPS. Is there any way to migrate forums data from IPS to bbPress?
Hi Support,
I am not able to view my topics contents on forum section but I can view replies.
Below are my version detail :
WordPress 4.7.2
bbpress Version 2.5.12
Website Link:
http://wavestrategy.azurewebsites.net/forums/topic/kotak-mahindra-bank-is-important-top-in-place/
Please do the needful at the earliest.
Regards,
Manjusha
Hello I use gd-bbpress plugin for the option for members to upload images from their computer, while that works gifs will not. It will only show the first image and will not run the sequence. Is there something I’m missing or a way to address this?
I went the trac ticket route – someone sent me some replies that basically said “that shouldn’t happen.” However, I am still experiencing these warning messages:
Warning: A non-numeric value encountered in /home/sndg2301/public_html/2017/wp-content/plugins/bbpress/includes/forums/functions.php on line 1132
Warning: Cannot modify header information – headers already sent by (output started at /home/sndg2301/public_html/2017/wp-content/plugins/bbpress/includes/forums/functions.php:1132) in /home/sndg2301/public_html/2017/wp-includes/pluggable.php on line 1179
Warning: A non-numeric value encountered in /home/sndg2301/public_html/2017/wp-content/plugins/bbpress/includes/forums/template.php on line 1441
there isnt an option within bbpress to do it but if you install https://buddydev.com/plugins/bp-default-email-notification-settings-control/ this and modify everyone to ahve no notifications it seems to stop it.
The notificatiosn are still a bit of a mystery to me tbh. they seem to be queued somewhere but i have not had time to look into it. installign that plugin and deactivating all notifications worked for me.
Hi,
1.- What you mean with overlap? Do you want to put together both fields? Debates are topics, and Publications are topics and replies.
2.- You can translate bbPress using pod files:
bbPress in Your Language
Also, you can visit this page about bbPress in Spanish
Suerte!
Thanks for the answer @benklocek
I am still looking for the right code, I will post here once I got it 😉
I was thinking what could be the best way…
1.-Create a custom role and then use the name of role to translate it. (I am doing this.)
2.-Give to spectator role the participant´s capabilities and then translate it.
I need two participant roles, with differents name. Just to make more fun the forum style. Just like the ticket about “Add CSS class for user roles in topics and replies”.
Regards,
Hi,
According to codex https://codex.bbpress.org/getting-started/before-installing/bbpress-user-roles-and-capabilities/ Moderators should be able to publish and edit forums.
This seems to be a bug cause they can’t. I’ve been reading a bunch of topics now and it seems like this has been a bug for more than FOUR YEARS. Why hasn’t codex been updated??
I’ve seen hints pointing out that moderators can actualy publish forums on front end with shortcode [bbp-forum-form] – this works but they can still not edit forums.
I’ve tried to edit the keymaster role and disable access to global forum settings but this didn’t work. There are a bunch of capabilities for every single action of bbpress. And then there is on huge capability for a monster amount of actions. This capability is keep_gate. When I disabled that for the keymaster role I managed to disable acces to global forum settings but acces to publish and edit forums was also disabled.
I want to achieve a role that has ALL the keymaster capabilities except from access to admin pages bbpress (global forum settings) and bbp-repair.
Is there anyway to do this?
Thanks!