I’ve just realised that the yourtube icon in the social media section in the footer of my site is not displaying correctly.
Could you let me know how to fix it please?
I’ve just realised that the yourtube icon in the social media section in the footer of my site is not displaying correctly.
Could you let me know how to fix it please?
Hi Steve,
Thank you for reaching out to us. It seems like you’ve customization in your child theme related to social icons which might be outdated, first try switching to your parent theme and see if this resolves the issue. If it does then go to your child theme’s functions.php file and find a code for youtube icon which looks like this:
if ( $youtube ) : $output .= '<a href="' . $youtube
Replace it with the following line of code:
if ( $youtube ) : $output .= '<a href="' . $youtube . '" class="youtube" title="YouTube" target="_blank"><i class="x-icon-youtube-square" data-x-icon-b="" aria-hidden="true"></i></a>'; endif;
This could also be just a cache issue, clear all caches including browser cache then deactivate your caching plugin and other optimization plugins and see if this resolves the issue.
Let us know how this goes!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.