Disable «place order» until user checks Privacy Policy in Woocommerce
up vote
0
down vote
favorite
I've added a checkbox on the checkout page by using this :
add_action( 'woocommerce_review_order_before_submit', 'add_privacy_checkbox', 9 );
function add_privacy_checkbox() {
woocommerce_form_field( 'privacy_policy', array(
'type' => 'checkbox',
'class' => array('form-row privacy'),
'label_class' => array('woocommerce-form__label woocommerce-form__label-for-checkbox checkbox'),
'input_class' => array('woocommerce-form__input woocommerce-form__input-checkbox input-checkbox'),
'required' => true,
'label' => 'I've read and accept the <a href="https://website.com/privacy-policy">Privacy Policy</a>',
) );
}
add_action( 'woocommerce_checkout_process', 'privacy_checkbox_error_message' );
function privacy_checkbox_error_message() {
if ( ! (int) isset( $_POST['privacy_policy'] ) ) {
wc_add_notice( __( 'You have to agree to our privacy policy in order to proceed' ), 'error' );
}
}
I want to make the checkout button disabled until the user has checked the "I've read and accept the privacy policy.
What would be the best practice of doing this? With jQuery it would be the simplest way, but could it be done directly with php?
php wordpress woocommerce
add a comment |
up vote
0
down vote
favorite
I've added a checkbox on the checkout page by using this :
add_action( 'woocommerce_review_order_before_submit', 'add_privacy_checkbox', 9 );
function add_privacy_checkbox() {
woocommerce_form_field( 'privacy_policy', array(
'type' => 'checkbox',
'class' => array('form-row privacy'),
'label_class' => array('woocommerce-form__label woocommerce-form__label-for-checkbox checkbox'),
'input_class' => array('woocommerce-form__input woocommerce-form__input-checkbox input-checkbox'),
'required' => true,
'label' => 'I've read and accept the <a href="https://website.com/privacy-policy">Privacy Policy</a>',
) );
}
add_action( 'woocommerce_checkout_process', 'privacy_checkbox_error_message' );
function privacy_checkbox_error_message() {
if ( ! (int) isset( $_POST['privacy_policy'] ) ) {
wc_add_notice( __( 'You have to agree to our privacy policy in order to proceed' ), 'error' );
}
}
I want to make the checkout button disabled until the user has checked the "I've read and accept the privacy policy.
What would be the best practice of doing this? With jQuery it would be the simplest way, but could it be done directly with php?
php wordpress woocommerce
This can only be done with javascript / jQuery as it's a live event on client side. But it's going to be very complicated as checkout can be refreshed by many delegated JS events that will interact with your code.
– LoicTheAztec
Nov 22 at 1:36
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I've added a checkbox on the checkout page by using this :
add_action( 'woocommerce_review_order_before_submit', 'add_privacy_checkbox', 9 );
function add_privacy_checkbox() {
woocommerce_form_field( 'privacy_policy', array(
'type' => 'checkbox',
'class' => array('form-row privacy'),
'label_class' => array('woocommerce-form__label woocommerce-form__label-for-checkbox checkbox'),
'input_class' => array('woocommerce-form__input woocommerce-form__input-checkbox input-checkbox'),
'required' => true,
'label' => 'I've read and accept the <a href="https://website.com/privacy-policy">Privacy Policy</a>',
) );
}
add_action( 'woocommerce_checkout_process', 'privacy_checkbox_error_message' );
function privacy_checkbox_error_message() {
if ( ! (int) isset( $_POST['privacy_policy'] ) ) {
wc_add_notice( __( 'You have to agree to our privacy policy in order to proceed' ), 'error' );
}
}
I want to make the checkout button disabled until the user has checked the "I've read and accept the privacy policy.
What would be the best practice of doing this? With jQuery it would be the simplest way, but could it be done directly with php?
php wordpress woocommerce
I've added a checkbox on the checkout page by using this :
add_action( 'woocommerce_review_order_before_submit', 'add_privacy_checkbox', 9 );
function add_privacy_checkbox() {
woocommerce_form_field( 'privacy_policy', array(
'type' => 'checkbox',
'class' => array('form-row privacy'),
'label_class' => array('woocommerce-form__label woocommerce-form__label-for-checkbox checkbox'),
'input_class' => array('woocommerce-form__input woocommerce-form__input-checkbox input-checkbox'),
'required' => true,
'label' => 'I've read and accept the <a href="https://website.com/privacy-policy">Privacy Policy</a>',
) );
}
add_action( 'woocommerce_checkout_process', 'privacy_checkbox_error_message' );
function privacy_checkbox_error_message() {
if ( ! (int) isset( $_POST['privacy_policy'] ) ) {
wc_add_notice( __( 'You have to agree to our privacy policy in order to proceed' ), 'error' );
}
}
I want to make the checkout button disabled until the user has checked the "I've read and accept the privacy policy.
What would be the best practice of doing this? With jQuery it would be the simplest way, but could it be done directly with php?
php wordpress woocommerce
php wordpress woocommerce
edited Nov 22 at 1:37
LoicTheAztec
80.7k125993
80.7k125993
asked Nov 21 at 10:33
user3211760
111
111
This can only be done with javascript / jQuery as it's a live event on client side. But it's going to be very complicated as checkout can be refreshed by many delegated JS events that will interact with your code.
– LoicTheAztec
Nov 22 at 1:36
add a comment |
This can only be done with javascript / jQuery as it's a live event on client side. But it's going to be very complicated as checkout can be refreshed by many delegated JS events that will interact with your code.
– LoicTheAztec
Nov 22 at 1:36
This can only be done with javascript / jQuery as it's a live event on client side. But it's going to be very complicated as checkout can be refreshed by many delegated JS events that will interact with your code.
– LoicTheAztec
Nov 22 at 1:36
This can only be done with javascript / jQuery as it's a live event on client side. But it's going to be very complicated as checkout can be refreshed by many delegated JS events that will interact with your code.
– LoicTheAztec
Nov 22 at 1:36
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53410153%2fdisable-place-order-until-user-checks-privacy-policy-in-woocommerce%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
This can only be done with javascript / jQuery as it's a live event on client side. But it's going to be very complicated as checkout can be refreshed by many delegated JS events that will interact with your code.
– LoicTheAztec
Nov 22 at 1:36