• Is it possible to know when the social icon will be updated from Twitter to X in the “Web Page Design > Socials” section? And also when the Bluesky icon will be inserted?

    It’s been reported for over a year that the Twitter/X icon has not been updated… has the theme author decided to abandon its development? It’s been a really long time since the last update and I’m starting to get a little worried…

Viewing 1 replies (of 1 total)
  • I am also waiting for this update. Meanwhile, I want to share my workaround for Twitter/X. Maybe it can be helpful for someone else.

    1. Install the FontAwesome plugin to have the latest icons. Then, go to the plugin configuration/troubleshoot section and scan for conflicts. It will detect the theme’s FontAwesome kit : block it.
    2. You need to add a little JavaScript to change the fa-twitter class to fa-x-twitter in the HTML code. You can add this to your child theme via functions.php or by using a plugin for adding JavaScript.
    document.querySelectorAll('.fa-twitter').forEach(function(element) {
    element.classList.remove('fa-twitter');
    element.classList.add('fa-x-twitter');
    });
    • This reply was modified 3 weeks, 1 day ago by iktmusikene.
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.