<span class="select">ВЫБЕРИТЕ СВОЙ РАЙОН</span>
<ul class="selec_list">
<?php
// check if the repeater field has rows of data
if( have_rows('street') ):?>
<?php while ( have_rows('street') ) : the_row();?>
<li class="list_s"><span class="title"><?php the_sub_field('st') ?></span>
<div class="content_street_list">
<?php
// check if the repeater field has rows of data
if( have_rows('contacts_st') ):?>
<?php while ( have_rows('contacts_st') ) : the_row();?>
<div class="arcs">
<span class="list_street"><?php the_sub_field('streets') ?></span>
<div class="other_info">
<div class="phone_st"><?php the_sub_field('phone') ?></div>
<div class="primetime"><?php the_sub_field('time') ?></div>
</div>
</div>
<?php endwhile;?>
<?endif;?>
</div>
</li>
<?php endwhile;?>
<?endif;?>
</ul>
<div class="contact_street_ready"></div>
<div class="billing_novaya_styler">
<ul class="list_punkt">
<li class="">Выберите отделение</li>
<li class="active">Відділення №1: вул. Польова, 67</li>
<li>Відділення №2 (до 30 кг на одне місце): просп. Московський, 54а</li>
<li>Відділення №3: вул. Тюрінська (ран. Якіра), 124 </li>
<li>Відділення №4: вул. Достоєвського, 5</li><li>Відділення №5: пл. Ю. Кононенка, 1а (Автобазар "Лоск", приміщення "Приват Банку")</li>
<li>Відділення №6: вул. Академіка Павлова, 120</li>
<li>Відділення №7 (до 30 кг на одне місце): просп. Перемоги, 46-а</li>
<li>Відділення №8 (до 30 кг): вул. Малогончарівська, 28/30 </li><li>Відділення №9 (до 30 кг): вул. Роганська, 101а</li>
</ul>
</div>
// Hook into the admin footer
add_action( 'show_user_profile', 'remove_user_fields' );
add_action( 'edit_user_profile', 'remove_user_fields' );
function remove_user_fields($user){
?>
<script type="text/javascript">
jQuery(document).ready( function($) {
// the following IDs are the input elements of the unneeded fields
var classes = ['.user-description-wrap']; // User bio
for (var i = 0; i < classes.length; i++) {
$(classes[i]).closest('.form-table').prev('h2').remove();
$(classes[i]).closest('.form-table').remove();
}
});
</script>
<?php
}
$('.all-animators').on('click', function(){
$('.modal-animators__list').removeClass('is-active');
$('.form-for-animators').addClass('is-active');
$('.icon').clone().appendTo('.align-left.img-animators');
});