Hi,
I’d like to use an entypo icon on a widget title (like the Latest News widget title).
The shortcode doesn’t work, and the html code disappears each time it is entered.
Is there a way to allow shortcodes on the widget title, like there is with the menu?
Cheers and thanks for the support!
Hey Shallnotbe!
Please try to insert this code at the very bottom of enfold/functions.php or the child theme functions.php file:
function widget_title_shortcode($output)
{
return do_shortcode($output);
}
add_filter('widget_title', 'widget_title_shortcode');
Best regards,
Peter