Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @phaz3k

    You can use this code snippet to hide those fields:

    
    /** Hide fields in Account > Privacy */
    
    add_filter("um_predefined_fields_hook",function( $fields ){
        
        unset( $fields['profile_noindex'] );
       
        return $fields;
    });
    
    add_action("init", function(){
        remove_action( 'um_after_account_privacy', 'um_after_account_privacy' );
    });

    You can use this plugin to add the code snippet:
    https://wordpress.org/plugins/code-snippets/

    Regards,

    Thread Starter davidovsky

    (@phaz3k)

    Thanks, it works.

    Can i add this code without plugin?

    I think fewer plugins = better

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘How to delete privacy settings’ is closed to new replies.