March 23, 2016 at 10:49 am
#43699
Theme Horse Support Team
Keymaster
Hi Heidi,
We are sorry for this. If it doesn’t support then it needs code customization. Goto theme folder (ambition-pro) -> inc -> structure -> footer-extension.php on line no 77
you will find below code.
$ambition_footer_info = '<div class="copyright">'.$foot_edit.'</div><!-- .copyright -->';
Remove this code you can add your shortcodes in this way.
$ambition_footer_info .= '<div class="copyright">'.$foot_edit.'</div><!-- .copyright -->';
$ambition_footer_info .= 'Your Shortcode goes here';
Note: If you make a direct changes in the code then while updating to new version all your customized code will be lost. So, you need to do the same customization again and again. So better make a child theme so that while updating to new version, your customized code will not be lost.
Thank you!