Favicons no longer working

just updated pro and the favicons are no longer working for this site on the top bar

<div class="topbar-phone"><span><i class="x-icon-phone"></i> <a href="tel:0267784631">(02) 6778 4631</a> |  <a href="http://horseriding.com.au/contact-us"><i class="x-icon-envelope"></i></a>
<a href="https://www.facebook.com/harlowpark/" target="_blank"> <img src="/wp-content/uploads/2017/01/square-facebook-512.png" width="18"></a>  <a href="https://www.tripadvisor.com.au/Hotel_Review-g504270-d1113081-Reviews-Harlow_Park_Horse_Riding-Uralla_New_South_Wales.html" target="_blank"><img src="/wp-content/uploads/2017/01/Apps-Tripadvisor-icon.png" width="20"></a></div>

does X-icon-phone no longerwork ?

Hi @wicara,

That you can do it to enable the usage of shortcode in the Topbar so that you can make use of the icon shortcode and place it in the topbar.

To do that, Please install and activate the child theme and login through FTP then edit the functions.php then add this code:

add_filter('x_option_x_topbar_content', 'top_bar_content_shortcode');
function top_bar_content_shortcode ( $content ) {
    return do_shortcode ( $content );
}

Then use the phone icon shortcode in the topbar:

 [x_icon type="phone"]

Here are the list of icon shortcodes:

http://demo.theme.co/integrity-1/shortcodes/icons/

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.