Icon shortcodes in topbar

I can’t get the icon shortcodes to work in the topbar. Please advise.

Hello @kstidham,

Thanks for asking. :slight_smile:

This will require template change, so I suggest you to please install and setup child theme before making any changes. I am sharing few resources that you can use download and setup child theme.

https://theme.co/apex/child-themes

After that please add following code in child theme function.php file:

add_filter('x_option_x_topbar_content', 'top_bar_content_shortcode');

function top_bar_content_shortcode ( $content ) {
    return do_shortcode ( $content );
}

After that you can add the shortcodes in X/Pro > Header > Miscellaneous > Topbar > Topbar Content.

Thanks.

Prasant you are the master! Thank you sir.