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

Reply To: Suggested Keywords

#5892
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

It’s kind of hard-coded, but a simple 1 line modification to the code will help.

Open up the /wp-content/plugins/ajax-search-pro/includes/views/asp.shortcode.php via FTP and go to line 51, where you should see this:

[code]$s_phrases = str_replace(array(‘ ,’, ‘ , ‘, ‘, ‘, ‘ ,’), ‘</a>, <a href="#">’, $style[‘frontend_suggestions_keywords’]);[/code]

change that line to:

[code]$s_phrases = str_replace(array(‘ ,’, ‘ , ‘, ‘, ‘, ‘ ,’), ‘</a> <a href="#">’, $style[‘frontend_suggestions_keywords’]);[/code]

That should do the trick.