Hi,
Thanks for the prompt response which is a bit more intelligible. You weren't wrong pointing me to a solution, you were wrong in assuming I would understand it. People like myself use CMSs and pay for solutions such as Hikashop because we are not coders. I have sufficient knowledge of html and css to create a rudimentary website but I've never dabbled with php and databases.
Sorry for that. I indeed assumed that you knew how to use PHPMyAdmin. This is often the case for people building websites with Joomla, even when they don't have any coding knowledge. Sorry again.
I have not, to the best of my knowledge, removed FA from my Joomla frontend, nor do I know how one would remove it. For clarity my interpretation of joomla frontend is the website that the public can see and the backend is the administration area that only admins can access. If your meaning is different please educate me.
And I'm not saying you did. I'm saying that if you were to do it, you would loose all the HikaShop icons on the frontend. Its just to say that HikaShop already supports FA. FA has nothing to do with your issue. HikaShop is already compatible with FA.
In my Joomla articles that display on the frontend all the FA icons display properly. It is only in the Hikashop product descriptions that they do not display, I also note that they do not display on this forum.
No, the emoji you provided as example as not FA icons. They are UTF8 emojis as I pointed in my previous message.
Now I have no idea what a database collation is and how one type is different from another so what assurances can you give me that changing it to utf8mb4 will not break something else. This is a concern for me as one of your devs stated 6 years ago that new installations would have utf8mb4 by default, that is how I interpret this "We won't change the encoding during updates but new installation would have the utf8mb4 encoding.", and I wonder why that has not happened.
We were looking into using utf8_mb4 6 years ago. And its because some users had issues with that change that we reverted the change in order to stick with utf8_general_ci.
However, in the vast majority of cases, changing the collation from utf8_general_ci to utf8mb4_general_ci won't create a problem.
If you're worried about the change, make a copy of the hikashop_product table before changing the collation of the table. That way, you can always revert the change if necessary by restoring the original hikashop_product table. However, normally, it shouldn't change anything besides allowing for support of UTF8 4 bytes emojis.
Assuming I decide to follow this advice how do I change the collation, I can access the DB via phpMyAdmin, and more importantly how would I change it back.
To change the collation of the table, you can follow the instructions on this video:
www.youtube.com/watch?v=83kKIvFJX5E
To make a back of the hikashop_product table, you can follow the instructions on this video:
www.youtube.com/watch?v=Q0MR5dhTZgo
Once you change the collation, you don't need to revert it back, unless you find a problem with the change.