Dequeue parent theme certain css file
-
Hello,
I want to dequeue main.min.css file (id/handle is generate-style-css) but i can’t make it work with the normal way of doing it using dequeue/deregister.
I think it is because child theme loads before parent so it is overrided.
Here is what i used but doesn’t work:
/* Dequeue generate style css parent main min css */ add_action( 'wp_enqueue_scripts', 'remove_parent_style', 999999 ); function remove_parent_style() { wp_dequeue_script( 'generate-style' ); wp_deregister_script( 'generate-style' ); }
How can i dequeue this certain file from the parent generatepress theme?
Thank you.
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Dequeue parent theme certain css file’ is closed to new replies.