Tak u? jsem zjistil, ?ím, to je. Dělá to funkce, která skryvá některá pole v registraci. Po odebrání této funkce v?e funguje. Tak jenom kdyby to někdo ?e?il ??
add_filter( 'woocommerce_checkout_fields' , 'avada_remove_checkout_fields' );
function avada_remove_checkout_fields( $fields ) {
unset($fields['billing']['billing_address_2']);
unset($fields['billing']['billing_country']);
unset($fields['billing']['billing_state']);
return $fields;
}