This might be custom development since it is the reply/topic forms. You may need to hire a developer to create this kind of functionality for you.
If you basically using this as spam protection you can use this.
https://wordpress.org/plugins/bbpress-no-captcha-recaptcha/
You can also just link to your terms and condtions in the reply form too.
For registration/login forms you can use this plugin.
https://wordpress.org/plugins/agreeable/
You could possible hook the above plugin to work for reply/topic forms somehow though.
@rommelxcastro
This kind of looks normal since when you edit the topic all you see is the Text editor which will show the html tags.
Visual vs Text Editor
Also did you copy and paste the content of the whole topic page as an test, or was it just like that??
Are you using this plugin??
https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/
As I expected, was something to do with the rewrite rules. Was a very simple fix, I simply started messing with the rewrite until it worked. This is how mine works flawlessly should anyone have the same issur and somehow stumble across this thread.
Note: This is for lighttpd. This is not an Apache or Nginx solution.
# This is mainly a fix for bbPress and its functions
url.rewrite = (
"^/(wp-admin|wp-includes|wp-content|gallery2)/(.*)" => "$0",
"^/(.*)\.(.+)$" => "$0",
"^/(.+)/?$" => "/index.php/$1"
)
}
All I did here was remove the additional forward slash within each rule.
Now my links work perfectly!
I’d like to add <link rel="prev" href=".." /> and <link rel="next" href=".." /> tags into <head> of bbpress forum page. So I need to get links for the next and previous pages of my forum. It has to be outputed in wp_head action but in that time the bbPress class is not initialized yet, so I cannot get any information from that. Can you help me?
I’m trying to add an additional checkbox under the “notify of follow-up emails” that will simply say “I agree to the terms and conditions” and needs to be required. I already have bbpress templates folder copied into my child theme.
The document I think I should be adding this to is: bbp-reply-form.php
I guess I just can’t figure out if I should create a new function within bbpress or my theme and how exactly I would go about this for this type of request.
Any help is appreciated.
Thank you.
Hi guys,
I have spent some evenings using for the first time WP_list_table and understanding the bbpress functions, but this is the plugin I have for the moment : http://casier.eu/dev/bbp-manage-subscriptions/
It will list your users and the forums they are subscribed to. You should be able to (un)subscribe users more easily (well, at least it works for me).
ALL REMARKS WELCOME!
Pascal.
Hi Robkk,
I have spent some evenings using for the first time WP_list_table and understanding the bbpress functions, but this is the plugin I have for the moment : http://casier.eu/dev/bbp-manage-subscriptions/
I will also post it in the other thread.
ALL REMARKS WELCOME!
Pascal.
Hi guys,
I am currently working on a projekt where my client needs his old typo3-mm_forum imported into a bbpress forum.
I am now looking for someone who has already done this and who would sell me his importer!
pls send me PM or answer directly under this post
thanks a lot
I tried the theme and plugins with bbPress and I didn’t come across any issues.
I am kind of thinking it could be the index.php in your url causing the issue, but I am not really sure.
https://codex.wordpress.org/Using_Permalinks#PATHINFO:_.22Almost_Pretty.22
Since I am not 100% sure, you can try some troubleshooting to see if you can find the solution to your problem.
Troubleshooting
yeah I can’t get it to work either.
I think you could also just use the plugin bbPress Topics for posts for this kind of functionality though.
Are you using the Divi theme too?? Divi has quite a few issues running with bbPress installed.
This is the default font-size in the bbPress stylesheet. You can overwrite the statment or install a plugin like bbp style pack which I think would take care of this for you.
#bbpress-forums {
background: 0 0;
clear: both;
margin-bottom: 20px;
overflow: hidden;
font-size: 12px;
}
You can show the topic index on your home page using this shortcode.
[bbp-topic-index]
Shortcodes
You can copy the form-topic.php into your theme/child theme into a folder called bbpress to customize the file used on your site.
Theme Compatibility
You can scroll all the way to the bottom of the file, and replace the current message
<div id="no-topic-<?php bbp_topic_id(); ?>" class="bbp-no-topic">
<div class="bbp-template-notice">
<p>You must be <a href="<?php echo site_url('/wp-login.php') ?>">logged in</a> or <a href="<?php echo site_url('/wp-login.php?action=register') ?>">registered</a> to create new topics.</p>
</div>
</div>
In BBpress each user has the ability to edit their profile users/USER/edit/
Here they can add their name, their website link and their bio by default. However, this information is never actually displayed on their profile. Why is this?
The bio should show.
https://bbpress.org/forums/profile/robkk/
As for most of the other fields, not sure really. I know though they are just going off of WordPress’s profile fields, and whatever is added to that though. I don’t know why the devs haven’t put at least website there. Maybe it is easy for spammers to take advantage of that?? First Name and Last Name could make good choices to display on the users profile too.
I will probably make a suggestion to the devs later to add more profile data to the user’s profile.
You can of course display the data in the profile by editing a template or installing a plugin.
Copy user-profile.php from the bbPress templates in the plugin to your child theme in a folder called bbpress.
Just surround the code with conditionals to only display the information when the user has inputted any information.
You have something like this for first name.
<?php if ( bbp_get_displayed_user_field( 'first_name' ) ) : ?>
<p class="bbp-user-fname"><?php bbp_displayed_user_field( 'first_name' ); ?></p>
<?php endif; ?>
YOu can also use the plugin, to display the current fields and also custom fields.
https://wordpress.org/plugins/bbp-profile-information/
Hello,
Not much of a programmer but I want to change the size of the text on the bbPress page. My discussion forums have such small text compared to the rest of my site. Any suggestions?
Thanks.
Todd
Try some troubleshooting especially what is listed for plugins. Deactivate every plugin except bbPress to see if the topics can merge correctly. Activate BuddyPress right after to see if topics merge correctly in groups and normal forums. Next, activate every other plugin one at a time to see what could be causing an issue.
If you still cannot merge topics with only bbPress activated, try the other possible solutions listed like trying a default theme to see if that fixes your issue.
Troubleshooting
Hey guys,
In BBpress each user has the ability to edit their profile users/USER/edit/
Here they can add their name, their website link and their bio by default. However, this information is never actually displayed on their profile. Why is this?
On users profiles it says:
Forum Role: Keymaster
Topics Started: 0
Replies Created: 0
But the information such as their name, bio and website link are not displayed. Why are there options to add this information to the profile if it remains private?
How can I allow it to be displayed publically?
Thanks,
Chris
Is there any updated info on how to convert WP Symposium converter to bPress?
The gethub project in this thread https://bbpress.org/forums/topic/wp-symposium-converter-for-bbpress/ does not work.
I added it to the converters directory and ran fine but it said it could not find any forums to covert.
Hello,
I’ve searched, really, and I didn’t find any solution before asking here.
So, first, here’s all versions used :
Wordpress : 4.2.4
BBPress : 2.5.8
Theme used : Cry Out Nirvana 1.0.6
A few other extensions are installed :
Active Directory Integration
Advanced Custom Fields
Advanced Custom Fields: Nav Menu Field
CKEditor for WordPress
Collapse-O-Matic
GD bbPress Attachments
List category posts
Members
Our Team
Post Types Order
TablePress
TablePress Extension: Row Details
Uber Login Logo
WP-Utilisateur-Avatar
I think there’s everything.
I can’t give a link to the website, at the moment it’s internal, in progress and next, it will be our new Intranet
So, here’s the issue I have.
My users make forum posts, seems to be OK.
When they try to modify a post, or if I try to modify it myself as admin, I don’t get the window to change the text but an article I made “sticky”, the article is not opened to be modified.
As an example
Link to the post : mysite.fr/index.php/foruminterneimestia/suject/test/
Button Modify : mysite.fr/index.php/foruminterneimestia/suject/test/edit/
Page I receive : mysite.fr/index.php/2015/08/10/edito/
Do you have any idea ?
Ask me any question (but the password)
Hi, to which address are you receiving notification? bbpress uses “bcc” to send notifications but add a “to” address to each outgoing email (probably because not all mail servers accept only the “bcc” address).
The “to” address is noreply@yoursite.tld (if not change by other plugins), it could be this address ends in your mailbox?
They change the noreply address since few versions, before the noreply address was built in a wrong way creating a log of bounced messages.
Stefano.
For others bumping into this topic, the codex article is here:
bbp_setup_current_user was called incorrectly
You need a plugin to use quotes with bbPress. The best plugin with quotes is GD bbPress tools.
https://wordpress.org/plugins/gd-bbpress-tools/
I am trying to remedy an issue that occurred suddenly today and after no major changes on the site. Quotes are completely broken. They are exposed example..
[quote=753]content here
content
[/quote]
To troubleshoot earlier I disabled all plugins aside from bbpress and the problem persisted. Has anyone else encountered this issue before?
Greetings!
I am really enjoying bbpress but have a major glitch on my install. I am receiving notifications via email, but I am not subscribed to any topics. Zero. I even installed the plugin for unsubscribing from all topics just to verify and it states ‘no topics subscribed’ so there is no option.
Any thoughts would be greatly appreciated!