• Hi,
    I am using WooCommerce Germanized Pro with a multi-level cash register. Unfortunately WP GDPR Compliance sets the checkbox for GDPR automatically at the last page of the multi-level cash register but if you type in your personal data on the first page you cannot continue because it complains that you have to accept the privacy policy which you cannot accept because it’s not shown on the first page but on the last one… Is there any possibility to change that?

    Thanks and best regards
    Andrea

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • You could try to remove the “required” attribute from the GDPR checkbox:

    add_filter('wpgdprc_woocommerce_field_args', 'wpgdprc_remove_required_attribute');
    function wpgdprc_remove_required_attribute($args = array()) {
        $args['required'] = false;
        return $args;
    }

    Where to find this code @donnyoexman ?

    • This reply was modified 6 years, 8 months ago by pdh91.
    • This reply was modified 6 years, 8 months ago by pdh91.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Multi-level cash register doesn’t work’ is closed to new replies.