• Resolved wtfboy018

    (@wtfboy018)


    Hi,
    Thank you for your plugin, it’s great.

    But I have problem with special characters like “#” and “+”.
    I have books called “C# programing” and “C++ programming” but search doesn’t react when I type in C# or C++ (even I type with small letters). It only works when I type in “C #” or “C ++” (with space between).
    How I can solve that?

    Best regards

Viewing 1 replies (of 1 total)
  • Plugin Author ILLID

    (@mihail-barinov)

    Hi,

    First of all download latest plugin version. For now it is 1.27

    Than add this lines of code somewhere in your theme php files ( usually it is functions.php )

    add_filter( 'aws_special_chars', 'aws_filter_special_chars' );
    
    function aws_filter_special_chars( $chars ) {
        
        $key = array_search('+', $chars);
        unset($chars[$key]);
        
        return $chars;
    }

    That must solve your issue.

Viewing 1 replies (of 1 total)
  • The topic ‘Special characters’ is closed to new replies.