claudiosanches / woocommerce-extra-checkout-fields-for-brazil

Brazilian Market on WooCommerce - WordPress Plugin.

Home Page:http://wordpress.org/plugins/woocommerce-extra-checkout-fields-for-brazil/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Numero de celular

wellinton6919 opened this issue · comments

Quero deixar o numero de celular obrigatorio

Adiciona isso no function.php

add_filter( 'woocommerce_checkout_fields', 'celularObrigatorio' );
function celularObrigatorio( $fields ) {
    $fields['billing']['billing_cellphone']['required'] = true;
    return $fields;
}