_CreateSelectiveDropdownInput Notices
-
Hello,
Thanks for this great plugin.
We are observing PHP notices on line 223 of classes/Filter.php due to missing query string parameter on our development server.
Changing the line from
, $_GET[$tax_obj->query_var] == $term->slug ? 'selected="selected"' : ''
to
, (isset($_GET[$tax_obj->query_var]) && $_GET[$tax_obj->query_var] == $term->slug) ? 'selected="selected"' : ''
resolves the problem.
Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘_CreateSelectiveDropdownInput Notices’ is closed to new replies.