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.
I am new to this and don’t understand your response. I installed Ascent and get errors like the one reported earlier. To the previous user you suggested he update his framework option:
https://github.com/devinsays/options-framework-theme
I don’t know what to do with this. Please provide clear instructions on how to use your theme. I have uninstalled it from file manager. Should I reinstall? What do i need to do before reinstalling?
Thanks for your help!
Andrew
Hi Andrew,
Step to fix the issue.
– First download the Option Framework theme plugin from Github
– Extract the Zip file
– Copy all files from inc directory and Paste these files to your ‘Ascent’ theme inside options-framework
cp /options-framework-theme-master/inc/* /ascent/options-framework
– Then install the theme
Hi,
I have updated the theme with fix the issues. Now you can download use this theme here.
https://themes.trac.ww.wp.xz.cn/ticket/23185
That fixed it, thanks… I only updated the code. Is there a list of fixes for the update you listed?