<!-- CONTACT SELLER OPTIONS - DESKTOP VIEW -->
<div class="non-resp is1200">
<!-- CLICK TO CALL BUTTON -->
<?php
$mobile = '';
if($mobile == '') { $mobile = osc_item_city_area(); }
if($mobile == '' && osc_item_user_id() <> 0) { $mobile = $item_user['s_phone_mobile']; }
if($mobile == '' && osc_item_user_id() <> 0) { $mobile = $item_user['s_phone_land']; }
if($mobile == '') { $mobile = __('No phone number', 'zara'); }
?>
<a class="phone-show tr1" href="#" rel="<?php echo $mobile; ?>" title="<?php echo osc_esc_html(__('Click to show phone number', 'zara')); ?>">
<div class="left tr1">
<i class="fa fa-mobile"></i>
</div>
<div class="right">
<span class="top tr1" rel=" - <?php _e('click to call', 'zara'); ?> -">- <?php echo $mobile == __('No phone number', 'zara') ? '- - -' : __('click to show', 'zara'); ?> -</span>
<span class="bottom tr1">
<?php
if(strlen($mobile) > 3 and $mobile <> __('No phone number', 'zara')) {
echo substr($mobile, 0, strlen($mobile) - 3) . 'XXX';
} else {
echo $mobile;
}
?>
</span>
</div>
</a>