-
AuthorPosts
-
May 24, 2018 at 5:01 pm #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!
- This topic was modified 6 years, 5 months ago by Heimkinopartner.
May 27, 2018 at 1:07 pm #962709Hey 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,
VictoriaMay 29, 2018 at 12:12 pm #963616same here
May 29, 2018 at 9:20 pm #963946Hey,
Please refer to Peter’s post here – https://kriesi.at/support/topic/can-not-login-at-woocommerce-anymore/#post-963934
Regards,
YigitJune 1, 2018 at 11:31 am #965214My 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
June 4, 2018 at 2:24 pm #966518June 5, 2018 at 2:01 pm #967228Yes that helps to log in, but not for the missing checkbox in the article review.
June 5, 2018 at 2:12 pm #967231Hey,
Could you please update Enfold to the latest version 4.4.1 – https://kriesi.at/documentation/enfold/how-to-install-enfold ? :)
Regards,
YigitJune 5, 2018 at 2:29 pm #967238Done. 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.
June 7, 2018 at 10:47 pm #969813Hi,
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,
IsmaelJune 8, 2018 at 2:03 pm #970086Thanks 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;
}- This reply was modified 6 years, 5 months ago by Heimkinopartner.
June 12, 2018 at 3:13 am #971482 -
AuthorPosts
- You must be logged in to reply to this topic.