Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › user livefr codecanyon
This topic contains 11 replies, has 2 voices, and was last updated by Ernest Marcinko 3 years, 9 months ago.
- AuthorPosts
- March 3, 2020 at 1:51 pm #26109
Hello, thanks for answering. Could you tell me where I can apply these changes?
1) I also need to know how I can get this design when searching my page, since with its search engine the design changes:
As you can see, the design changes and I like the first one because it shows the brand and its more flexible design
-
This topic was modified 3 years, 9 months ago by
livefr57.
March 3, 2020 at 5:17 pm #26119Hi!
I think the issue is, that the search redirection is not set to the WooCommerce results page. Make sure to change that under the Magnifier and Return events. That will resolve the issue 🙂
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
March 4, 2020 at 1:21 pm #26134You cannot access this content.March 4, 2020 at 4:29 pm #26135You cannot access this content.March 4, 2020 at 4:45 pm #26137Hi,
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!
Best,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; }
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
March 5, 2020 at 8:38 am #26144You cannot access this content.March 5, 2020 at 4:06 pm #26147You cannot access this content.March 5, 2020 at 5:20 pm #26151Hi,
This is a ticket, you can mark each reply that you want to have private with the “Set as private reply” checkbox. All server related details in your first post are also private, not visible to anyone.
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
March 6, 2020 at 8:41 am #26154You cannot access this content.March 6, 2020 at 5:16 pm #26163You cannot access this content. Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
March 7, 2020 at 9:32 am #26167You cannot access this content.March 7, 2020 at 2:38 pm #26168You cannot access this content. Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
-
This topic was modified 3 years, 9 months ago by
- AuthorPosts
You must be logged in to reply to this topic.