BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: [Resolved] BuddyBlog delete action hook/filter #47567

    Hi Nik,
    Thank you for the question.

    1. Please avoid using the filter ‘bblpro_post_submission_prepared_data’ if you are not changing the data which will be saved. The goal is to allow filtering content/

    There are better action hooks available if you want to do some housekeeping action ( prefer ‘bblpro_post_submitted’.

    We haven’t added an action for deletion but you can use the default WordPress one( if trashing is enabled, ‘wp_trash_post’ or ‘wp_delete_post’)

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: [Resolved] Buddy Press Profanity Filter #47566

    Hi Kerry,
    Welcome to BuddyDev support forums.

    I am very sorry. I had a look at the plugin and I see that we made a huge blunder by not including the content link.

    We will be updating the plugin by Tuesday and let you know here.

    I sincerely apologize for the inconvenience.

    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209

    Hi,
    I am sorry, I skipped the post earlier.
    i am seeing a lost of issues:-

    1. Play list is not defined for users other than with id 12
    2. The Payload is not included as you are not putting it correctly.

    You should add the body parameter after you have created the $dataPut as shown below

    
    $argsPut['body'] = $dataPut;
    

    Please give it a try after that. I will suggest 2 other changes too:-

    1. add a fallback playlist id or return at the beginning
    2. make sure to check if ‘103’ exists in the $old_values/$new_values

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: [Resolved] Buddyblog activity button #47557

    Hi Tosin,
    We will check if BuddyPress allows us to add extra markup without applying their kses(otherwise, we will have to use action to add the buttons).

    Ravi or I will update you in next 2 days.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209

    Hi,
    It does not seem it has any relationship with BuddyBlog as you are using a third party function to return a variable.

    I am assuming that you are using ACF or something similar. You will need to generate the embed markup on your own.

    Here is a way to generate the markup from your value. You can update your shortcode with this

    
    
    add_shortcode( 'youtube', 'youtube_shortcode' );
    
    function youtube_shortcode() {
    	$youtube = get_field( 'oembed' );
    	global $wp_embed;
    
    	return empty( $youtube ) ? '' : $wp_embed->shortcode( array(), $youtube );
    }
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: Cloud Based Storage #47549

    Hi Ahmed,
    Thank you for the question.

    We do have mpp cloud storage which is very specific to MediaPress and google Cloud. We did not release it as our plans have changed and we have worked this year on a more comprehensive plugin that works with WordPress, BuddyPress, BuddyBoss(and other plugins such as woo etc) and can be plugged to any of the storage/delivery solution.

    At the moment, we still need to work at least 2 weeks on it. Our goal was to finalize it during the holidays as we have low workload at this time.

    Please expect a public release sometime this month.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: [Resolved] User activity search field #47542

    Hi Daniel,
    Than you for confirming.

    Have a nice weekend.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: Hide the BP type box and MPP on Website Activity Page #47541
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: Help with syncing groups and roles #47540

    Hi,
    Thank you for the details and finding the conflict.
    it seems that our assigned roles are getting overwritten.

    Since you are using a pro plugin from CodeCanyon, we don’t have control over how they run the assignment.

    I am sorry, I don’t see anyway for us to assist you with it/

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: [Resolved] Buddyblog auto update permalinks #47539

    No problem!