I want to add a snippet to add checkbox to my woocommerce login/register page. Where should i put it i tried my child theme functions.php but the changes are getting reverted. And if i put the code in style.css it shows there are 69 errors so should i try it?
The code
/**
 * @snippet       Add Privacy Policy Checkbox @ WooCommerce My Account Registration Form
 * @how-to        Watch tutorial @ https://businessbloomer.com/?p=19055
 * @sourcecode    https://businessbloomer.com/?p=74128
 * @author        Rodolfo Melogli
 * @testedwith    WooCommerce 3.5.1
 * @donate $9     https://businessbloomer.com/bloomer-armada/
 */
add_action( ‘woocommerce_register_form’, ‘bbloomer_add_registration_privacy_policy’, 11 );
function bbloomer_add_registration_privacy_policy() {
woocommerce_form_field( ‘privacy_policy_reg’, 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 Privacy Policy‘,
));
}
// Show error if user does not tick
add_filter( ‘woocommerce_registration_errors’, ‘bbloomer_validate_privacy_registration’, 10, 3 );
function bbloomer_validate_privacy_registration( $errors, $username, $email ) {
if ( ! is_checkout() ) {
    if ( ! (int) isset( $_POST[‘privacy_policy_reg’] ) ) {
        $errors->add( ‘privacy_policy_reg_error’, __( ‘Privacy Policy consent is required!’, ‘woocommerce’ ) );
    }
}
return $errors;
}