Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #242420

    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!

    #243197

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.