On this search:
https://dev.thebankofcanton.com/meet-the-team/
If you type in “jon parsons” (who doesn’t exist), the results will show a suggestion for “don parsons”, which is a valid page. However, when you click on the name the search bar gets filled in with “don parsons” which aside from being confusing for the user, doesn’t come back with a valid result.
I was able to do some jQuery to fix it:
[code]$(‘.asp_main_container’).on(‘asp_results_show’, function() {
$(‘.asp_keyword’)->each(function() {
$(this).html($(this).html().replace(/ /, ”));
});
});[/code]
I don’t have this code running on there to show you guys the problem. Is this something that could be fixed with a setting or is this something that could be patched in a newer version? I don’t want to have to work around the plugin if I don’t have to.
Thanks