Login/Register – Privacy Policy Position
-
Could you tell me where I can change the layout of the register form so that the privacy policy text is below the the register button please? Please see screenshot
Attachments:
You must be
logged in to view attached files.
Hello,
You need to add this code to the functions.php of the child theme:
function woodmart_change_registration_privacy_policy_text_position(){
remove_action( 'woocommerce_register_form', 'wc_registration_privacy_policy_text', 20 );
add_action( 'woocommerce_register_form_end', 'wc_registration_privacy_policy_text', 20 );
}
add_action( 'init', 'woodmart_change_registration_privacy_policy_text_position' );
Best Regards