• WooCommerce version: 6.7.0
    WordPress version: 6.0.1
    PHP version: 7.4.30
    WooCommerce database version: 6.7.0
    Parent theme name: Flatsome
    Parent theme version: 3.15.7

    Filter disappearing if i am seleing
    AJAX : Load deferred

    Currently set: (Filter fields appeared but filter not giving any results, When we select the filter item hit the filter button it just refreshing the page)
    on; Use ajax
    Ajax Strategy: Woocommerce content

    Tired: but still no result on filter selection.
    WooCommerce to rebuild its product lookup tables. You can do this by visiting WooCommerce > Status > Tools and clicking ‘Regenerate’ for the Product lookup tables tool.

    Product attributes lookup table
    Enable table usage (off) Enable table usage Use the product attributes lookup table for catalog filtering.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter marahman.b2b

    (@marahmanb2b)

    Version:3.7, having issue.

    I replaced Version:3.7 with Version 3.6.2 things are back to normal all functions working well.

    Plugin Author Premmerce

    (@premmerce)

    Hi @marahmanb2b could you drop us a message via https://premmerce.com/contact-us/ so we can help troubleshoot please

    I have the same problem

    I have the same issue, the moment I updated to v3.7
    Could you please advice for a solution?

    I had same issue, here’s how I fixed it.

    My register sidebar function had “aside” blocks in before and after widget:

    register_sidebar(
    	array(
    		'id' => 'products_filter',
    		'name' => 'Filter',
    		'description' => 'A place for filters.',
    		'before_widget' => '<aside id="%1$s" class="%2$s">',
    		'after_widget' => '</aside>',
    		'before_title' => '<header><h4>',
    		'after_title' => '</h4></header>'
    	)
    );

    What I made, is just changed aside blocks to div and everything is working now:

    register_sidebar(
    	array(
    		'id' => 'products_filter',
    		'name' => 'Filter',
    		'description' => 'A place for filters.',
    		'before_widget' => '<div id="%1$s" class="%2$s">',
    		'after_widget' => '</div>',
    		'before_title' => '<div>',
    		'after_title' => '</div>'
    	)
    );
    Plugin Support Mark Kevin

    (@mkesteban08)

    Hi @komarovski ,

    Thank you very much for letting us know about this, and for providing your fix regarding this issue. Indeed, it looks like this is due to the fact that Flatsome still uses the old widget system for WordPress.

    In such cases you may proceed in using the available shortcodes instead:
    [premmerce_filter] – for showing main Premmerce Filter (Product attributes filter)
    [premmerce_active_filters] – for showing main Premmerce active filters (Product attributes active filters)

    Furthermore, if there’s a way to utilize the new WooCommerce widget system, please proceed in doing so and reinsert the new Product filter blocks.

    Thread Starter marahman.b2b

    (@marahmanb2b)

    Hi Mark

    I tried Widgets Custom HTML & Blocks but no result

    https://prntscr.com/8Y5zGh4Lg942

    • This reply was modified 2 years, 6 months ago by marahman.b2b.
    Plugin Support Mark Kevin

    (@mkesteban08)

    Hello @marahmanb2b ,

    It seems that I could not view the screenshot that you provided. I’ll be glad to further assist you with this, could you please send us an email in our contact form? – https://premmerce.com/contact-us/

    I’ll look forward to help you with this.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Filter not working.’ is closed to new replies.