Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ddksr

    (@ddksr)

    Great!
    We will include the fix in one of our upcoming releases.

    Thank you for helping us solve the issue.
    Best regards,
    Sigi

    Plugin Author ddksr

    (@ddksr)

    Hello Pedro

    we still can’t reproduce your issue. We suspect your server settings, php settings and database settings are not consistent. There is still something you can try.

    Please edit recommendations.php in the plugin directory (line 135) and replace

    $label = $tag_obj['prefix'] . strtolower($label);

    with

    $label = $tag_obj['prefix'] . mb_convert_encoding(strtolower($label), "UTF-8");

    and if it still doesn’t work try also

    $label = $tag_obj['prefix'] . mb_convert_encoding(mb_strtolower($label), "UTF-8");

    Please let us know if it works.

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