-
Prashant Singh replied to the topic See only a kind of users in the forum How-to & Troubleshooting 7 years, 8 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
-
WebFlowers's profile was updated 7 years, 8 months ago
-
-
Prashant Singh replied to the topic Get buddypress notifications from bbpress groups forums activity in the forum Creating & Extending 7 years, 8 months ago
Perfect 🙂
-
Prashant Singh replied to the topic New member profile data inc. in 'new user reg.-email'? in the forum Creating & Extending 7 years, 8 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 =… -
Needvan Removal's profile was updated 7 years, 8 months ago
-
Prashant Singh replied to the topic Add Friend button with ajax in the forum How-to & Troubleshooting 7 years, 8 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 7 years, 8 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
-
Yeti Helpers's profile was updated 7 years, 8 months ago
-
Prashant Singh replied to the topic Reply to message failure in the forum How-to & Troubleshooting 7 years, 8 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 7 years, 8 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 7 years, 8 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 7 years, 8 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 7 years, 8 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 7 years, 8 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 7 years, 8 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 7 years, 8 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 7 years, 8 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 7 years, 8 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
-
Prashant Singh replied to the topic Welcome Form on WP Page in the forum Creating & Extending 7 years, 8 months ago
You have to use the shortcode in the template wherever you want.
- Load More