Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #805283

    Hello,
    I’m running the latest version of WordPress and latest version of Enfold.
    When I try to use the product grid or list – with the product grid a message of “No products found which match your selection.” – however when I go to the particular category there are definitely products listed. What can I do to get this working?

    Thank you

    #805311

    Additional log file included

    #805733

    I have the same issue too.

    #805735

    I have disabled all plugins except woocommerce latest version. I am running the latest WP and ENFOLD. if that helps.

    #805737

    Actually, the way I resolved it is by setting the Sorting Options to “Price” or another one.
    For some reason the default and let user pick don’t work.

    Seems like there is a bug

    • This reply was modified 6 years, 10 months ago by None.
    #805741

    Yes, you are correct. it works “by price” it’s surely a bug.

    #805744

    Hopefully this at least will allow others with similar issues be able to use this as a workaround

    #805747

    Yes, I think so.

    #807078

    Hi,

    That is what community is about!
    We are happy you got is short out, especially so fast!

    Best regards,
    Basilis

    #807107

    Well, this issue is far from resolved – is this in deed a bug as defined? – will it be worked on?

    #808234

    Hi,

    You just said that someone else will read and use the workaround
    Is that fixed or not?

    Best regards,
    Basilis

    #808240

    sure, the workaround works – the problem is there though

    #859678

    thanks for sharing… i got the same problem and found some tips… if above won’t work then try all below ….

    Fix “No products were found matching your selection” category message
    If you are receiving a “No products found which match your selection” or “No products were found matching your selection” message when viewing your categories, here are a few things to check/do:

    Fix “No products were found matching your selection” category message
    If you are receiving a “No products found which match your selection” or “No products were found matching your selection” message when viewing your categories, here are a few things to check/do:

    Clear Counts – Sometimes category counters are out of sync. To solve this go here WordPress Admin Area > WooCommerce > System Status > Tools and click the first 3 buttons on that page. That will reset the counters.

    Default Product Sorting – If you have set your Default Product Sorting to Popularity (sales), you need to change that to something else. You can check/do that here: WordPress Admin Area > WooCommerce > Settings > Products >
    Default Product Sorting

    Do Products Exist? – Do the categories which are not appearing on your site even have products in them? You can check that here: WordPress Admin Area > Products > Categories

    Product Set Categories – Have you configured your Product Sets to import into WooCommerce categories? More specifically, have you picked at least 1 WooCommerce category for your Product Set to import into on the edit Product Set page. If you select a new WooCommerce category or change the category, you must update (Bump) your Product Set for the new changes to take effect.

    • This reply was modified 6 years, 6 months ago by ggd108.
    #860051

    Hi ggd108,

    Thanks for sharing, much appreciated :-)

    Best regards,
    Rikard

    #1069022

    Hi,

    You can overwrite the following file if you are using a child-theme:
    wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/productslider/productslider.php

    On line 432:

    
    echo "<p>".__( 'No products found which match your selection.', 'woocommerce' )."</p>";
    

    Replace it with:

    
    echo "<p>".__( 'YOUR OWN TEXT.', 'woocommerce' )."</p>";
    

    Then place it in your child-theme like:
    enfold-child/shortcodes/productslider.php

    After adding use this function in your functions.php:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
    
      return $paths;
    }
    • This reply was modified 5 years, 2 months ago by Jarmo.
    #1069187

    Hey (Email address hidden if logged out) ,

    Thank you for sharing!

    Best regards,
    Jordan Shannon

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Product Grid "No products found which match your selection."’ is closed to new replies.