Support

Account

Home Forums General Issues How to print email link so it's active Reply To: How to print email link so it's active

  • Try this:

    <?php $email = get_field('contact_email'); ?>
      <td>
       <i class="fa fa-envelope"></i>
        <a href="mailto:<?php echo $email; ?>" rel="nofollow" title="Email me"><?php echo $email; ?></a><br />
      </td>

    🙂