Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Steve Ballard

Forum Replies Created

Viewing 9 posts - 21 through 29 (of 29 total)
  • Steve Ballard in reply to:
    Woocommerce price filter
    #136325

    Hi okay. Today you have been talking to Dan, I’m not available tomorrow so Steve is going to be taking over from 1pm UK time. Thanks

    Steve Ballard in reply to:
    Woocommerce price filter
    #136309

    Okay I’ve added in the taxonomy field but now the filters aren’t working at all.

    Steve Ballard in reply to:
    Woocommerce price filter
    #136298

    Sorry, I don’t understand – how do you get the product-category in the form?

    Just to clarify again (in case we’re at a different understanding) I never had this issue with the previous version of the plugin – this has come about since installing the beta one.

    Steve Ballard in reply to:
    Woocommerce price filter
    #136277
    This reply has been marked as private.
    Steve Ballard in reply to:
    Woocommerce price filter
    #136266

    Still getting both problems on my end, what’s it doing for you?

    It looks to me like when you select an attribute to filter by it changes the URL to /shop and filters there, instead of filtering the product category it was on.

    Just to clarify, this is a new issue that come with installing the new version of search and filter pro. The original issue was the price slider not showing the prices available to the current category (it was showing from lowest to highest on the whole store inside washing machines for example)

    Steve Ballard in reply to:
    Woocommerce price filter
    #136238
    This reply has been marked as private.
    Steve Ballard in reply to:
    Woocommerce price filter
    #136138
    This reply has been marked as private.
    Steve Ballard in reply to:
    Woocommerce price filter
    #136105

    Hi,

    I’ve just tried to update it by doing the following (please let me know if I’ve done anything wrong):

    • downloaded and extracted plugin from google drive link you provided
    • deleted /wp-content/plugins/search-filter-pro
    • uploaded new search-filter-pro folder (not zip) to /wp-content/plugins

    Unfortunately the price slider is still doing the same thing.

    The only change I can see it has made is that the filters are now not relevant to the product category they are on. It shows my “colour” attribute for example, but if I click one of the colours inside “washing machines” it will bring back a kettle now (or anything that is that colour).

    The only thing I done after I noticed this happening is click the “rebuild cache” button, which didn’t seem to change anything. I’ve not changed any settings.

    Steve Ballard in reply to:
    How to get jQuery to run when ajax auto update runs
    #131007

    Exactly what I needed, thank you!!

    Here’s my final code for anyone else with the same idea:

    	
    jQuery(document).ready(function(){
    	search_filter_clean();
    });
    
    jQuery(document).on("sf:ajaxfinish", ".searchandfilter", function(){
    	search_filter_clean();
    });
    
    function search_filter_clean() {
    	jQuery('.searchandfilter > ul > li').each(function() {
    		if(jQuery(this).find('ul').length > 0 ) { // if you find a ul
    				if(!jQuery(this).find('li').length > 0 ) { // if it doesnt have an li...
    					jQuery(this).hide();
    				}
    		}
    	});
    }

    Thanks Trevor.

Viewing 9 posts - 21 through 29 (of 29 total)