Search Results for 'bbpress'
-
Search Results
-
WordPress 4.1.1 running Divi Child Theme theme.
BBPress Version 2.5.4
http://oxfordukchapter.co.uk
We have the above version of BBpress and when the members use the forum they leave lines between their postsas so
and then the post will not show when you close the lines up everything is visible.
ThanksPretty strange one imho. I’ve been working on porting an existing site from phpbb
over to wordpress/bbpress. While going through a final test of the port I’ve come across the following problem. Namely when in forums where you can see the latest post (along side the forum name), the name of the latest post plus its time/date are totally incorrect, however the url actually links to the correct latest post.See: wp.photographyireland.net/forums to see.
I’ve retried all the usual recalculates etc… I have tested the port in the past and didn’t have this issue. Can anyone advise or at worst provide me with a sql updates statement to correct?
I don’t want to do the port for real if I’m going to run into this again. Tbh I do find that the import from phpbb can be a tad bit flaky at time…
Cheers
Topic: Add Custom User Roles
Hi everyone,
I’m working on creating some custom user roles and I was wondering if I could get assistance with it, because the code I modified kind of killed my site (so I took it out and it’s working fine again).
I’m running a guild website, so we have specific titles (in order from left to right for hierarchy):
Advisor (Keymaster) > Councilman (Moderator) > Artisan (Moderator) > Adept (Participant) > Journeyman (Participant) > Craftsman (Participant) > Apprentice (Participant)I was trying to follow this guide: http://codex.bbpress.org/custom-capabilities/
/* bbPress Custom Roles */ function add_custom_role( $bbp_roles ) { $bbp_roles['my_custom_role1'] = array( 'name' => 'Apprentice', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants ); $bbp_roles['my_custom_role2'] = array( 'name' => 'Craftsman', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants ); $bbp_roles['my_custom_role3'] = array( 'name' => 'Journeyman', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants ); $bbp_roles['my_custom_role4'] = array( 'name' => 'Adept', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants ); $bbp_roles['my_custom_role5'] = array( 'name' => 'Artisan', 'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() ) // the same capabilities as keymaster ); $bbp_roles['my_custom_role6'] = array( 'name' => 'Councilman', 'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() ) // the same capabilities as keymaster ); $bbp_roles['my_custom_role7'] = array( 'name' => 'Advisor', 'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() ) // the same capabilities as keymaster ); return $bbp_roles; } add_filter( 'bbp_get_dynamic_roles', 'add_custom_role', 1 ); /* bbPress Custom Roles */Can someone tell me where I might have gone wrong?
Thanks in advance! π
Hi there,
I am wondering if it’s possible for me to have a separate page in my website for a forum using bbPress? If so, how can I install it? Here’s my website for better understanding.
Thanks
Topic: Log In
I want to use Bbpress for a forum on a new classifieds site, when entering site to advertise, the user must register, if they then decide to use the forum it appears that they must register again.
Is there any way that I can make it so that when they register to use the site, that registration will also allow them instant access to the forum, to register twice may be complicated, and will be confusing for some people
David
Topic: Change author link
Hi,
I’d like to change the author link of every reply (actually it goes to user profile) :
– if the author is not anonymous, use the user_url
– else use the comment website urlSo i have 2 questions :
– what’s the best way to change the author link ? editing users/template.php, using add_filter(‘bbp_get_author_link’) or something else ?
– how can i retrieve the comment url from anonymous poster ?Thank you for your help
Keep up the good work, i like bbpress !
Greetings,
WhimsicalityGood afternoon,
I’m superadmin in a bbpress forum and I wonder where could I see the list of all forum users. In the rest of WP I’m just a subscriber.
Thanks a lot,
Mireia1. I am looking to create a forum and put it on a couple websites. Each website also needs a specific section/separate forum for that site as well as the one that is across a couple of websites. Is this possible with bbpress?
2. I have this message at the bottom of my site “Your account has the ability to post unrestricted HTML content.” From what I understand this is bad how do I change it?
3. How exactly does bbpress and buddypress work together and how do I integrate them?
4. Is there a way to only let people create topics in category’s?
Many thanks for you help.
Hi there,
I have a large vBulletin forum (15,000 members / 20,000 topics / 3.5m posts) and I’m hoping to move it to bbPress.
As you might expect, the conversion is proving to be a lengthy process, and I’m hoping to keep disruption and downtime for users to a minimum.
Would the following work?
-
Close vBulletin forum
Export database
Re-open vBulletin but close registration
Convert to bbPress local installation (which’ll take a few days)
Once conversion’s taken place, quickly export only the new vBulletin topics and posts from the last few days, then import them to bbPressI suppose my question is whether this is something the bbPress importer will be able to make sense of: if I try to import a database that only consists of new topics and replies, plus replies to topics it’s already imported, will everything work as hoped, and will those posts be mapped to the correct users?
Thanks in advance!
Topic: 404 Page Not Found
So I just installed bbPress (2.5.4) successfully after having buggy versions last week. Though I’m having a lot of issues this time. I’m using WordPress 4.1.1 and Twenty Fifteen as my theme.
I created a new forum which I called, “forum” and a topic called, “general”. When I go to view the forum, it takes me to
/forums/forum/forumwhich I believe should be/forums/forumbut I can’t go there without it redirecting me./forumsjust redirects me as well.Following the codex, I tried method two which involved using the shortcode. This works all fine until I clicked on the forum, which took me to
/forums/forum/forumMy site is:
How can I fix this issue? Please don’t say disable plugins because I know for a fact, that isn’t the reason.