Forums

Removing the user profile admin theme switcher (3 posts)

  1. Zac
    Member
    Posted 2 years ago #

    I am trying to remove Admin Color Scheme switcher that is on the my profile page in the wordpress admin. I tried this function but it does not work..

    function admin_scheme_be_gone() {
    }
    add_filter ('register_admin_color_schemes','admin_scheme_be_gone');

    Any ideas on how to do this?

  2. David Sader
    Member
    Posted 2 years ago #

    <?php
    // remove_action( 'admin_init', 'register_admin_color_schemes', 1);
    remove_action( 'admin_color_scheme_picker', 'admin_color_scheme_picker' );
    ?>

  3. Zac
    Member
    Posted 2 years ago #

    Thanks!

Topic Closed

This topic has been closed to new replies.

About this Topic