• Resolved pochi555

    (@pochi555)


    I want to hide the “Privacy”-“Download your data” and “Erase of your data” items on the account settings in UltimateMember.
    Is there a way?

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

    (@champsupertramp)

    Hi @pochi555

    You can use the following code snippet to remove the “Download your data” and “Erase your data from the Account > Privacy tab.

    add_action("init", function(){
        remove_action( 'um_after_account_privacy', 'um_after_account_privacy' );
    });

    You can add the code to your theme/child-theme’s functions.php file or use the Code Snippet plugin to run the code.

    Regards,

    Thread Starter pochi555

    (@pochi555)

    Thanks for your support.
    This code solved the problem!

    Regards,

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Thanks for letting us know.

    Regards,

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘I want to hide the “Privacy”-“Download your data” and “Erase of your data”’ is closed to new replies.