Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Suggested Keywords › Reply To: Suggested Keywords
September 11, 2015 at 2:09 pm
#5892
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.