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.
- 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.
- 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, 2 days ago by iktmusikene.