@rooman
If you don't want to show users phone just delete this part in item.php
<?php if($user_phone_mobile_data['found']) { ?>
<a class="phone-mobile phone <?php echo $user_phone_mobile_data['class']; ?>" title="<?php echo osc_esc_html($user_phone_mobile_data['title']); ?>" data-prefix="tel" href="<?php echo $user_phone_mobile_data['url']; ?>" data-part1="<?php echo osc_esc_html($user_phone_mobile_data['part1']); ?>" data-part2="<?php echo osc_esc_html($user_phone_mobile_data['part2']); ?>">
<i class="fas fa-phone-alt"></i>
<span><?php echo $user_phone_mobile_data['masked']; ?></span>
</a>
<?php } ?>
<?php if($user_phone_land_data['found']) { ?>
<a class="phone-land phone <?php echo $user_phone_land_data['class']; ?>" title="<?php echo osc_esc_html($user_phone_land_data['title']); ?>" data-prefix="tel" href="<?php echo $user_phone_land_data['url']; ?>" data-part1="<?php echo osc_esc_html($user_phone_land_data['part1']); ?>" data-part2="<?php echo osc_esc_html($user_phone_land_data['part2']); ?>">
<i class="fas fa-phone-alt"></i>
<span><?php echo $user_phone_land_data['masked']; ?></span>
</a>
<?php } ?>