I have a checkbox function that I'm using for my search query. My problem is the url created when I search.
?ct_zipcode=&ct_event_type=birthday&ct_event_type=photovideo-shoot&Venue-search=true
When I have multiple taxonomy_names checked I only get the last slug in my search results.
I need my url to be rewritten like:
?ct_zipcode=&ct_event_type=birthday%2Cphotovideo-shoot&Venue-search=true
Is there an easy way to change my url with rewrite? I've tried a little str_replace
/ preg_replace
with no luck.