Заменить на
<input id="s_phone_mobile" type="text" name="s_phone_mobile" value="" required>
Добрый день!
Хочу тоже самое сделать для полей Регион и город
Подскажите, как корректно заменить код?
<?php if(osc_get_preference('item-post', 'violet') == 'countries'){ ?>
<div class="inp-group">
<h4 class="inp-group__title"><?php _e('Country', 'violet'); ?></h4>
<?php ItemForm::country_select(osc_get_countries(), osc_user()); ?>
</div>
<?php } ?>
<?php if(osc_get_preference('item-post-loc', 'violet') == 'enable'){ ?>
<div class="inp-group">
<div class="input-row">
<div class="input-col">
<h4 class="inp-group__title"><?php _e('Region', 'violet'); ?></h4>
<?php ItemForm::region_select(osc_get_regions(), osc_user()) ; ?>
</div>
<div class="input-col">
<h4 class="inp-group__title"><?php _e('City', 'violet'); ?></h4>
<?php ItemForm::city_select(osc_get_cities(osc_user_region()), osc_user()) ; ?>
</div>
</div></div>