BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25076
    Brajesh Singh on in reply to: Mediapress activity notification links #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: 25076

    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: 25076

    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: 25076
    Brajesh Singh on in reply to: [Resolved] link?? #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: 25076
    Brajesh Singh on in reply to: Magnific Popup version #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

  • Keymaster
    (BuddyDev Team)
    Posts: 25076
    Brajesh Singh on in reply to: Magnific Popup version #55637

    Hi George,
    Thank you for pointing.
    I don’t think we will be affected by this but I am going to check it one more time(we have proper input/output serialization and js/html is not allowed for normal roles).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25076

    Hi,
    Thank you for using the plugin.

    That information says you have put a condition over field id 805 which is not recognizable by this plugin. Please edit the field from the backend and disable condition on it. This notice triggers for unsupported field types.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25076
    Brajesh Singh on in reply to: Register Form Issue #55632

    Hi Vasile,
    Thank you for the reply.

    I am sorry, I did not receive any email even after trying to reset password. is email enable don the staging site?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25076

    Hi Josh,
    Thank you.

    That’s the right and the simplest way to achieve it. Thank you for sharing it for others.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25076
    Brajesh Singh on in reply to: Buddypress Moderation Plugin #55623

    Hi Alex,
    Thank you for the deails.

    1. Our buttons don’t use BP_Button class. You can still filter and wrap them using bpmts_report_button filter,

    2. You can redirect to a page you were visiting earlier(referrer), If referrer is empty, you will get redirected to your own profile with the message that says the profile is not accessible.

    Regards
    Brajesh