April 12, 2016 at 11:01 am
#44214
Theme Horse Support Team
Keymaster
Hi shegga,
Yes you can do one thing. Install this plugin Email Address Encoder from WordPress directory.
Doing it you go to theme folder -> inc -> structure -> header-extension.php on line no 173 you will find below code
$interface_footer_infoblog .= is_email($options[ 'social_email'] );
Replae above code with this code
$interface_footer_infoblog .= eae_encode_str( is_email($options[ 'social_email'] ) );
Note: We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost. So better make child theme and first unhook the functions and the edit the code.
Thank you!