Title: dequeue style and scripts
Last modified: July 22, 2017

---

# dequeue style and scripts

 *  Resolved [mizzinc](https://wordpress.org/support/users/mizzinc/)
 * (@mizzinc)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/dequeue-style-and-scripts-4/)
 * I know its an odd request, but how do we go about disabling the front.css and
   front.js scripts? I have attempted to do this using the following in a function
   but no luck.
 *     ```
       wp_dequeue_style( 'woocommerce-currency-switcher', WOOCS_LINK . 'css/front.css' );
       wp_deregister_script( 'woocommerce-currency-switcher', WOOCS_LINK . 'js/front.js' );
       ```
   
 * Thanks,

Viewing 1 replies (of 1 total)

 *  [pavloborysenko](https://wordpress.org/support/users/pavloborysenko/)
 * (@pavloborysenko)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/dequeue-style-and-scripts-4/#post-9346491)
 * Hello
 *     ```
       	wp_dequeue_script( 'woocommerce-currency-switcher' );
       	wp_deregister_script( 'woocommerce-currency-switcher' );
               wp_dequeue_style( 'woocommerce-currency-switcher');
               wp_deregister_style('woocommerce-currency-switcher');
       ```
   
 * It is also very important where you will use this code
    Example `add_action('
   wp_head', 'deregister_script_style', 1000);`

Viewing 1 replies (of 1 total)

The topic ‘dequeue style and scripts’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-currency-switcher/assets/icon-256x256.png?rev
   =2844633)
 * [FOX - Currency Switcher Professional for WooCommerce](https://wordpress.org/plugins/woocommerce-currency-switcher/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-currency-switcher/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-currency-switcher/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-currency-switcher/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-currency-switcher/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-currency-switcher/reviews/)

## Tags

 * [dequeue](https://wordpress.org/support/topic-tag/dequeue/)
 * [deregister](https://wordpress.org/support/topic-tag/deregister/)
 * [style](https://wordpress.org/support/topic-tag/style/)

 * 1 reply
 * 2 participants
 * Last reply from: [pavloborysenko](https://wordpress.org/support/users/pavloborysenko/)
 * Last activity: [8 years, 8 months ago](https://wordpress.org/support/topic/dequeue-style-and-scripts-4/#post-9346491)
 * Status: resolved