BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: [Resolved] Block button does not respond. #48867

    Hi Carsten,
    No problem.
    yes, the code is in correct position and should work fine.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: [Resolved] Block button does not respond. #48861

    Hi Carsten,
    You are welcome.
    I am glad that issue is resolved.

    Can you please tell me the question about like plugin?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: Username availability checker not working #48860

    Hi,
    Thank you for reporting the issue.

    I am sorry, I have no idea why BuddyBoss is treating field_3 as username.
    Still, you can use the following code to enable username checking on it.

    
    add_filter( 'buddydev_uachecker_selectors', function ( $selector ) {
    	return $selector . ', #field_3';
    } );
    
    

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: Buddyblog pro Pay per post setup #48859

    Hi Earl,
    Thank you for using the plugin.
    No, it will work with your existing create/edit page.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203

    Hi Daniel,
    I am sorry, we haven’t released yet due to docs/videos preparation.
    I will make sure it is available over this weekend. I can provide a copy via google drive for now until we publish the docs.
    Please let me know if you need it soon.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: Buddyblog text change on edit #48853

    Hi Tosin,
    Thank you.
    I have the hunch that using DomDocument parser is causing it.
    The problem is MediumEditor(js library) has been abandoned and we are looking for a suitable substitution for future.

    At the moment, I will recommend keeping it diabled.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203

    Hi Quentin,
    Thank you.

    I am glad you have it resolved now.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: [Resolved] Block button does not respond. #48845

    Thank you.
    I see that the issue is with content. The problem is this section of code.

    
    if ( is_user_logged_in() && function_exists( 'bublock_get_button' ) && bp_is_user() && ! bp_is_my_profile() ) {
    		$args = array(
    			'user_id' => bp_displayed_user_id(),
    			'button_class' => 'my-button-class'
    		);
    		echo bublock_get_button( $args ); 	
    	}
    

    It should be

    
    if ( is_user_logged_in() && function_exists( 'bublock_get_button' ) && bp_is_user() && ! bp_is_my_profile() ) {
    		echo bublock_get_button( bp_displayed_user_id() ); 	
    	}
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: [Resolved] Block button does not respond. #48843
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: Buddyblog text change on edit #48841

    Hi Tosin,
    That’s an encoding issue.

    Can you create a demo video showing the content and the steps that is causing it.

    Thank you
    Brajesh