Search Results for 'bbpress'
-
Search Results
-
Hi,
I’ve just created first bbPress forum. when I write a post, I have this check box, but unregister visitors on the site can create new posts and comment existing posts, but there is no option for notify me via e-mail. There is no also the subscribe to forum option.
Visitors have to subscribe to my website in order to have this option?
I created another user using the /wp-signup.php/ but this user didn’t even have the option to comment or to create any post.
One last detail:
in my Dashboard > Settings > General. I could not find the ‘anyone can register’ check box.I just want visitors to be able to comment & create posts, with option to get notify by mail for their comments.
Any help will be very appreciated!
ThanksHi there,
I am a newbie to wordpress. I am using bbPress for my site. I have an existing form that doesn’t have any approval process. I am manually adding the users after receiving the forms. I did some digging and found the “New User Approve” plugin. I went ahead and installed the plugin. But not sure how to link/connect the plugin to my form so that the new user registrations can be moderated (approve or deny). Any help will be greatly appreciated.
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