Search Results for 'bbpress'
-
Search Results
-
Probably best directed at @johnjamesjacoby, any suggestions welcome!
Already read your post here (love the concept, makes sense) and have a question : http://bbpress.org/forums/topic/roles-and-capabilities-in-bbpress-2-2/
I’m the developer of Events Manager and in this plugin you can assign custom capabilities to existing roles. Unfortunately your recent update regarding caps is preventing our plugin from adding custom caps to your roles.
I’ve figured out a way around this, but this requires at least 1 extra database query each instance since I can’t load wp_user_roles via get_option due to your hooks.
function em_bbp_get_caps_for_role( $caps, $role ){
global $em_capabilities_array, $wpdb;
//get the non-dynamic role from the wp_options table
$roles = maybe_unserialize($wpdb->get_var("SELECT option_value FROM {$wpdb->options} WHERE option_name='wp_user_roles'"));
//loop through the original role if it exists and add our em caps to the bp role
if( !empty($roles[$role]) ){
foreach($roles[$role]['capabilities'] as $cap_name => $has_cap ){
if( array_key_exists($cap_name, $em_capabilities_array) ){
$caps[$cap_name] = $has_cap;
}
}
}
return $caps;
}
add_filter('bbp_get_caps_for_role', 'em_bbp_get_caps_for_role', 10, 2);
What it does is load our caps into your caps by referencing the original wp_user_roles array
So, my questions are:
- Is there a better way to do this, preferably avoiding extra DB queries?
- Since you seem to be assigning a second role to the user, would an alternative solution be to prevent EM from assigning caps to bbpress user roles and let the primary/secondary role inherit the relevant caps?
thanks for reading!
Topic: Private Messaging
I’ve read all the support threads. I know the current advice is to activate BuddyPress.
That’s not a very clean solution. BuddyPress, with all due respect, is kind of a mess. I’ve worked and worked with it and I cannot get it to integrate with my theme (Pinboard–which incidentally wasn’t easy to integrate with BBPress either).
I now have a fully capable copy of BBPress. I’ve got a very long set of CSS amendments in my theme page, but it works.
If I activate BuddyPress I get major issues; initially it was breaking the whole site, then I built it a separate copy of the CSS file in a /css/ subdirectory and it at least ran. Theme integration was a disaster but I spent the time and got the profile pages looking ok. Then I tried to send a PM: fail. Fail on multiple levels, mostly in the PHP files — this is beyond theme integration. This is broken functionality.
What we sorely need is a simple set of plug ins that do two things:
(1) Allow private messaging. This really does not have to be complicated.
(2) Allow moderators to customize profile fields.
That’s it. No need to lay a very heavy second plugin over everything. (And BuddyPress takes up as much load time as BBPress itself per the Performance Profiler plug in).
Are there any plug in developers out there with the knowledge to pull this off? Maybe we could pool some money and get someone started?
Thanks,
ZachHi,
I’m currently trying to adjust the styles of my bbpress install and am running into a bit of difficulty. I’m running bbPress 2.3.2 and WP 3.6, using my own theme which is based on “Twenty Twelve.”
I noticed some big spaces in the header on each page and went to reduce the space. It turns out there are a bunch of different paragraph tags in the header for each “topic” on my site, but these tags do not appear on example sites listed on bbpress.org.
This first snippet is the code I’d like to have so I can style it (taken from http://www.dalluva.com/member-area/forums/topics/resources-where-to-get-your-sommelier-certification/):
<li class=”bbp-header”>
<div class=”bbp-reply-author”>Author</div><!– .bbp-reply-author –>
<div class=”bbp-reply-content”>Posts</div><!– .bbp-reply-content –>
<!– .bbp-header –>This is what my site is generating:
<li class=”bbp-header”>
<div class=”bbp-reply-author”>Author</div><p><!– .bbp-reply-author –></p>
<div class=”bbp-reply-content”><p>Posts</p></div><p><!– .bbp-reply-content –></p>Why is my site putting paragraph tags around the comments, as well as the word “Posts”? Any help is greatly appreciated.
Benjamin
I installed BBpress, the newest version to the newest version of WordPress. So I used this plugin version of BBpress. The forum installs, I can load the XML export file that is an export of a recent forum that I have to manage elsewhere, it is accepted by the new installation. From the dashboard, if I click view the Forum in tha forum management section, it takes me to the forum, everything is visible, cathegories, posts, member. But, the only problem is that the forum is not accessible on any link from my WordPress frontpage. Why is it so? How can I make it visible on the front page? I just want to make this new site to be a forum, so the forum frontpage should be ont he WordPress core site frontpage, but it is not there. Also if I type /forum after my domain name, the browser reports error, as if the forum doesn’t exsist. But from the dashboard, I can open the forum. What can be the problenm?
Topic: Struggling to set up forum
Hello all, I am currently setting up a website for my classroom (school starts in a month). I would LOVE to set up a class forum for each class. If you look at my site (http://www.blackboarddreams.com) you will see that I have forum links under my sophomore and human condition classes. I can post with no problems! But a couple of issues beyond that:
1. I see in “menus” there is a bbpress sidebar. I have no idea how to actually make that show up on my webpage (ideally homepage).
2. Giving up on the above, I can post the bbpress login widget (currently have it in a footer). Yet, when I logout and simply visit my page, upon clicking the register link I am taken to the wordpress login page with the following in red: “User registration is currently not allowed.” How can I allow registration? Further, this registration is simply to allow my students to access the forum, correct?
Thank you so much!Topic: AEF Import to bbPress
Introduce Forum Importer template for use with importing from AEF (Advanced Electron Forum) v1.0.x (Tested on v1.0.9)
http://codex.bbpress.org/import-forums/ & http://codex.bbpress.org/import-forums/aef
Working: Forums, Topics, Replies & Users
Not Working Yet: User Passwords & Custom BBCode for Topic & Reply ContentAttached to bbPress Trac Ticket #2384 is the 1st pass patch for AEF importing into bbPress.
To test the importer download the latest patch from the link above and copy/ftp the file into the /includes/admin/converters/ folder of your bbPress plugin.
I hope to get the remaining outstanding items done ASAP.
(User passwords will be a little trickier and will take a bit more time)Any feedback and/or testing that you can provide will help me out tremendously.
Cheers,
Stephen 🙂
Topic: FluxBB Import to bbPress
Introduce Forum Importer template for use with importing from Phorum v5.2.x (Tested on v5.2.19)
http://codex.bbpress.org/import-forums/ & http://codex.bbpress.org/import-forums/fluxbb
Working: Forums, Topics, Replies & Users
Not Working Yet: User Passwords & Custom BBCode for Topic & Reply ContentAttached to bbPress Trac Ticket #2383 is the 1st pass patch for FluxBB importing into bbPress.
To test the importer download the latest patch from the link above and copy/ftp the file into the /includes/admin/converters/ folder of your bbPress plugin.
I hope to get the remaining outstanding items done ASAP.
(User passwords will be a little trickier and will take a bit more time)Any feedback and/or testing that you can provide will help me out tremendously.
Cheers,
Stephen 🙂
Hello everyone I’m new in the forum and I do not speak English well, I hope you understand what it means, I speak Italian. I wanted to ask if it was possible to hide the plugin bbPress forum categories to unregistered users. I also needed to know if it was possible to make sure that if a user opens a discussion in the category (example doctor) the email notification arrives only to the doctor. Another example if a user opens a discussion administrator can ‘to get the notification only to administrators (example admin@namesite.it)
Topic: Phorum Import to bbPress
Introduce Forum Importer template for use with importing from Phorum v5.2.x (Tested on v5.2.19)
http://codex.bbpress.org/import-forums/ & http://codex.bbpress.org/import-forums/phorum
Working: Categories, Forums, Topics, Replies & Users
Not Working Yet: User Passwords & Custom BBCode for Topic & Reply ContentAttached to bbPress Trac Ticket #2382 is the 1st pass patch for Phorum importing into bbPress.
To test the importer download the latest patch from the link above and copy/ftp the file into the /includes/admin/converters/ folder of your bbPress plugin.
I hope to get the remaining outstanding items done ASAP.
(User passwords will be a little trickier and will take a bit more time)Any feedback and/or testing that you can provide will help me out tremendously.
Cheers,
Stephen 🙂
Hi,
I was hoping that someone could tell me if there is there a way to display a list of child forums for specific parent using a shortcode?
For example, I have a number of private member forums that visitors need to login to view. I want to have a page that they visit to logon with the list of private forums below.
http://www.blueclouditsolutions.com/asap/
Wordpress version: 3.6
bbpress version: 2.3.2Thanks for your help.
Steve.
I would like some help on how to improve the pagination for my bbPress forum. At the moment, on the latest posts on my forum, it goes:
1 2 …. 1963 ->
Which is not entirely useful if you want to skip to page 3 straight away. Really, the numbers are not very useful since you can only skip one ahead.
Hi sorry for my bad english
I have a problem, i have reset my bbpress settings in –>tool –> Forum
Now i can’t access my setting in plugin –>bbpress it say haven’t permissions to access.How can i got my permission? My forum is ok but can’t configure.
–>tool –> Forum doesn’t appears!
Thanks for helpBonjour
J’ai un problème, j’ai remis a zéro mes réglages de bbpress dans outils –> Forum
Maintenant je ne peux plus accéder a mes réglages dans extensions il me dis: Vous n’avez pas les droits suffisants pour accéder à cette page.Comment puis-je récupérer mes permissions? Je n’ai plus acces aux outils –> forum. Ils n’existent plus.
Hi there
I am building a gaming community page and would like to setup an application form for people to apply to join.
However, to make things easier, it would be better if it was usable as a guest and, when submitted, generated a post in a private forum so that members could comment on it.
I have seen something like this being used with Xenforo, but I really want the features of bbpress and buddypress.
Does this sound like something that could be done?
I’m working with bbpress 2.3.2 on a site at http://www.dmtutor.com. For some odd reason, my font changed on the forum index page from an arial font like on all the other pages in bbpress to a new times roman. I’ve not edited any files that would affect such a change. What file controls the font on that page?
Thanks,
Alan
