BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Help with syncing groups and roles #47136

    Hello,

    Please download and activate the following plugin on your site:

    https://github.com/buddydev/bp-group-role/archive/refs/heads/master.zip

    This plugin adds a roles dropdown under Group > Settings page. You can set group associated role here and this role will be used when the user joins this group.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Buddyblog code adjustment #46917

    Hello Tosin,

    Try calling the edit link function in the following way

    
    bblpro_get_post_edit_link( get_the_ID(), array( 'label' => esc_html( 'Edit or Promote This Post' ) ) );
    
    

    please check.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BuddyPress Profile Data Moderator #46916

    Hello Darren,

    Thank you for posting. The ‘BuddyPress Profile Data Moderator’ plugin only targeted moderate data of profile fields. Another plugin “BuddyPress Avatar Moderator, ” is dedicated to only moderate user profile photos. Please have a look here:

    https://buddydev.com/plugins/buddypress-avatar-moderator/

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Buddyblog post title checker #46911

    Hello Tosin,

    Please check the following code:

    
    add_filter( 'bblpro_validation_errors', function ( $errors, $data ) {
    
    	if ( ! class_exists( 'Unique_Title_Checker' ) ) {
    		return $errors;
    	}
    
    	$title_checker = Unique_Title_Checker::get_instance();
    
    	if ( empty( $data['bbl_post_title'] ) ) {
    		return $errors;
    	}
    
    	$args = array(
    		'post_title' => sanitize_text_field( wp_unslash( $data['bbl_post_title'] ) ),
    		'post_type'  => sanitize_text_field( wp_unslash( $data['bbl_post_type'] ) ),
    	);
    
    	$validate_data = $title_checker->check_uniqueness( $args );
    
    	if ( 'error' == $validate_data['status'] ) {
    		$errors->add( 'bbl_post_title', $validate_data['message'] );
    	}
    
    	return $errors;
    }, 10, 3 );
    
    

    It works with “Unique Title Checker” By Bernhard Kau

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Buddydev “Tags” field #46910

    Hello John,

    Welcome to the BuddyDev forums. Please let me know which plugin you are using i.e. BuddyPress or BuddyBoss. If BuddyPress, Please also let me know the theme you are using.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] remove settings from nav tab only #46422

    Hello Carsten,

    Thank you for the acknowledgement. Please try the following CSS rule:

    
    .users-nav #settings-personal-li {
        display: none;
    }
    
    

    Please try it and let me know if it helps or not.

    Regards
    Ravi

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

    Hello Daniel,

    Thank you for the acknowledgement. The ‘debug.php’ file is a file WordPress generates when any kind of error occurs on the site. This file can be located under the ‘wp-content’ directory. Please look at the following URL:

    https://wordpress.org/support/article/debugging-in-wordpress/

    Please look at the following constant to enable debugging.

    
    // Enable WP_DEBUG mode
    define( 'WP_DEBUG', true );
    
    // Enable Debug logging to the /wp-content/debug.log file
    define( 'WP_DEBUG_LOG', true );
    

    Please give it a try.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] remove settings from nav tab only #46419

    Hello Carsten,

    Thank you for posting. If you want to keep the functionality then a better way to remove the settings tab is to hide this tab using the CSS rule. If you are okay with this approach. Please let me know which template pack you are using.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Pay Per Post co-relation with the BuddyBlog Pro #46413

    Hello Cristi,

    I have checked the plugin with BuddyBlog Pro and the Pay Per Post plugin and it is working fine for me means Post media gets deleted once the post deletes permanently. Please try after deactivating all other plugins, temporarily switch to the default theme, and then give it a try. There might be a chance some other plugin might conflict with the functionality. Also, let me know if you are dealing with default Post Type or any custom post type.

    Regards
    Ravi

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

    Hello Tosin,

    Please update the plugin to ‘1.0.1’ and Give it a try.

    Regards
    Ravi