Some icons missing after update to X 6.2.5

Hi there,
Some icons are missing :

    <i class="x-icon x-icon-youtube" data-icon=""></i>
    <i class="x-icon x-icon-envelope-o" data-icon=""></i> 

and some display ok

<i class="x-icon x-icon-phone" data-icon=""></i>
        <i class="x-icon x-icon-home" data-x-icon=""></i>

Hi there,

This could happen if your site has icon markup that you added directly rather than using our icon shortcode. As of Font Awesome version 5 they split icons into multiple fonts. This can be fixed by changing instances of the data-x-icon attribute to one of the following:

data-x-icon-b for social icons.
data-x-icon-o for outline icons.
data-x-icon-s for solid icons.

The original attribute data-x-icon will still work for solid icons as a fallback but we’ve updated everything for consistency.

Please update the file you have added to the functions.php and change data-x-icon to data-x-icon-b.

Hope this helps.

Thanks for that. This seems to work :

<i class="x-icon-facebook-square" data-x-icon-b="&#xf082;"></i>
<i class="x-icon x-icon-linkedin" data-x-icon-b="&#xf08c;"></i>

Glad to hear it’s sorted. :slight_smile:

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