I need help to remove the following columns Voices, Post and Freshness
topic index
Published on October 4th, 2017 by lhexybbp-topic-index
Published on October 4th, 2017 by lhexyPlease I need help to remove Voices, Post and Freshness
Display Topic Tags
Published on October 4th, 2017 by rogerlridgeHow do I display a list or a tag cloud of all the tags that are being used in a specific topic. I don’t want to display the tag list for all tags in the whole forum but just for the specific tag. Is this possible? If so, how can this be done please? Thanks in advance.
disable assign Topic Tags for non Mods/Keymasters
Published on October 4th, 2017 by sysixHello 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-6684
I 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_role and set the settings to false:
`
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.php we check with:
<?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags' ) ) : ?>
current_user_can calls WP_User->has_cap and 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);
`
How to embed a page on the top of the forum page?
Published on October 4th, 2017 by lauradimitraHi 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
How to loop all topics in one view?
Published on October 4th, 2017 by durvilchathello please help me me I wan to loop all my topics in one page?
remove Titel on forum main page
Published on October 4th, 2017 by avalsHow i can remove/hide the titel only on the first/main forum page
https://i.imgur.com/EBZCr6N.jpg
Need Help Reinstalling
Published on October 3rd, 2017 by s1r0nI 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
Remove sidebar?
Published on October 3rd, 2017 by loirucaHI, I found many articles on how to remove the sidebar from bbpress pages but nothing I do works for me. I’ve already checked my theme and sidebar is enabled. I’ve tried commenting out the <?php get_sidebar(); ?> under all bbpress templates files. I’ve tried hiding it with CSS.
The index forum pages and topics don’t show sidebar, but when I go to other pages like a user account or a tag, etc then the sidebar is there. Please, anyone, help me. I’m not sure what to do anymore.
Registered Users anonymous posting ability
Published on October 3rd, 2017 by mithrandirI 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