-
Prashant Singh replied to the topic Cannot post comment to a blog post from Activity stream in the forum How-to & Troubleshooting 6 years, 1 month ago
I have tested with the default theme and it seems all fine. Please test once with the default theme and if it is working for you please report it to your theme vendors.
Thanks
-
Prashant Singh replied to the topic buddypress install error in the forum Installing BuddyPress 6 years, 1 month ago
You can go with the above solution or can install this plugin https://wordpress.org/plugins/easy-theme-and-plugin-upgrades/ and then try to upload the zip of BuddyPress plugin.
Thanks
-
Prashant Singh replied to the topic Site Wide Activity in the forum Installing BuddyPress 6 years, 1 month ago
Welcome 🙂
Glad that it helped you 🙂
-
Prashant Singh replied to the topic Integrate WordPress search and bp group documents in the forum Third Party Plugins 6 years, 1 month ago
add_action( 'pre_get_posts', 'ps_bp_doc_search' );
function ps_bp_doc_search( $query ) {
if ( $query->is_search ) {
$query->set( 'post_type', array( 'post', 'page', 'bp_doc') );
}
}Please paste this function in your child theme’s functions.php. If there is no child theme then can use code snippets plugin…[Read more]
-
Prashant Singh replied to the topic Migrate from Ultimate Member to BuddyPress in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please take a backup before doing any changes. Users are there by default in WordPress so if you will remove the ultimate member and its extensions then also users will be there. What needs to be managed is if you have any associated data with UM like activities then they certainly will create the issue because BuddyPress has its own activity…[Read more]
-
Prashant Singh replied to the topic Site Wide Activity in the forum Installing BuddyPress 6 years, 1 month ago
You can leave it with default settings https://prnt.sc/l6hfat. Just drag and drop the widget wherever you want and then check.
-
Prashant Singh replied to the topic Site Wide Activity in the forum Installing BuddyPress 6 years, 1 month ago
Private group activities are by default excluded from the sitewide activity so this plugin already excludes them. No need to do any settings, it works out of the box.
Thanks
-
Prashant Singh replied to the topic Add Friend Problem in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Which theme you are using? Please go to any of the member’s profile and check there if you have add friend button or not.
Thanks
-
Prashant Singh replied to the topic Create/add forum from frontend in the forum Miscellaneous 6 years, 1 month ago
Hi,
In place of current_user_can(‘moderate’) please use bb_current_user_can(‘moderate’)
Thanks
-
Prashant Singh replied to the topic Using XProfile fields in Admin Notification Mail after activation in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please use this filter apply_filters( ‘wp_new_user_notification_email’, $wp_new_user_notification_email, $user, $blogname ); to change the mail content.
Thanks
-
Prashant Singh replied to the topic Is it possible in Buddy Press to give only permission to delete private message in the forum How-to & Troubleshooting 6 years, 1 month ago
Please use screencast-o-matic, I am not able to see the video at all.
-
Prashant Singh replied to the topic Background colour/ picture for BP activity updates in the forum Creating & Extending 6 years, 1 month ago
Hi,
Yes, you can color them by using the class names of activities like .activity_update for updates. All the activity types have unique class on them so you can use them to style them.
Thanks
-
Prashant Singh replied to the topic Block Characters e.g. @, numbers, dot etc. in text fields / multiline text in the forum How-to & Troubleshooting 6 years, 1 month ago
Yes, it is valid for legacy template.
Also in place of #input you have to use (.profile-edit #field_number).
‘field_number’ represents fields like field_1, field_2 so you have to just replace field_number with real field id. You can find it in inspection like this: https://prnt.sc/l61ajf
-
Prashant Singh replied to the topic BP-Nouveau Body Class Override Fix in the forum How-to & Troubleshooting 6 years, 1 month ago
Welcome 🙂
-
Prashant Singh replied to the topic Create A New Group Page Is Blank in the forum Installing BuddyPress 6 years, 1 month ago
Hi,
Have you tried disabling plugins? Also check once with the default theme like twentyseventeen(if not done).
Thanks
-
Prashant Singh replied to the topic Block Characters e.g. @, numbers, dot etc. in text fields / multiline text in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please try this code:
jQuery(document).ready(function(){
jQuery('#input').bind('keydown', function (event) {
var regex = new RegExp("^[0-9.@]+$");
var key = event.key;
if (regex.test(key)) {
event.preventDefault();
return false;
}
});
});#input…[Read more]
-
Prashant Singh replied to the topic Profile field groups tabs while editing profile in the forum How-to & Troubleshooting 6 years, 1 month ago
Glad to know that it worked for you 🙂 Always welcome 🙂
-
Prashant Singh replied to the topic BP-Nouveau Body Class Override Fix in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
I have checked this with a default theme twenty seventeen and this is not the issue there. I am seeing ‘bp-nouveau js’ as well as other body classes ‘single single-post’ and so on.
Please consult with your theme vendors, it’s possible that there is an issue at their end.
Thanks
-
Prashant Singh replied to the topic Plugin to Filter Activity on BP in the forum Miscellaneous 6 years, 1 month ago
Hi,
Please check this thread: https://buddypress.org/support/topic/activity-loop-filtering-multiple-or-excluding-filter/
The code given there will only output these activities:
'activity_update',
[Read more]
'activity_comment',
'new_blog_post',
'new_blog_comment',
'friendship_created',… -
Prashant Singh replied to the topic Private Blogs in the forum How-to & Troubleshooting 6 years, 1 month ago
Perfect 🙂
- Load More
@prashantvatsh
Active 3 months, 3 weeks ago