Customization in vendor store setup wizard

Hi, Follow the below example and you will able to change CSS for vendor setup wizard :-

function mvx_add_demo_style()
{
wp_enqueue_style( 'demo_css', get_stylesheet_directory_uri(). '/style.css' );
}

add_action('admin_print_styles', 'mvx_add_demo_style');

Leave a Reply