Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › We would like to pay for customization › Reply To: We would like to pay for customization
February 3, 2016 at 7:45 pm
#7591
Hi,
I got the exact same results on every mobile device as on my desktop, it must have been only a caching issue.
There is no option to not have a default category value, but you can change 1 line of code to reset it.
For categories:
Open wp-content\plugins\ajax-search-pro\includes\views\asp.shortcode.categories_terms.php and go to line 94, there should be this:
$selected = $cat->term_id == $style['default_category_selected'];
change it to
$selected = false;
For tags:
Open wp-content\plugins\ajax-search-pro\includes\views\asp.shortcode.post_tags.php and go to line 93, there should be this:
<?php echo in_array($_sftag->term_id, $_sel_tags) || $k == 0 ? ' checked="checked"' : '' ; ?>>
change that to simply:
>
That should do the trick.
Best,Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)



