Hi.
I am building my new site and integrating bbpress. I am a novice at coding but my issue is that BBpress won’t work with the theme.
I have got it styled in by creating bbpress.php file in my themes folder and copying single.php over. The issue I have is that the posts will not show. I have threads which appear but any posts created do not show.
Here are some links:
Forum Home: http://sugarnono.co.uk/newdev/sugar-free-forum/
General thread: http://sugarnono.co.uk/newdev/forums/forum/general-talk/ You will see that there are 9 topics and 14 posts yet they do not show.
Any ideas where I have gone wrong?
Thanks
Stephen
Ok, on the above theory, I got it to work. Well the functionality anyway. I still can’t seem to mod the caps of Participant role.
But, what I did was use the plugin: “bbp private groups”
https://wordpress.org/plugins/bbp-private-groups/
and set the forums I wish to be private, to PUBLIC (ironic and backwards that is) in the bbPress Forum Attributes for a Forum, and in “bbp private groups” assigning the Subscriber role to the bbp Private Group “role” of GROUP1 (which I aptly named Subscribers). Additionally you need to set a user to that GROUP1 and select the option in “bbp private groups” to add users to that GROUP1 anytime they login (or you can manually in bulk update everyone (or just those matching a particular role) to have that permission).
still some work to do….
but, it’s up & running now, and starting to get used 😉
used a couple of widgets here & there (homepage for recent topics, sidebars for /forums/ page)
and a little bit of css tweaking.
starting to get there.
zetaunit.com/forums/
I’m pretty sure you’d be able to get what you’re after 🙂
Once bbPress is activated, enable “threaded replies” in the settings.
Use bbp_show_lead_topic(), grab the snippet from https://codex.bbpress.org/bbp_show_lead_topic/ and create a custom plugin using that code snippet.
Then I’d suggest hoping over to the docs and do some reading:
Theme Compatibility
I’m starting to get the feeling, that because Forum Roles are not meant to handle Forum privacy (as per the bbPress spec), that I am supposed to set their privacy to Public and use some kind of FORUM PRIVACY plugin to make sure the content doesn’t get leaked out to Google and anonymous web surfers. Is that the intention of bbPress? It seems that’s all we got to work with. Participant role is not supposed to be for wordpress Subscribers apparently. You need to become something else, to read topics and replies inside forums marked private, and I guess shouldn’t mark a forum private with bbPress unless it’s supposed to be private for Moderators and Administrators.
That seems so … ridiculous if you pardon my French. That Forum Roles are not for forum privacy, but more for Forum administrative privacy.
If I might back up for a moment, what I’m trying to achieve, is that Forums that I set to Private, contents are not visible by anonymous/bots/spiders, but are visible to registered users of the website (Subscribers, which I can set to automatically default to the Participant Forum role inside bbPress settings). It seems a sane, rational, logical concept. But I do see that this issue has been going on for YEARS.
I can confirm though, your fix did not resolve the issue, using the minimal Theme “Twenty Fourteen” with all plugins except “bbPress” disabled. So, I’m not sure how it is fixed for you on your end. Are you running the latest bbPress? Do you have a minimal test configuration?
Thank you anyway though Robin, for your help.
If anyone else can help, I appreciate it. Thanks in advance! I will be monitoring this thread. I need a solution to this ASAP. It’s been almost 3 weeks and it’s holding up our website launch.
As always apologize for my English, it is a translation from google translator. Searching google I got an answer of course to bbpress forums.
The patch works, provided that the issue of the response is made by the author. If it is effected by a moderator or administrator keeps repeating in the line of activity
I looked directly into buddypress forums, but as is almost always the subject had no answer, linking to the core or incompressible explanations and as always in this forum recommend hiring a developer and close the issue. It seems that they forgot the essence of wordpress: Community.
In fact it seems that in the future buddypress will be absorbed by bbpress. It’s just my appreciation and sorry to say nonsense.
WP 4.6
bbPress 2.5.10
Buddypress 2.6.2
The patch works, as long as the issue is made by the author.
Regards
That’s IE for you !
For some reason that I can’t immediately see, IE is ignoring the background setting, so is just saying it has no background so showing white
I’d suggest you try changing line 999 on dark.css from
/*media all*/
media screen #bbpress-forums fieldset.bbp-form p, #bbpress-forums fieldset.bbp-form textarea, #bbpress-forums fieldset.bbp-form select, #bbpress-forums fieldset.bbp-form input {
background: rgba(18, 21, 24, 1);
color: #fff !important;
border: 0px !important;
}
to
/*media all*/
media screen #bbpress-forums fieldset.bbp-form p, #bbpress-forums fieldset.bbp-form textarea, #bbpress-forums fieldset.bbp-form select, #bbpress-forums fieldset.bbp-form input {
background: rgba(18, 21, 24, 1) !important;
color: #fff !important;
border: 0px !important;
}
It may or may not work !
I don’t think currently there is an importer for ProBoards for bbPress.
Does ProBoards even allow you to export the database from their forum?? If they can that will be a whole lot easier to create an importer.
Is it possible to transfer a freeforums.net forum to bbPress?
I am working with an organisation who created a freeforums.net account a short time ago and have convinced them to use WordPress, but we need to get it transferred over.
Thanks.
There seem to be some errors in this file:
/wp-content/plugins/bbpress/templates/default/css/bbpress.css
Specifically, lines 1137-1139 get highlighted by CSS debuggers.
I was using a third party tool to generate Critical CSS for mobile optimization. These lines prevented the CSS from being parsed properly. I had to remove them temporarily, run the tool, then add them back afterwards. Perhaps these lines can be fixed/changed in the next version?
I came across this in a thread.
https://wordpress.org/support/topic/not-working-for-bbpress-rolesWould that be somehow useful? Probably not.
/**
* FORUM - Role map
* bbPress has its own internal ("dynamic") Roles, so we map our real wp roles to bbPress.
*/
add_filter('bbp_get_user_role_map','my_bbPress_role_map');
function my_bbPress_role_map($role_map){
$role_map['student'] = bbp_get_participant_role();
return $role_map;
}
I don’t know if I gave you this link before, but it does shed some light on to the reasoning of this “issue” and maybe that will help you know better how to circumvent/modify it to the way we’re looking for:
Roles and Capabilities in bbPress 2.2
I’m returning to WordPress after years and found bbPress as a potentially good option to convert an old forum while converting the site to use WP. What I specifically need because of user mandate is threaded topics but they need to be in a specific layout. The default for bbpress when I enable threading, is kind of a hybrid flat/threaded. What I’d like to achieve is to have the individual posts display on a page with the thread below in the form of a thread of links to those posts/replies within the thread. This is specifically what my established users are accustomed to and what they demand. The forum goes back almost two decades (original threaded forum styling) and many of the users are original members so they don’t want any fancy, newfangled flat forums…
I’m confident that I can create the database script to do the forum migration of posts/thread/users into WP/bbPress but need some insights for achieving layout issues. Can I get some help / insights for achieving this layout? Thank you in advance.
Paul
Hi,
I’m trying to import my phpbb 3.1.6 forum to bbpress wp 4.6. Nothing is happening on my import. Please find below my setting and the message I got from Import option.
Database Server – localhost
Database Port- 3306
Database Name – tamilpot_DB (My phpbb DB name)
Database User – tamilpot_DB (My phpbb DB Username)
Database Password – xxxxx (My phpbb DB User Password)
Table Prefix – phpbb_ (This how my prefix in phpbb database).
Rows Limit – 100
Delay Time – 1
Convert Users – Checked
Start Over – Checked
Purge Previous Import – Checked
In response, I got as,
Repair any missing information: Continue
Conversion Complete
No reply_to parents to convert
No replies to convert
No tags to convert
No super stickies to stick
No stickies to stick
No topics to convert
No forum parents to convert
No forums to convert
No passwords to clear
No users to convert
No data to cleanStarting Conversion
Can you please help me to import my forum to bbpress?
bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
i tried activating bbpress on may website but every time i activate it all the pages on my website go missing (except for home page!) i have buddypress activated without a problem and i couldn’t find a solution for this problem.
i also tried changing the address of all bbpress pages in setting but couldn’t help.
here is the website if it help:
بیاموز
Hi, can anyone help?
I cannot find the answer to my query from searching this forum and google.
At the moment, people need to enter a name and email to post a topic, or reply to a topic, on my forum (http://psychiatryadvice.com/).
I would like to replace that with what they have at this forum: http://www.econjobrumors.com/
They seem to generate a random 4-digit code for each person posting. I am aiming for anonymity in my forum too.
Does anyone know how I can do this please?
Thanks very much!
I’m using:
Wordpress v 4.5.3
bbpress v 2.5.9-6017
Hi
I created a forum here http://radiotounsi.com/?page_id=4862 at the bottom of the page.
When I resize the browser window, there is a responsiveness problem, I have seen that bbpress forums in other websites are responsive, can you please help me to fix this ?
Thanks in advance.
Okay your topic is closed and stickied, so adjust this css. Use a custom css plugin, or modify and place this css into a style.css file in a child theme.
#bbpress-forums .status-closed,
#bbpress-forums .status-closed a {
color: #ccc;
}
.bbp-topics-front ul.super-sticky,
.bbp-topics ul.super-sticky,
.bbp-topics ul.sticky,
.bbp-forum-content ul.sticky {
background-color: #ffffe0 !important;
font-size: 1.1em;
}
What theme are you using?
EDIT: Forgot that I did make this guide for a user experiencing a similar issue.
https://codex.bbpress.org/getting-started/troubleshooting/search-redirects-to-front-page/
Although this might help, I would like to know your theme just in case it doesn’t so I could do some troubleshooting.
If its not the theme, we have to do some plugin troubleshooting.
Is there somebody with the same versions (phpbb to 3.1.9 and use BBpress 2.6 alpha) with a working import from a pbpbb database?
If yes, can you send me your the phpbb.php file please
It says here you can add custom post type support. bbPress uses three custom post types, reply, topic, forum.
https://jetpack.com/support/publicize/#custom-post-types
Here is a setup that might work. Although not really for a ticket system in my opinion and just a support forum.
A free theme to use.
WP Knowledge Base
Plugins that could help.
bbPress Resolutions or Buddy/bbPress Support Topic
bbPress Notify (no spam)
bbPress Auto Close Topics
I am trying to remove that from showing on the forums page and instead show a a login for bbpress.
This forum page you say, is it just the original forum index page at /forums, or is this a page that you inserted the forum index shortcode to create “forum page”??
The is_bbpress() conditional may not work if you went the shortcode in a page route.
Well unless you made sure the pages slug was the same slug as the forum root, but even with that I feel like that odd procedure could cause issues.