• Resolved mdxclr

    (@mdxclr)


    Hey,
    Your plugin is great, but doesn’t work properly with plugin:
    https://codecanyon.net/item/woocommerce-product-filter/8514038

    After changing any of filter – I’ve got redirect from /sale/ to /shop/ page and ‘Adoptive filter’ (to show only available filter from queried products) doesn’t work – always is showed all available filters.
    I understand, that it is 3rd part plugin, but will be great if is possible to fix that.

    Also, was a problem if I use any of filter – sale query broke. So I’ve fix by adding in /lib/js/prdctfltr_main.js
    if ( obj.find('.prdctfltr_buttons input[name="sale_products"]:checked').length > 0 ) {
    to
    if ( obj.find('.prdctfltr_buttons input[name="sale_products"]:checked').length > 0 || $('body').hasClass('woocommerce-onsale') ) {

    And add in functions.php:

    function onsale_body_class( $classes ) {
    	global $wp_query;
    	if (isset($wp_query->is_sale_page) && $wp_query->is_sale_page) {
    		$classes[] = 'woocommerce-onsale';
    	}
    	return $classes;
    }
    add_filter('body_class', 'onsale_body_class');
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author wpgenie2

    (@wpgenie2)

    Hi,

    we noticed some incompatibilities with WOOF and our premium plugins too, tried to get in touch with author to sort those issues but we were unable. So don’t know what to do other that you try to reach WOOF support and see if they can do something.

    Thread Starter mdxclr

    (@mdxclr)

    Hi,
    But it’s not a WOOF, and it’s one of most selling plugin.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Doesn’t work properly with Product Filter plg’ is closed to new replies.