BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] BuddyBoss LearnDash modifying the Courses tab #33161

    Hello Brad,

    Thank you for using the plugin. Please take a look to the following reference for modifying the existing tab.

    https://buddydev.com/docs/buddypress-user-profile-tabs-creator-pro/modify-existing-profile-tab/

    If needs further assistance please let us know.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Auto Generate Gallery upon user registration #33159

    Hello Matteo,

    Sorry for the delayed reply. Please try the following code. It will only allow one gallery per user.

    https://gist.github.com/raviousprime/9eb24ad9ca30a3639a453f2a3e8593b9

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Tosin,

    Thank you for posting. Follow/Following features is already in our todo list for this plugin. Hopefully, We will implement this feature by the next plugin release.

    Regarding existing users, we might think bulk update feature for both followed and following.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Auto Generate Gallery upon user registration #33133

    Hello Matteo,

    Thank you for posting. Yes, it can be easily done I will update you soon with the code snippets to achieve this requirement.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] BuddyBlog with BadgeOs #32999

    Hello Adrian,

    Please try the following code and let me know if it works or not.

    
    add_action( 'bsfep_before_thumbnail', function () {
    
    	if ( has_filter( 'admin_post_thumbnail_html', 'badgeos_ob_png_only_note' ) ) {
    		remove_filter( 'admin_post_thumbnail_html', 'badgeos_ob_png_only_note' );
    	}
    
    } );
    
    add_action( 'bsfep_before_taxonomy_terms', function () {
    
    	if ( ! has_filter( 'admin_post_thumbnail_html', 'badgeos_ob_png_only_note' ) ) {
    		add_filter( 'admin_post_thumbnail_html', 'badgeos_ob_png_only_note' );
    	}
    
    } );
    
    

    Regards
    Ravi

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

    Hello Anders,

    The only thing that causes this problem might there any required field which is in hidden form causing this.

    Please try by making all fields are not required and then check. Please check by clear all type of cache i.e. cache created by plugin or browser cache.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: How can I display custom post type in buddypress activity #32966

    Hello Adeala,

    Thank you for posting. Try the following code which enables WooCommerce product post type to be recordable.

    
    add_filter( 'bp_blogs_record_post_post_types', function ( $post_types ) {
    
    	if ( ! function_exists( 'WC' ) ) {
    		return $post_types;
    	}
    
    	if ( is_array( $post_types ) && ! in_array( 'product', $post_types ) ) {
    		$post_types[] = 'product';
    	}
    
    	return $post_types;
    } );
    
    

    Please let me know if it works or not.

    Regards
    Ravi

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

    Hello Vivek,

    Is there any chance you are using our “BuddyPress Member Types Pro” which also has feature to auto join associated groups with the member type to user account when anything happen regarding user member types.

    Regrads
    Ravi

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

    Hello Anders

    Sorry for the delayed reply. On one thing I need your acknowledgement is there any chance you are using conditional profile fields on registration page.

    Regards
    Ravi

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

    Hello Anders,

    I have checked your registration page and it is working not disabled. Please assists me how can I create this issue in your registration page. There might be any script which disabling the button.

    It will be helpful if you can share a screenshot.

    Regards
    Ravi