Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #961698

    Hello, I have two little problems. With WooCommerce under rating I miss the checkbox to the approval, with a normal blog post this is there. Now I send a rating from the system knows that the checkbox must be activated: Error: You must agree to our privacy policy to comment on this site… There is no checkbox. About logging in via my account the same problem: : You must acknowledge and agree to the privacy policy.
    Is there an easy and quick way to add the checkbox?

    Thanks!

    #962709

    Hey Heimkinopartner,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    #963616

    same here

    #963946

    Hey,

    Please refer to Peter’s post here – https://kriesi.at/support/topic/can-not-login-at-woocommerce-anymore/#post-963934

    Regards,
    Yigit

    #965214

    My main problem is actual WooCommerce Product Reviews. I can’t write Reviews: Error: You must agree to our privacy policy to comment on this site…

    No checkbox :( This is simply missing

    #966518

    Hi,


    @Heimkinopartner
    have you tried applying Peter’s workaround? :)

    Best regards,
    Yigit

    #967228

    Yes that helps to log in, but not for the missing checkbox in the article review.

    #967231

    Hey,

    Could you please update Enfold to the latest version 4.4.1 – https://kriesi.at/documentation/enfold/how-to-install-enfold ? :)

    Regards,
    Yigit

    #967238

    Done. Same Problem as Guest – Error: You must agree to our privacy policy to comment on this site… – (WooCommerce Product Rating / Review) No Checkbox. Once you’re logged in, it works. Then there is no direct checkbox, but you can write and send it as well.

    #969813

    Hi,

    Thanks for the update.

    The checkbox is not included in the single product review template by default. Please try this filter in the functions.php file.

    add_filter('woocommerce_product_review_comment_form_args', 'woocommerce_product_review_comment_form_args_mod', 10, 1);
    function woocommerce_product_review_comment_form_args_mod($form) {
    	$form['comment_field'] .='<p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"' . $consent . ' />' .
    					'<label for="wp-comment-cookies-consent">' . __( 'Save my name, email, and website in this browser for the next time I comment.' ) . '</label></p>';
    	return $form;
    }
    
    

    Best regards,
    Ismael

    #970086

    Thanks for your help. This add a Box, but not the right one: This is the “Save my name, email and website in this browser until I comment again” Box. I need: I have read and agree to the privacy policy Box

    Done with:

    add_filter(‘woocommerce_product_review_comment_form_args’, ‘woocommerce_product_review_comment_form_args_mod’, 10, 1);
    function woocommerce_product_review_comment_form_args_mod($form) {
    $form[‘comment_field’] .='<p class=”comment-form-av-privatepolicy”><input id=”comment-form-av-privatepolicy” name=”comment-form-av-privatepolicy” type=”checkbox” value=”yes” />’ .
    ‘<label for=”comment-form-av-privatepolicy”>’ . __( ‘Ich habe die Datenschutzerklärung gelesen und bin damit einverstanden.’ ) . ‘</label></p>’;
    return $form;
    }

    #971482

    Hi,

    Awesome! Thanks for the info. I’m sure it will help a lot of users. :)

    Best regards,
    Ismael

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.