Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author numixtech

    (@numixtech)

    Hello @letheos

    That is because I am queuing css animistion using “wp_enqueue_scripts” hook action with less priority(1000) to include css at the very last.

    Please add as per below code in your theme functions.php:

    add_action( 'wp_enqueue_scripts', 'dequeue_page_transition_style', 1000 );
    function dequeue_page_transition_style() {
    	wp_dequeue_style('page-transition-animsition');
    }

    I hope this helps.

    Thanks.

    Thread Starter letheos

    (@letheos)

    Thanks for your swift reply ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Dequeue Style’ is closed to new replies.