Instead of creating a link to the Contact Us page, the contact us
link is instead removed for each respective location if it has no
email address derived from glm client info.
<br>
<?php if (glm_get_clientinfo_option('email')) :?>
<a class="mail_1 location-mail" href="mailto:<?php echo glm_get_clientinfo_option('email'); ?>">Contact Us</a>
- <?php else:?>
- <a class="mail location-mail" href="<?php echo get_permalink(86);?>">Contact Us</a>
<?php endif;?>
</div>
<div class="location_2 address-container medium-6 columns">
<br>
<?php if (glm_get_clientinfo_option('email2')) :?>
<a class="mail_2 location-mail" href="mailto:<?php echo glm_get_clientinfo_option('email2'); ?>">Contact Us</a>
- <?php else:?>
- <a class="mail location-mail" href="<?php echo get_permalink(86);?>">Contact Us</a>
<?php endif;?>
</div>
<?php endif;?>