• Resolved toutpourmasante

    (@toutpourmasante)


    Hi,

    I would like to know how to get rid of the Customer Consent checkbox. I would like the email to be sent with the invitation to evaluate the product without giving the consent. My customers are already giving their consent with another woocommerce checkbox (Terms and conditions). In this page that I wrote, I speak about the invitation to evaluate the product.

    It is confusing for my customers to have two checkboxes and also not practical.

    Thanks for your help.

    Alex

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support pear8398

    (@pear8398)

    Hi,

    Thank you for using CusRev.

    You can update our plugin to the new version 5.28.1 to disable consent on the settings page Reviews > Settings > Review Reminder tab. But the option is only available for the shop outside of EU. You can change the shop address in WooCommerce > Settings > General tab > Country.
    If you are in EU, and want?CusRev to send review reminders on your behalf, then we require an explicit consent from your customers according to the EU laws.

    Thread Starter toutpourmasante

    (@toutpourmasante)

    Ok. Thank you

    Maybe the code below will help? This ensures that the checkbox is checked by default. Place the code in your theme’s functions.php.

    <?php
    //Add this to functions.php
    function add_custom_script() {
      ?>
      <script>
        function setCheckboxChecked() {
          var checkbox = document.getElementById('cr_customer_consent');
          checkbox.checked = true;
        }
    
        // WooCommerce event voor het laden van betalingsmogelijkheden
        jQuery(document.body).on('updated_checkout', function() {
          setCheckboxChecked();
        });
    
        // Normale paginaload
        jQuery(document).ready(function($) {
          setCheckboxChecked();
        });
      </script>
      <?php
    }
    
    add_action('wp_footer', 'add_custom_script', 9999);
    ?>
    
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Customer Consent checkbox’ is closed to new replies.