Move legal checkboxes right before order submit button (Germanized > 2.X)
<?php | |
add_action( 'init', 'my_child_move_legal_checkboxes', 50 ); | |
function my_child_move_legal_checkboxes() { | |
// Remove | |
remove_action( 'woocommerce_review_order_after_payment', 'woocommerce_gzd_template_render_checkout_checkboxes', 10 ); | |
// Readd before submit button | |
add_action( 'woocommerce_gzd_review_order_before_submit', 'woocommerce_gzd_template_render_checkout_checkboxes', 10 ); | |
} |
This comment has been minimized.
This comment has been minimized.
Hi there, you might need to check your theme - I've tested the snippet with Storefront and couldn't reproduce the problem. Cheers |
This comment has been minimized.
This comment has been minimized.
@vendidero Thanks a million. Works like a sharm. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Hi there, just tested with the latest Storefront version - works like a charm. Are you using a child theme? Did you add the snippet to your child theme's functions.php? Did you try to deactivate one plugin after another to make sure that no compatibility issues happen here? Cheers |
This comment has been minimized.
This comment has been minimized.
Thank you, I got it to work like this:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Hi,
I added the function into Snippet, but now the checkbox is displayed twice.