01/07/2014 at 4:16 pm
#276596
Guest
Thanks for your response, I finally could make it work!
This is what I did:
// CHANGE THIS: $terms = ‘+’ . implode( ‘ +’ , $atts[‘terms’] );
WITH THIS:
$terms = ‘+”‘ . implode( ‘ +’ , $atts[‘terms’] ) . ‘”‘;
This will put the search phrase in (” “) like this: “search phrase” and will work fine even with one or two letter word like: “notaria 62”, thanks! -Ana Maria