Код: Выделить всё
/*** Add custom field to the checkout page ***/
add_action('woocommerce_after_order_notes', 'custom_checkout_field');
function custom_checkout_field($checkout) {
woocommerce_form_field('billing_phone', array(
'type' => 'number',
'class' => array(
'my-field-class form-row-wide'
),
'label' => __('Phone 2'),
'placeholder' => __(''),
),
$checkout->get_value('billing_phone'));
echo '';
}
[img]https:// i.sstatic.net/rQQpU.png[/img]
настраиваемое поле необходимо добавить под этим полем телефона

что мне нужно изменить здесь, чтобы решить эту проблему. жду ответа...
Подробнее здесь: https://stackoverflow.com/questions/657 ... oocommerce
Мобильная версия