Skip to content

Instantly share code, notes, and snippets.

View nazrul-kabir's full-sized avatar
🎯
Focusing

Nazrul Kabir nazrul-kabir

🎯
Focusing
View GitHub Profile
@nazrul-kabir
nazrul-kabir / functions.php
Last active February 26, 2021 14:30 — forked from voboghure-dev/functions.php
Add a checkbox in checkout page for customer whether wants to be a member & send customer details to admin email
/**
* ADD BECOME MEMBER CHECKBOX AT CHECKOUT PAGE FOR CUSTOMER
*/
function tkd_add_checkout_checkbox() {
woocommerce_form_field( 'checkout-checkbox', array( // CSS ID
'type' => 'checkbox',
'class' => array('form-row mycheckbox'), // CSS Class
'label_class' => array('woocommerce-form__label woocommerce-form__label-for-checkbox checkbox'),
'input_class' => array('woocommerce-form__input woocommerce-form__input-checkbox input-checkbox'),