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

    Hi Brad,
    Thank you for the question.

    At the moment, the plugin can not do that for the BP Nouveau template pack.

    For legacy, we use the form from theme. With nouveau this approach will not work.

    The solution is to create your own implementation of activity form and the form handler.

    Regards
    Brajesh

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

    Hi Mike,
    Thank you for the question.

    I am sorry, I do not see any straight forward option for this.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] acceptance checkbox is not working #28352

    Hi,
    The default registration page a page created by BuddyPress for allowing user signup. You can see it from Dashboard->Settings->BuddyPress->Pages screen.

    You can load css/js from our plugin on all pages by putting this code in your theme’s functions.php

    
    add_filter( 'bpxcftr_load_front_assets', '__return_true' );
    
    

    I do not think It will be very helpful if all the fields are not appearing.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: mediapress installation concern #28351

    Hi,
    Welcome to BuddyDev.

    Please share the error message or link me to a screenshot.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    You are welcome.

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Mediapress Upload Edge #28348

    Hi Philippe
    Thank you for checking.

    In that case, I will suggest contacting your theme developer and requesting for a fix.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Philippe,
    Thank you for the topic.

    This is by design in MediaPress( we link activity permalink to the gallery/media page).
    I will remove it in the next version and that will make it normal for all existing activity too.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Troubleshooting my site #28340

    Hi Mike,
    Welcome back.

    Thank you for the update. It’s good to know that it is fixed.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Accept activity wall to be read only #28339

    Hi Johan,
    Thank you for the patience.

    Please update the allowed level with correct ids and you may use the following in your bp-custom.pp

    
    
    add_filter( 'bp_activity_can_comment', function ( $can ) {
    
    	$logged_id = bp_loggedin_user_id();
    	if ( ! function_exists( 'pmpro_getMembershipLevelForUser' ) || ! is_user_logged_in() || bp_get_activity_user_id() == $logged_id || is_super_admin() ) {
    		return $can;
    	}
    
    	$level = pmpro_getMembershipLevelForUser( $logged_id );
    	if ( ! $level ) {
    		return false;
    	}
    
    	$allowed_levels = array( 1, 2 );
    
    	if ( ! in_array( $level->id, $allowed_levels ) ) {
    		$can = false;
    	}
    
    	return $can;
    
    } );
    
    

    Regards
    Brajesh