• Resolved gatsman

    (@gatsman)


    Hi, is the search case sensitive?
    I have a strange issue with Greek language where if i search for “ομπρ?λα” (umbrella) it will not show the umbrella items that have in their title “Ομπρ?λα” (Umbrella).
    Even more strange that if i search for “ξ?λινο” (wooden) it will show results that have in the title “Ξ?λινο” (Wooden) so it’s not consistent.
    Any idea what is the problem?

    • This topic was modified 3 weeks, 3 days ago by gatsman.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter gatsman

    (@gatsman)

    I help here?

    Plugin Author ILLID

    (@mihail-barinov)

    Hi,

    Sorry for the long response but it looks like I found how to solve your problem. Please try the following code snippet:

    add_filter( 'aws_pre_normalize_string', 'my_aws_pre_normalize_string' );
    function my_aws_pre_normalize_string( $string ) {
    if ( function_exists( 'mb_strtolower' ) ) {
    $string = mb_strtolower( $string );
    }
    return $string;
    }

    You need to add it somewhere outside the plugins folder. For example, inside functions.php file of your theme or use some plugin for adding code snippets.

    Also, after adding this code, you need to re-index the plugin table.

    Thread Starter gatsman

    (@gatsman)

    Thank you for the reply.
    I added the snippet and cleaned website and AWS cache but still the same ?? no results for “umbrella”

    Thread Starter gatsman

    (@gatsman)

    Eager to apply the fix i missed the most important line “Also, after adding this code, you need to re-index the plugin table.”
    Working fine now!!! thank you

    • This reply was modified 2 weeks, 5 days ago by gatsman.
Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.