Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Contributor Tracy Levesque

    (@liljimmi)

    🏳️‍🌈 YIKES, Inc. Co-Owner

    Hi dpcdpc11,

    Thank you for bringing this to our attention. We were able to reproduce the problem.

    Evan will get back to you with a fix as soon as he can.

    Thank you!
    -Tracy

    Thread Starter dpcdpc11

    (@dpcdpc11)

    Awesome… waiting for the fix!

    Plugin Author Evan Herman

    (@eherman24)

    HI dpcdpc11,

    The issue is actually related to your specific WordPress install. I just tested a my localhost install on my end, and I ran into the issue as well.

    Inside of wp_config.php, you’ll find a line of code that controls the character set for the data that gets stored in the database. By default, the database is set to utf8.

    https://codex.wordpress.org/Editing_wp-config.php#Database_character_set

    /** Database Charset to use in creating database tables. */
    define('DB_CHARSET', 'utf8');

    In my testing, commenting out the above line inside of wp_config.php seemed to resolve the issue on my end, and I was able to save the latin text you provided above.

    How to resolve:
    1) Locate wp_config.php located in the root of your WordPress install
    2) Open that file up, and locate the line similar to:

    /** Database Charset to use in creating database tables. */
    define('DB_CHARSET', 'utf8');

    3) Comment out the above line, by changing it to:

    /** Database Charset to use in creating database tables. */
    // define('DB_CHARSET', 'utf8');

    4) Save the file, and re-test

    Please, let us know if that helps resolve things on your end. Things seemed to work well on mine after some testing. IF things work out well, I’ll put together a knowledge base article for future users who may run into this issue.

    Thanks,
    Evan

    Thread Starter dpcdpc11

    (@dpcdpc11)

    Nope… not a solution my friend! Messing with the wp-config.php to make a plugin work is never a solution!

    The primary language of my site is Romanian so my wp-config has the correct Charset:
    define('DB_CHARSET', 'utf8mb4');

    If I comment out this line then every latin-ext character in my website gets converted to ‘?’, which is a mess!
    The problem is the way your plugins saves the settings to the db since your plugin is the only one that has this issue!
    Try testing this in your test site. Leave the Charset setting uncommented and change the site language to Romanian. Now try fixing the problem.

    Waiting for a better solution! Ask some other wp plugin dev or something cause from my experience your plugin is the first one to present this problem.

    Plugin Author Evan Herman

    (@eherman24)

    Thanks. Will have to take a closer look when I have time. In the meantime, there is no fix. I am going to close out this issue as we’ve added it to a ‘to do’ for future releases.

    https://github.com/yikesinc/yikes-inc-easy-mailchimp-extender/issues/353

    Thanks,
    Evan

    Plugin Contributor Tracy Levesque

    (@liljimmi)

    🏳️‍🌈 YIKES, Inc. Co-Owner

    Hi there.

    Fix for this being pushed out soon.

    Thank you!
    -Tracy

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Latin-ext characters in the description’ is closed to new replies.