• Resolved evilcat

    (@evilcat)


    Plugin gets broken in new WordPress version — no taxonomies are shown in search form when using radio, checkbox or multiselect. Tested on several instances of WP before and after updating… I really look forward to start using Serch & Filter and hope that this issue will soon be resolved ??

    https://www.ads-software.com/plugins/search-filter/

Viewing 11 replies - 1 through 11 (of 11 total)
  • I’m also seeing this

    It seems the “select” type is still working. “checkbox” won’t show.

    As of now the only replacement I can find is “Ultimate WP Query Search Filter”. GUI instead of shortcode, and not 100% the same functionality like S&F.

    Hopefully the S&F can be back soon. Nice plugin actually.

    https://www.ads-software.com/plugins/ultimate-wp-query-search-filter/

    I did a littlebit of digging and there doenst seem to be a simple fix, the wp_list_categories function doenst seem to be accepting any custom parameters anymore. ‘name’ is being added for the plugin to work properly. Removing brings back the checkboxes but seems to break the Tax walker and so the filtering function.

    If you want to debug yourself:

    Add unset($args[‘name’]); to line 1699 in search-filter.php

    $args['walker'] = new Taxonomy_Walker($type, $args['name']);
    
    unset($args['name']);
    
    $output = wp_list_categories($args);

    Next I changed line 138 in of-taxonomy-walker.php

    from:

    $link = "<label><input type='".$this->type."' name='".$name."[]' value='".$cat_id."'".$checked." /> ".$cat_name;

    to:

    $link = "<label><input type='".$this->type."' name='".$this->defaults."[]' value='".$cat_id."'".$checked." /> ".$cat_name;

    This brings back filtering on multiple fields but still does not support checking multiple checkboxes on 1 field.

    Hope it helps someone debugging further!

    Plugin Author DesignsAndCode

    (@designsandcode)

    This is getting worked on right now ?? Should be up an running again in next couple of days – martijnn94 is correct.

    Thanks

    Goodo ??

    Plugin Author DesignsAndCode

    (@designsandcode)

    I actually thought S&F free was also not working, but I’ve just tested and seems to be fine,

    Can you all confirm if you are using free or pro??

    Thanks

    – EDIt my bad, regular selects seem to work, other field types don’t…

    Plugin Author DesignsAndCode

    (@designsandcode)

    Update available ??

    Great, back to normal now, thanks for the update.

    I’m having the same issue but I’m using the pro plugin (version 1.4.3). No taxonomies are shown when using radio, checkbox or multiselect. This happened after updating to WordPress 4.2

    Plugin Author DesignsAndCode

    (@designsandcode)

    Hey Breon, as mentioned in both this version and pro, a patch has been applied to get these working again – if you’re still having issue theres likely something else at play.

    Can you open a ticket on the pro support forums? (we don’t check these as often)

    https://www.designsandcode.com/forums/forum/search-filter-pro/

    Thanks

    Thread Starter evilcat

    (@evilcat)

    Everything works now. Thank you!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Does not work in new WP 4.2’ is closed to new replies.