Title: Remove script frontend
Last modified: February 19, 2020

---

# Remove script frontend

 *  Resolved [Julie](https://wordpress.org/support/users/wonderfullie/)
 * (@wonderfullie)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/remove-script-frontend/)
 * Hi,
 * Is there a way to remove the script “mailjet-front.js” in frontend ?
 * I’m currently not using the plugin for newsletter subcriptions so, I don’t think
   I need it.
 * Thanks,
    Julie.

Viewing 1 replies (of 1 total)

 *  [Alexis Vandepitte](https://wordpress.org/support/users/alvanjudi2/)
 * (@alvanjudi2)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/remove-script-frontend/#post-12508592)
 * If you search in the code of the plugin with the name of this script : `mailjet-
   front.js`, you will find that it is called in the file `WooCommerceSettings.php`.
 * Then in the function `addThankYouSubscription()` there are these two lines of
   code :
 *     ```
       $scriptPath = plugins_url('/src/front/js/mailjet-front.js', MAILJET_PLUGIN_DIR . 'src');
       wp_register_script('mailjet-woo-ajax-subscribe', $scriptPath, array('jquery'), false, true);
       ```
   
 * As you can see, the plugin use `wp_register_script` with a given name as the 
   first parameter.
 * You can use this name to deregister the script.
 * Put this line of code in your functions.php.
 * `wp_deregister_script('mailjet-woo-ajax-subscribe');`
 * The script won’t be called anymore.
    -  This reply was modified 6 years, 3 months ago by [Alexis Vandepitte](https://wordpress.org/support/users/alvanjudi2/).

Viewing 1 replies (of 1 total)

The topic ‘Remove script frontend’ is closed to new replies.

 * ![](https://ps.w.org/mailjet-for-wordpress/assets/icon.svg?rev=2994192)
 * [Mailjet Email Marketing](https://wordpress.org/plugins/mailjet-for-wordpress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/mailjet-for-wordpress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/mailjet-for-wordpress/)
 * [Active Topics](https://wordpress.org/support/plugin/mailjet-for-wordpress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/mailjet-for-wordpress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/mailjet-for-wordpress/reviews/)

## Tags

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

 * 1 reply
 * 2 participants
 * Last reply from: [Alexis Vandepitte](https://wordpress.org/support/users/alvanjudi2/)
 * Last activity: [6 years, 3 months ago](https://wordpress.org/support/topic/remove-script-frontend/#post-12508592)
 * Status: resolved