Hello,
Please how do i make phone number show to logged in users only.
Item.php line 334:
<div class="connect-pre"> <?php if($mobile_found) { ?> <div class="row mob"> <i class="fa fa-phone"></i> <a href="#" class="mobile" data-phone="<?php echo $mobile; ?>" title="<?php echo osc_esc_html(__('Click to show number', 'beta')); ?>"><?php echo substr($mobile, 0, strlen($mobile) - 4) . 'xxxx'; ?></a> </div> <?php } ?> |
to:
<div class="connect-pre">
<?php if($mobile_found) { ?>
<div class="row mob">
<?php if(osc_is_web_user_logged_in()) { ?>
<i class="fa fa-phone"></i>
<a href="#" class="mobile" data-phone="<?php echo $mobile; ?>" title="<?php echo osc_esc_html(__('Click to show number', 'beta')); ?>"><?php echo substr($mobile, 0, strlen($mobile) - 4) . 'xxxx'; ?></a>
<?php } ?>
</div>
<?php } ?>
or something like that, try it