-
Prashant Singh replied to the topic Activity page showing all members in the forum How-to & Troubleshooting 6 years, 3 months ago
Please check on the URL: your_site_url/activity like https://test.com/activity.
It’s called site-wide activity page in BuddyPress where you will see that all members tab.Thanks
-
Prashant Singh replied to the topic how to remove component from bp notifications? in the forum How-to & Troubleshooting 6 years, 3 months ago
Yes, please try that once.
-
Prashant Singh replied to the topic Notification not showing in user profile in the forum How-to & Troubleshooting 6 years, 3 months ago
I think you are looking for solutions that work with blog post only, which is a kind of custom work that needs to be done there.
But for reference, you can see this plugin https://wordpress.org/plugins/bp-activity-comment-notifier/ that works with activity post comments and it notifies all the users if a comment is made.
Thanks
-
Prashant Singh replied to the topic Adding Buddyform to other user's profile in the forum Installing BuddyPress 6 years, 3 months ago
Hi,
You can try this plugin https://wordpress.org/plugins/bp-user-profile-reviews/
-
Prashant Singh replied to the topic how to remove component from bp notifications? in the forum How-to & Troubleshooting 6 years, 3 months ago
Ok, so what I am doing is that I am navigating you to the file where it is coded and I guess it can only be commented in the plugin code itself and we can not remove it by the hook.
File: https://github.com/WPPlugins/activity-reactions-for-buddypress/blob/master/class/class.php
on line 1044 and 1062If it does not help then there are two filters…[Read more]
-
Prashant Singh replied to the topic See only a kind of users in the forum How-to & Troubleshooting 6 years, 3 months ago
Hi,
Please see this thread: https://wordpress.stackexchange.com/questions/125754/buddypress-conditionally-filter-directory-based-on-xprofile-field
Hopefully, it will fix your issue.
Thanks
-
Prashant Singh replied to the topic Get buddypress notifications from bbpress groups forums activity in the forum Creating & Extending 6 years, 3 months ago
Perfect 🙂
-
Prashant Singh replied to the topic New member profile data inc. in 'new user reg.-email'? in the forum Creating & Extending 6 years, 3 months ago
It will be custom work. You can add this code snippet in your child theme’s functions.php to achieve this:
add_filter('bp_core_signup_send_validation_email_message','ps_user_data_to_email',10,2);
[Read more]
function ps_user_data_to_email( $msg, $user_id )
{
$user = get_user_by( 'id', $user_id );
if(!empty($user))
$data1 =… -
Prashant Singh replied to the topic Add Friend button with ajax in the forum How-to & Troubleshooting 6 years, 3 months ago
You can try enqueuing that with the conditional tag like:
function ps_buddypress_js_load(){
if(is_home()){
wp_register_script('buddypress', plugins_url( '/buddypress/bp-templates/bp-legacy/js/buddypress.js' , 'buddypress' ) );
wp_enqueue_script('buddypress');
}
}
add_action('wp_enqueue_scripts', 'ps_buddypress_js_load');If you are…[Read more]
-
Prashant Singh replied to the topic Notification not showing in user profile in the forum How-to & Troubleshooting 6 years, 3 months ago
That’s not a default BuddyPress feature. You can try this plugin https://buddydev.com/plugins/bp-notify-post-author-blog-comment/ to see if it works fine for you.
Thanks
-
Prashant Singh replied to the topic Reply to message failure in the forum How-to & Troubleshooting 6 years, 3 months ago
Have ypu tried this again or this happened once only?
-
Prashant Singh replied to the topic remove bp notification by component_name ? in the forum Creating & Extending 6 years, 3 months ago
Thread is aleady active here. -
Prashant Singh replied to the topic Buddypress create errors in my Theme in the forum How-to & Troubleshooting 6 years, 3 months ago
Seems like your theme is not compatible with BuddyPress. If you can check with the default theme, you will see that it works fine.
-
Prashant Singh replied to the topic Activation Page not Working as Child in the forum How-to & Troubleshooting 6 years, 3 months ago
It is always included as a parent page in BuddyPress. It’s having it’s own functionality that’s why it is an individual page. You should not make that child page of registration.
Thanks
-
Prashant Singh replied to the topic Notification not showing in user profile in the forum How-to & Troubleshooting 6 years, 3 months ago
I am not sure if you are creating blog posts or activity. BuddyPress sends notification for these updates https://codex.buddypress.org/administrator-guide/notifications/
If it is a blog post then you have to go with this code to get notification https://wordpress.stackexchange.com/questions/263950/new-post-notifications-for-users-buddypress
-
Prashant Singh replied to the topic Uploaded Avatars do not Crop Correctly in the forum How-to & Troubleshooting 6 years, 3 months ago
Please check thia link https://gschoppe.com/wordpress/buddypress-auto-pad-avatars/
If this can help, it will be great.
Thanks
-
Prashant Singh replied to the topic Accessing Profile Page in the forum How-to & Troubleshooting 6 years, 3 months ago
Hi,
Please check this link https://codex.buddypress.org/getting-started/buddypress-links-in-wordpress-menus/
You can easily get BuddyPress menus on your site.
Thanks
-
Prashant Singh replied to the topic bp_get_suggestions 400 error in the forum How-to & Troubleshooting 6 years, 3 months ago
Please check if there is any plugin conflicting with BuddyPress or any code written in your child theme that can break the process.
Thanks -
Prashant Singh replied to the topic How to override default registration and edit profile forms with ninja forms? in the forum How-to & Troubleshooting 6 years, 3 months ago
You can override buddypress templates and even can change the registration to be happened with ninja form only but edit profile section can not be created with ninja form. Please see:
Thanks -
Prashant Singh replied to the topic How to show comment count blog post in profile buddypress in the forum How-to & Troubleshooting 6 years, 3 months ago
$user_id = bp_displayed_user_id();
$args = array('user_id'=>$user_id, 'count' => true);
$comments = get_comments($args);
print_r($comnents);Please check with this code.
Hopefully this will work for you.
Thanks
- Load More
@prashantvatsh
Active 3 months, 3 weeks ago