- How to Install Convert Pro Addons?
- Understanding the General Settings of Convert Pro
- Understanding the Email Notification Settings in Convert Pro
- How to Create a Modal Popup in Convert Pro?
- Configuration Settings for a Modal Popup in Convert Pro
- How to Display a Call-to-action on a Specific Page, Post, Category etc (Page Level Targeting)?
- How to Target Users based on the Device they use?
- Schedule Your Call-to-action in Convert Pro
- What is a Call-to-Action in Convert Pro? How can I create one?
- What are the minimum requirements to use Convert Pro?
- How to Create a Slide-in Popup in Convert Pro?
- How to Create a Before/After Post Inline Call-to-action in Convert Pro?
- How to Create an In-Content Call-to-action in Convert Pro?
- How to Create a Call-to-action as a Widget Box using Convert Pro?
- Advanced Settings in Convert Pro
- How to Create a Multi-step Call-to-action in Convert Pro?
- How to Fetch the Latest Templates on my Website?
- How to Reposition a Slide-in in Convert Pro?
- How to Reposition an Infobar in Convert Pro?
- How to Create a Full screen popup in Convert Pro?
- How to Translate Convert Pro Plugin in Your Own Language using GlotPress?
- How to auto close call-to-action in Convert Pro
- Convert Pro Supports GDPR Regulations
- How to Display a YouTube Video in a Convert Pro Call-to-Action?
- How to create Multilingual call-to-action with WPML
- Disable cookies using Cookiebot plugin with Convert Pro for GDPR regulations
- Introducing the Honeypot field in Convert Pro
- How to Disable Call-to-actions for Subscribers?
- How to Create a Full screen popup in Convert Pro?
- How to deliver a lead magnet through your confirmation page or thank you page? – Using Double Opt-in
- Shortcut Keys For Customizer Operations
- Google Analytics Integration with Convert Pro
- How to Setup Convert Pro Events in Google Tag Manager
- Understanding the Email Notification Settings in Convert Pro
- How to A/B Test Two or More Call-to-Actions in Convert Pro?
- How to Add Custom CSS/HTML code/shortcode to a Call-to-action in Convert Pro?
- How to Create a Language Specific Popup in Convert Pro?
- Introduction to Rules sets in Launch settings of Convert Pro
- How to Integrate an Elementor Form in a Convert Pro call-to-action?
- How to Disable Click Event for a text?
- What are the Field actions in Convert Pro?
- Designing a Call-to-action in Convert Pro
- Cookie Settings in Convert Pro
- How to Create an Infobar in Convert Pro?
- How to Create a Full Screen Popup or Call-to-action in Convert Pro?
- How to Edit a Call-to-action in Mobile View?
- How can I disable a Call-to-action on Mobile Devices?
- How to Rename a Call-to-action in Convert Pro?
- How to Display a Call-to-action when a Specific Product is Added to the Cart?
- Working with Referrer Detection in Convert Pro
- Show or Hide Call-to-action to Logged in and First time users
- How can I disable a Call-to-action on Mobile Devices?
- How to Disable Google Fonts in the Frontend?
- How to Target Users based on the Device they use?
- Filter to Add a New Custom Font
- Convert Pro Email Notification Filters
- Google Analytics Integration with Convert Pro
- How to Integrate Convert Pro with ActiveCampaign?
- How to Integrate Convert Pro with ConvertKit?
- How to Integrate Convert Pro with AWeber?
- How to Integrate Convert Pro with Benchmark Email?
- How to Integrate Convert Pro with Campaign Monitor?
- How to Integrate Convert Pro with Campayn?
- How to Integrate Convert Pro with CleverReach?
- How to Integrate Convert Pro with Constant Contact?
- How to Add a New Google Font?
- How to Add Custom Conditions to Display a Call-to-action?
- How to Change the Credit Link Text?
- How to Display a Call-to-action when a Specific Product is Added to the Cart?
- How to Trigger a Call-to-action only on Woo-commerce order received page?
- How to Use the Advanced Script Addon in Convert Pro?
- How to Clear Cache for Call-to-Actions in Convert Pro?
- How to Create a Language Specific Popup in Convert Pro?
- How to White Label Convert Pro?
- Authenticate your MailChimp Account
- Authenticate your Benchmark Email Account
- Authenticate your ActiveCampaign Account
- Authenticate your Campaign Monitor Account
- Authenticate Your CleverReach Account
- Authenticate Your ConvertKit Account
- Authenticate your GetResponse Account
- Authenticate Your MailerLite Account
- Drip API Token
- How to Trigger a Welcome Popup or Opt-in with Convert Pro?
- How to Trigger an After Scroll Call-to-Action with Convert Pro?
- How to Trigger a Popup when a User is About to Leave the Page (Exit Intent)?
- How to Trigger a Call-to-action only on Woo-commerce order received page?
- How to Trigger a Popup on User Inactivity (User Inactivity Trigger)?
- How to Trigger a Popup or Call-to-action on Click of an Element/Button?
- Trigger a Call-to-Action using a Link Code
- Trigger a Call-to-Action using a Unique CSS class or ID (Button and WordPress Menu Item)
- How to Trigger a Call-to-Action after a Blog Post?
Disable cookies using Cookiebot plugin with Convert Pro for GDPR regulations
Might you be concerned about cookie consent rule from GDPR regulations? You might need to disable cookies from plugin according to users Consent. Here is how you can manage with Convert Pro plugin.
Prerequisites
- Cookiebot plugin installed ( The also have a free version available on the WordPress repository)
- Convert Pro version 1.2.0 or later.
Cookiebot plugin helps to disable cookies from your site. Cookiebot works with script data attribute to disable loading of scripts which prevent tracking cookie. To add such script attribute for Convert Pro plugin, you need to use filter hooks provided.
Add following code to your theme’s functions.php file
add_filter( 'script_loader_tag', 'cpro_add_extra_atts', 999, 3 ); // Function to add extra attributes to cp-popup.js script loaded on front end. function cpro_add_extra_atts( $tag, $handle, $src ) { //The handles of the enqueued scripts. $scripts = array( 'cp-ideal-timer-script', 'cp-popup-script', ); if ( in_array( $handle, $scripts ) ) { $tag = str_replace( 'src', 'data-cookieconsent="marketing" src', $tag ); $tag = str_replace( 'text/javascript', 'text/plain', $tag ); $tag = str_replace( 'defer="defer"', '', $tag ); } return $tag; } add_filter( 'cpro_ga_manual_script_atts', 'cpro_ga_script_atts', 999, 1 ); // Function to add extra attributes to cp-popup.js script loaded on front end. function cpro_ga_script_atts( $atts ) { $atts = 'type="text/plain" data-cookieconsent="marketing"'; return $atts; } add_filter( 'cpro_ga_analytics_script_atts', 'cpro_ga_custom_script_atts', 999, 1 ); // Function to add extra attributes to GA event creation script. function cpro_ga_custom_script_atts( $atts ) { $atts = 'type="text/plain" data-cookieconsent="marketing"'; return $atts; }
Important Note: As Convert Pro functionality depends on JavaScript, depending on users consent, major functionality from Convert Pro might affect.
We don't respond to the article feedback, we use it to improve our support content.