Skip to:
Content
Pages
Categories
Search
Top
Bottom

  • About
  • News
  • Codex
  • Develop
  • Make
  • Forums
  • Download

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Prashant Singh

    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

  • Profile picture of WebFlowers

    WebFlowers's profile was updated 7 years, 8 months ago

    WebFlowers

    @seamido7

    View Profile
  • Profile picture of Tổng hợp những yếu tố ảnh hưởng trực tiếp tới giá bán xe ôtô đã qua sử dụng

    Tổng hợp những yếu tố ảnh hưởng trực tiếp tới giá bán xe ôtô đã qua sử dụng's profile was updated 7 years, 8 months ago

    Tổng hợp những yếu tố ảnh hưởng trực tiếp tới giá bán xe ôtô đã qua sử dụng

    @dailyxe3

    View Profile
  • Profile picture of Prashant Singh

    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 🙂

  • Profile picture of Prashant Singh

    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);
    function ps_user_data_to_email( $msg, $user_id )
    {
    $user = get_user_by( 'id', $user_id );
    if(!empty($user))
    $data1 =…
    [Read more]

  • Profile picture of Needvan Removal

    Needvan Removal's profile was updated 7 years, 8 months ago

    Needvan Removal

    @needvanand2man

    View Profile
  • Profile picture of Prashant Singh

    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]

  • Profile picture of Prashant Singh

    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

  • Profile picture of Yeti Helpers

    Yeti Helpers's profile was updated 7 years, 8 months ago

    Yeti Helpers

    @carpetcleanerslasvegas

    View Profile
  • Profile picture of Prashant Singh

    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?

  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic remove bp notification by component_name ? in the forum Creating & Extending 7 years, 8 months ago

    how to remove component from bp notifications?


    Thread is aleady active here.

  • Profile picture of Prashant Singh

    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.

  • Profile picture of Prashant Singh

    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

  • Profile picture of Prashant Singh

    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

  • Profile picture of Prashant Singh

    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

  • Profile picture of Prashant Singh

    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

  • Profile picture of Prashant Singh

    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

  • Profile picture of Prashant Singh

    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:

    Theme Compatibility & Template Files


    Thanks

  • Profile picture of Prashant Singh

    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

  • Profile picture of Prashant Singh

    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

WordPress.org bbPress.org BuddyPress.org Matt Blog RSS

GPL Contact Us Privacy Terms of Service X

Skip to toolbar
    • WordPress.org
      • About WordPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • bbPress.org
      • About bbPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • BuddyPress.org
      • About BuddyPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
  • Log in
  • Anonymous
    • AnonymousNot Logged In
    • Register
    • Log In