Private: Home › Forums › WordPress Themes › Metropolis – Clean Multipurpose WordPress Theme › Email Link in Header Contact Info › Reply To: Email Link in Header Contact Info
February 19, 2015 at 3:24 am
#2166
Participant
Hello,
Please modify the code at about line 96 in header.php where it says:
<span class="text-dark"><?php _e('E-Mail:', 'pi_framework') ?> </span> <?php echo $header_address ?>
to look like:
<span class="text-dark"><?php _e('E-Mail:', 'pi_framework') ?> </span> <a href="mailto:<?php echo $header_address ?>"><?php echo $header_address ?></a>
Now go to “Appearance -> Theme Options -> General – Address:” and write the desired email address ONLY.
The email should now be hyperlinked.
Robert