Search Results for 'bbpress'
-
Search Results
-
How to create Topic Info like on the supports of the sites BBpress and Buddypress? thanks
Topic: 500 – Internal server error
When I upgraded my Wp to version 4.8.2 the “forum” information disappeared from the “dashboard”.
Bbpress keeps running, but I can not create a new forum or topics.Is this a compatibility issue with version 4.8.2 of WP?
Can you tell me when we will have a bbpress update for version 4.8.2 of WP?
Hello Guys,
I think I have found a bug. But at first some Info from the System:
WP version 4.8.2
PHP version 7.0.22-0ubuntu0.16.04.1
bbPress version 2.5.14-6684I want the hide the Tag-Input for all “normal” Users. So only the Keymaster and the mods can assign tags. I found, that I can hook into the capatiblities with
bbp_get_caps_for_roleand set the settings tofalse:`
add_filter(‘bbp_get_caps_for_role’, function ($caps, $role) {
// only the admin can delete and manage topic tags
if (!in_array($role, [‘bbp_keymaster’])) {
$caps[‘manage_topic_tags’] = false;
$caps[‘delete_topic_tags’] = false;
}// only mods and admin can edit or assign tags
if (!in_array($role, [‘bbp_keymaster’, ‘bbp_moderator’])) {
$caps[‘edit_topic_tags’] = false;
$caps[‘assign_topic_tags’] = false;
}return $caps;
}, 10, 2);
But the problem is, that in
template\defaults\bbpress\form-reply.phpwe check with:<?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags' ) ) : ?>current_user_cancallsWP_User->has_capand there is$capabilities['assign_topic_tags'] = true.—–
Workaround:
`
add_filter(‘user_has_cap’, function($caps, $metaCaps, $args) {
$forumCaps = bbp_get_caps_for_role($args[0]);return array_merge($caps, $forumCaps);
}, 10, 4);
`Hi all,
I’m starting a community page in WordPress with the plugins bbPress and BuddyPress.
I have a nice Forum page with my topics. At the top of the forum page I would like to have an overview about the topics with no replies for the logged in users with a certain role. So not a link to the page with all unanswered questions, but, if possible an overview of the questions.
Is this possible? Thanks for your help!
Kind regards,
Laura
Topic: Need Help Reinstalling
I recently screwed up my BBPRESS installation. After changing the URL structure of my site to remove the ‘blog’ part of the url, bbpress stopped showing up topics. I deleted all forums and threads, deactivated bbpress, reinstalled, reset the permalinks, all multiple times, and it is still not working properly. Can somebody help me completely purge BBPRESS so I can do a clean install? Tell me what I have to do
Topic: Remove sidebar?
I would like to integrate anonymous posting for registered users with my bbPress forum. ie. logged in users should have the ability to be anonymous if they choose to do so. The entire board is private and requires membership so guest posting is not an option.
I have searched high and low for a plugin yet no luck. In my particular case, there are certain members who are embarrassed to post certain topics or questions, anonymous posting would give them the freedom to ask and participate without being judged by the community.
I was hoping someone could offer there expertise and give me a nudge in the right direction, as to what would be the best way to develop such a feature, regarding which functions and files of the bbPress core i should be looking at. I am relatively new to php and programming in general and any advice/guidance would be a huge help for me.
Thanking you for your time and help
I created a custom page for the forum “home page”. bbPress has clickable breadcrumbs and “Forum” will load the default bbPress forum home, as such I added the following to my .htaccess to redirect the user to my custom page:
RewriteEngine On RewriteRule /forums$ /the-forumThis redirects the user:
from: http://ok.thissiteworks.com/forums/ (bbPress forum home)
to: http://ok.thissiteworks.com/the-forum/ (custom forum home)That works – but only for logged in users. When a user is not logged in the redirect does not work.
- Can someone advise why this would not work for not logged in users?
- Is there perhaps a better way to redirect the users to the custom page?
Topic: Search css issues…
I have WordPress ver. 4.8.2–en_GB and bbpress ver. Version 2.6-rc-3.The forum I created can be seen here:
https://freyer.com/forums/topic/this-is-a-very-long-topic-as-i-have-loads-to-discuss-2/?csshero_action=edit_page&rand=272After setting up bbpress I have this search issue that when I search the forum, the results are messy as you can see above.
Any idea where I can make changes, so the page displays properly?thanks,
Riggie