BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25068
    Brajesh Singh on #55656

    Hi Noah,
    That’s awesome.
    Thank you for letting me know. I am glad you resolved it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25068
    Brajesh Singh on #55654

    Hi,
    Thank you for confirming.

    Which plugin are you using for the re-captcha. Please let me know and I will look into our integration.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25068
    Brajesh Singh on #55652

    Hi,
    Thank you for the link.
    I assume that you are referring to the sidebar register button/link?

    It is probably coming from your theme or some other plugin. You can add the following custom css to fix it.

    
    #bp-login-widget-form .bp-login-widget-register-link a {
        filter: none !important;
        color: #fff;
    }
    
    

    That should fix it.

    Please let me know if it works or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25068
    Brajesh Singh on #55650
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25068
    Brajesh Singh on #55649

    Hi Tosin,
    Thank you for sharing the update.

    Please allow me to go through it over the weekend and get back to you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25068
    Brajesh Singh on #55648

    Hi Earl,
    Thank you for reporting the issue. This is currently by design.

    You will need to add the following to your bp-custom.php to disable it.

    
    // disables MediaPress gallery linking for activity.
    add_action( 'bp_include', function () {
    
    	if ( ! function_exists( 'mpp_filter_activity_permalink' ) ) {
    		return;
    	}
    
    	$priority = has_filter( 'bp_activity_get_permalink', 'mpp_filter_activity_permalink' );
    
    	if ( false !== $priority ) {
    		remove_filter( 'bp_activity_get_permalink', 'mpp_filter_activity_permalink', $priority );
    	}
    
    } );
    

    Please let me know if it worked for you or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25068
    Brajesh Singh on #55647

    Hi Josh,
    The users need to have a last activity time set in order to appear in members directory. That’s why this happened.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25068
    Brajesh Singh on #55646

    Hi,
    Welcome to BuddyDev support forums.
    Thank you for using the plugin.

    It seems the css might be coming from the theme. Can you please link me to your site. I can quickly check and provide a snippet to disable it.

    Please use the private reply in the forum to share the link if you need to keep it private.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25068
    Brajesh Singh on #55642

    Hi Steve,
    Thank you for purchasing from us.

    Please download it from your BuddyDev profile.

    https://buddydev.com/members/anferneecheung/membership/plugins/

    or from the individual plugin page.
    I have shared the similar message over email too.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25068
    Brajesh Singh on #55638

    Hi George,
    In our case, all the contents are sanitized before saving(BuddyPress handles commenting/post sanitization of activity entries) and we do not do much with the input. For the output, we have partially sanitized as the assumption is all inputs were sanitized while recording.

    This will only be problematic if something was imported via a script without using MediaPress functions. For now, I don’t see any reason for us to worry about it. I will update the lightbox in next release too.

    Regards
    Brajesh