HI marcella1
1 - Not sure which module are you referring to
2 - To change the link to phone number, you can open the file:
/templates/ja_morgan/acm/hero/tmpl/style-1.php
Look for this code - line 53:
<?php if($helper->get('btn-title')) : ?>
<div class="btn-action">
<?php for ($i=0; $i < $count; $i++) :?>
<a class="btn btn-<?php echo $helper->get('btn-type', $i); ?>" href="<?php echo $helper->get('btn-link', $i); ?>"><?php echo $helper->get('btn-title', $i) ?> <span class="icon ion-ios-arrow-round-forward"></span>
</a>
<?php endfor; ?>
</div>
<?php endif ; ?>
change it to:
<?php if($helper->get('btn-title')) : ?>
<div class="btn-action">
<?php for ($i=0; $i < $count; $i++) :?>
<a class="btn btn-<?php echo $helper->get('btn-type', $i); ?>" href="tel:+<?php echo $helper->get('btn-title', $i); ?>"><?php echo $helper->get('btn-title', $i) ?> <span class="icon ion-ios-arrow-round-forward"></span>
</a>
<?php endfor; ?>
</div>
<?php endif ; ?>