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

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

    Hi Quentin,
    Thank you.

    I am glad you have it resolved now.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25373
    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: 25373
    Brajesh Singh on in reply to: [Resolved] Block button does not respond. #48843
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25373
    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

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

    Hi Carsten,
    I can not investigate the request form the screenshot but the response code is 403(forbidden).
    If other ajax features are working that means the request being sent is not sending the proper details(item type, id, nonce etc).

    If you want, I can check it on the site and see what is causing it.

    Regards
    Brajesh