Search Results for 'bbpress'
-
Search Results
-
Topic: Device Display Compatibility
I’ve noticed there are some issues when the forums are displayed on handsets.
Users names from under their profile pictures trail off the right side of the screens, and worse still, when reading posts and replies within topics, all the users profile pics squash themselves all together at the top left hand-side of the screen.
** Note that if I rotate my handset to the landscape side, it all works great and no issues at all with the profile pictures going back to the normal places…
Everything else works great, just this little incompatibility. Any of you guys can suggest anything like a CSS rule that only targets this issue with the BBPress plugin to fix this?
Many many thanks all.
last version of WordPress 4.8 2 and bbpress 2.5.14
I have just installed bbpress on our website http://www.ceipa.eu
I have some question:
– how to remove the field “WEB” for “Anonymous” (guest users without account) ?
I found a similar question in other topic but this question (posted more than 5 months ago) did not receive any answer– is a catalog or list of those Anonymous users existing ? not only for the users which have replied in a topic (or created one) but also for those who have placed a comment and/or answered to a comment on a post
– which is the best plug-in for “register” or “subscriber” to install to avoid the intervention of the admin (present methodology applied for members untel now) – our site was build with a pro version of the theme “Exibit”
many thanks in advance for your answers
I’ve noticed there are some issues when the forums are displayed on handsets.
Users names from under their profile pictures trail off the right side of the screens, and worse still, when reading posts and replies within topics, all the users profile pics squash themselves all together at the top left hand-side of the screen.
** Note that if I rotate my handset to the landscape side, it all works great and no issues at all with the profile pictures going back to the normal places…
Everything else works great, just this little incompatibility. Any of you guys can suggest anything like a CSS rule that only targets this issue with the BBPress plugin to fix this?
Many many thanks all.
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_role
and 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.php
we check with:<?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags' ) ) : ?>
current_user_can
callsWP_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);
`
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