Hi,
I got the issue, It was a mistake on my code, You just update the ‘header.php’ code
Old code => `<?php if(of_get_option(’email_id’)): ?>
<span><i class=”fa fa-envelope”></i> <a href=”<?php echo of_get_option(’email_id’); ?>” target=”_blank”><?php echo of_get_option(’email_id’); ?></a></span>
<?php endif; ?>`
Updated Code => `<?php if(of_get_option(’email_id’)): ?>
<span><i class=”fa fa-envelope”></i> <a href=”mailto:<?php echo of_get_option(’email_id’); ?>” target=”_blank”><?php echo of_get_option(’email_id’); ?></a></span>
<?php endif; ?>`
I have missed to add ‘mailto’ before the email id.
"mailto:<?php echo of_get_option('email_id'); ?>"
I will update the code on second version release. For now you just update your theme.
Thanks again for use Ascent theme.