Title: Using this with other plugins
Last modified: May 21, 2018

---

# Using this with other plugins

 *  Resolved [chrisallenreach](https://wordpress.org/support/users/chrisallenreach/)
 * (@chrisallenreach)
 * [8 years ago](https://wordpress.org/support/topic/using-this-with-other-plugins/)
 * Is there a way to turn off or remove scripts when using other plugins.
    For example
   we use Google Analytics Dashboard, but I dont know how to switch this off if 
   I disable 3rd party cookies If there isn’t a way is it something you’ll be looking
   at in the future?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Dennis van Welie](https://wordpress.org/support/users/dennisvanwelie/)
 * (@dennisvanwelie)
 * [8 years ago](https://wordpress.org/support/topic/using-this-with-other-plugins/#post-10306728)
 * I think there is for now no way to work with other plugins. I like to see this
   also as feature in this great app!
 * [@chrisallenreach](https://wordpress.org/support/users/chrisallenreach/), for
   now you can put youre Google Analytics trackingcode in the GDPR Cookie plugin
   and it will work great! Don’t forget to disable de Google Analytics Dashboard
   before you testing it.
    -  This reply was modified 8 years ago by [Dennis van Welie](https://wordpress.org/support/users/dennisvanwelie/).
      Reason: I did forget one more line, before posting
 *  [MA](https://wordpress.org/support/users/gasparnemes/)
 * (@gasparnemes)
 * [8 years ago](https://wordpress.org/support/topic/using-this-with-other-plugins/#post-10360508)
 * Hi There,
 * Thanks for your comments.
 * We have implemented hooks to implement custom scripts by php based on the user
   preferences, check the hooks below:
 * **HOOK to GDPR custom 3RD-PARTY script by php – HEAD**
 *     ```
       add_action('moove_gdpr_third_party_header_assets','moove_gdpr_third_party_header_assets');
       function moove_gdpr_third_party_header_assets( $scripts ) {
       	$scripts .= '<script>console.log(“third-party-head”);</script>';
       	return $scripts;
       }
       ```
   
 * **HOOK to GDPR custom 3RD-PARTY script by php – BODY**
 *     ```
       add_action('moove_gdpr_third_party_body_assets','moove_gdpr_third_party_body_assets');
       function moove_gdpr_third_party_body_assets( $scripts ) {
       	$scripts .= '<script>console.log(“third-party-body”);</script>';
       	return $scripts;
       }
       ```
   
 * **HOOK to GDPR custom 3RD-PARTY script by php – FOOTER**
 *     ```
       add_action('moove_gdpr_third_party_footer_assets','moove_gdpr_third_party_footer_assets');
       function moove_gdpr_third_party_footer_assets( $scripts ) {
       	$scripts .= '<script>console.log(“third-party-footer”);</script>';
       	return $scripts;
       }
       ```
   
 * **HOOK to GDPR custom ADVANCED-PARTY script by php – HEAD**
 *     ```
       add_action('moove_gdpr_advanced_cookies_header_assets','moove_gdpr_advanced_cookies_header_assets');
       function moove_gdpr_advanced_cookies_header_assets( $scripts ) {
       	$scripts .= '<script>console.log(“advanced-head”);</script>';
       	return $scripts;
       }
       ```
   
 * **HOOK to GDPR custom ADVANCED-PARTY script by php – BODY**
 *     ```
       add_action('moove_gdpr_advanced_cookies_body_assets','moove_gdpr_advanced_cookies_body_assets');
       function moove_gdpr_advanced_cookies_body_assets( $scripts ) {
       	$scripts .= '<script>console.log(“advanced-body”);</script>';
       	return $scripts;
       }
       ```
   
 * **HOOK to GDPR custom ADVANCED-PARTY script by php – FOOTER**
 *     ```
       add_action('moove_gdpr_advanced_cookies_footer_assets','moove_gdpr_advanced_cookies_footer_assets');
       function moove_gdpr_advanced_cookies_footer_assets( $scripts ) {
       	$scripts .= '<script>console.log(“advanced-footer”);</script>';
       	return $scripts;
       }
       ```
   
 * I hope this helps.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Using this with other plugins’ is closed to new replies.

 * ![](https://ps.w.org/gdpr-cookie-compliance/assets/icon-256x256.png?rev=2376316)
 * [GDPR Cookie Compliance - Cookie Banner, Cookie Consent, Cookie Notice for CCPA, EU Cookie Law](https://wordpress.org/plugins/gdpr-cookie-compliance/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/gdpr-cookie-compliance/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/gdpr-cookie-compliance/)
 * [Active Topics](https://wordpress.org/support/plugin/gdpr-cookie-compliance/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/gdpr-cookie-compliance/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/gdpr-cookie-compliance/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [MA](https://wordpress.org/support/users/gasparnemes/)
 * Last activity: [8 years ago](https://wordpress.org/support/topic/using-this-with-other-plugins/#post-10360508)
 * Status: resolved