Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: [Resolved] Issues after update #29922

    Hi Carsten,
    I am sorry for the inconvenience.

    1. I am not sure if the plugin can cause this. Let us troubleshoot and find out for ourselves.

    To troubleshoot, let me help you with point 2 first

    2. It can happen if you are calling functions from Recent visitors directory in your theme code or bp-custom.php without checking function_exists for the same.

    can you please look for it and disable the snippets if any?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Tony,
    I am sorry, I do not think we can make it work. The problem is not with Profile tabs Pro.

    It lies with the implementation details of repeater field group. You won’t be able to use above shortcode for repeater field groups properly.

    I am going to explore it a bit more in future but I do not see any immediate solution.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: BuddyPress Moderation #29916
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Carla,
    Thank you for reporting it.

    Even though BuddyBoss is a fork of BuddyPress, They added profile type and repeater field. The repeater field is not preset in BuddyPress.

    We are adding compatibility with BuddyBoss gradually and we hope that we can do it in future. At the moment, I don’t see any workaround for this atleast for next 4 weeks.

    Also, if it is not saving for normal fields, It happens if you are using it with multi valued fields. If you edit multi valued fields, the options ids changes(this is an issue in BuddyPress) and that leads to this. We are hoping to put an update for this in near future.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: BuddyPress Moderation #29911
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi,
    Thank you for the question.

    If you change this line

    
    if( is_user_logged_in() && bp_is_members_component() ) 
    
    

    to

    
    
    if( is_user_logged_in() ) 
    
    

    The above code will work for Member type pro listing too.

    If your goal is do so differently for each member type, I will need 2 workign days to explore a solution and provide some hook.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    We have updated the plugin and the above suggested filter will work properly.

    For older version, if you can not upgrade, Please change this line

    
    $show = ( is_super_admin()|| bp_is_my_profile() ) && visitor_is_enabled_for_user( bp_displayed_user_id() );//( $is_enabled || is_super_admin() );
    
    

    to

    
    $show = is_user_logged_in();
    

    in visitors-component.php around line 88.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Nestor,
    You are welcome.

    I am glad I was able to assist.

    Best Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    This reply has been marked as private.