How to properly remove style for non logged in and front page only

Question

I am trying to remove style for non loggedin user & front page only.

i am trying this but didn’t work. any idea where i am making mistake?

add_action( 'wp_print_styles', 'my_deregister_style', PHP_INT_MAX );

function my_deregister_style() {
    if ( is_front_page() && !is_user_logged_in() ) {
        wp_dequeue_style( 'elementor-pro' );
        wp_deregister_style( 'elementor-pro' );

    }
}
0
Uzair 3 years 2020-03-25T12:50:57-05:00 0 Answers 107 views 0

Leave an answer

Browse
Browse