Before Posting
in particular
]https://codex.bbpress.org/getting-started/troubleshooting/
Hi there, I am having a slightly strange issue in that I have just installed:
Wordpress 4.2.4
BuddyPress 2.3.2.1
bbPress 2.5.8
Everything appears to be fine except for the little fact that I have no bbPress admin sections in the dashboard.
Any help would be most appreciated.
Hi,
I was not able to find a shortcode like [bbPress_forum] to add a forum on a page. Is there a code available?
the bbpress.php template looks fine to me.
There might be other custom functions for bbPress somewhere though? or cache?
Try some troubleshooting. See if it is a plugin issue, issue is only present in your custom theme, and maybe run the repair tools to recalculate.
Troubleshooting
Thanks for the advice
I have tried following the above troubleshooting steps but it seems to be running into an issue right at the very start, it seems to not even start importing at all. So if I click stop it just stops and doesn’t show me any info on what it had imported, where it got up to. Should it display the detail in the import status window on the page? I also can’t see any topics, posts in the database or in the bbpress forum. Makes me think that it doesn’t even start the import process. Maybe it is getting stuck at the connecting to the database part of the process?
I can’t seem to see any other details or messages other than ‘starting conversion’ and the little circle status symbol spinning.
Where should I be looking to see more detail on what rows it is working on etc?
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)