Hi @cookiex
Typically, this depends on which collation you’ve got in your database. So the plugin creates a query that may include instructions about by which field to sort things, but it’s the database that does the heavy lifting in this.
So, google for how to convert the relevant tables to the correct collation. It’s doable, but isn’t totally straightforward. (For instance, if you just change the setting for the whole database, then that will only affect the default values next time you create a new table.)
You’re going to want a collation that includes the keyword “Swedish”. Like UTF8MB4_Swedish_cli… give or take. I didn’t double-check right now.
Hi @tobifjellner,
Thanks for your response to @cookiex. Hope you had a great WordCamp US. A lot of love & respect from PressTigers side.
@cookiex hope you got the answers to your question now. You can define the collation in the wp-config.php file and manage the things accordingly.
Best Regards,
Thanks to the both of you. I tried the database way with no luck. Going to have a look at the wp-config later today to see if I can make sense of it.
I’ll update this thread later either way.
Nevermind, finally fixed it! Thank you.