Add this to your themes functions.php:
add_filter('widget_text', 'do_shortcode');
Go to Appearance>Editor>functions.php and add that code at the bottom.
It worked. Thank you so much π
One more question. What if I want to add this shortcode to frontpage – just above the slider. I’ve tried adding this code into frontpage.php but it didn’t work:
<div class="mmy">echo do_shortcode( '[shortcode]' );</div>
Nevermind, I got it. This is what I should have done:
<div class="mmy"><?php echo do_shortcode('[shortcode]'); ?></div>
Are you breaking in and out of php correctly?
<div class="mmy"><?php echo do_shortcode( '[shortcode]' ); ?></div>
You beat me for 20 seconds, see my post above. It was a stupid rookie mistake π
Thanks a lot for your help π