Problem: I would like to dequeue the stylesheets and script files enqueued for the lightbox plugin, but the script I added does not seem to dequeue these assets as expected.
Solution: Use priority 1 in the third param of add_action to dequeue these assets more effectively:
add_action( 'wp_print_footer_scripts', 'ts_dequeue_scripts', 1 ); function ts_dequeue_scripts( $handles ){ wp_dequeue_script( 'lightbox' ); } add_action( 'wp_print_footer_scripts', 'ts_dequeue_scripts', 1 ); function ts_dequeue_scripts( $handles ){ wp_dequeue_script( 'lightbox' ); }
Relevant Documentation:
https://developer.wordpress.org/reference/functions/add_action/
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | - | - |
13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | - | - |
Supporter timezone: America/New_York (GMT-04:00)
This topic contains 2 replies, has 2 voices.
Last updated by 3 years, 6 months ago.
Assisted by: Christian Cox.