This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: user livefr codecanyon

#26137
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

In that case, if you want to remove the spaces anyway, then I recommend using a custom code.

Try adding this custom code to the functions.php in your theme/child theme directory. Before editing, please make sure to have a full site back-up just in case!

add_filter('asp_search_phrase_before_cleaning', 'asp_replace_characters', 10, 1);
add_filter('asp_query_args', 'asp_replace_characters', 10, 1);

function asp_replace_characters( $s ) {
  $characters = " "; // Type characters one after another
  $replace_with = '';     // Replace them with this (space by default)

  if ( is_array($s) ) {
    if ( isset($s['s']) && !$s['_ajax_search'] ) 
      $s['s'] = str_replace(str_split($characters), $replace_with, $s['s']);      
  } else {
    $s = str_replace(str_split($characters), $replace_with, $s);
  }

  return $s; 
}