BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Mediapress Bulk Uploads again… #32954

    Hello NikB,

    Thank you for the acknowledgement. I am glad that you have resolved it by own and Thank you for your suggestion we will thing of it in future MediaPress releases.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] User can not register #32953

    Hello Anders

    Thank you for posting. Please let me know what errors you are getting while doing registration.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Snippet for auto join groups – adding non-activated also #32952

    Hello Vivek,

    It looks like “BP Groups Email Subscriptions” is causing it as there is a setting “Spam Prevention” please use this with certain minimum days and check if the issue still persists.

    Plugin author mention this at “SPAM PROTECTION” section on plugin page at wordpress.org.

    https://wordpress.org/plugins/buddypress-group-email-subscription/

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Block Users #32945

    Hello Joanne,

    Thank you for using the plugin. Are you using this buddyboss plateform with BuddyBoss theme?. Then, You will find block button in single member profile header buttons.

    Also, Superadmin users can not be blocked.

    Regards
    Ravi

    • This reply was modified 4 years, 11 months ago by Ravi.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Delete public message #32944

    Hello Anders.

    you can use css display property to hide that button.

    
    #post-mention {
       display: none;
    }
    
    

    Selector may be different in your case.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Delete public message #32940

    Hello Anders,

    Thank you for posting. Try the following code to hide the “Public Message” button

    
    
    add_filter( 'bp_get_send_public_message_button', '__return_empty_array' );
    
    

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Mediapress Bulk Uploads again… #32938

    Hello NikB,

    Are you able to get other notices as it is working for me?. check the following URL:

    https://ibb.co/3N4NwBJ

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Snippet for auto join groups – adding non-activated also #32936

    Hello Vivek,

    Sorry for the inconvenienc. Code will add user to group only when user activate his account. There might some other issue in your case. It there any plugin or custom code you are using for groups.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Mediapress Bulk Uploads again… #32934

    Hello Nik

    Try the following code. It will publish media using ajax and show feedback message.

    
    add_action( 'mpp_enqueue_scripts', function () {
    	// If we are not single gallery add media screen return.
    	if ( ! mpp_is_gallery_add_media() ) {
    		return;
    	}
    
    	$gallery_id = mpp_get_current_gallery_id();
    	$link       = mpp_gallery_get_publish_activity_url( $gallery_id );
    
    	$publish_link = sprintf( 'Click <a class="mpp-publish-to-activity-button" href="%s" rel="noopener">%s</a> HERE.', $link, __( 'Publish' ) );
    
    	wp_add_inline_script(
    		'mpp_uploader',
    		"jQuery(document).on( 'mpp:uploader:upload:complete', function( self, up, files ) {
    			jQuery('div#mpp-uploaded-media-list-gallery').append('" . $publish_link . "');
    			} );"
    	);
    }, 11 );
    
    

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Hash Tag Auto Complete #32933

    Hello Steven,

    Thank you for posting. Sorry, But we do not offer any snippets or plugin that offer compatibility with “Simple Tags” plugin. We may be able to take on the idea in sometime in future but not at the moment.

    Regards
    Ravi