Tagged: enfold, Product Grid, product list
-
AuthorPosts
-
June 7, 2017 at 8:46 pm #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
June 7, 2017 at 9:32 pm #805311Additional log file included
June 8, 2017 at 8:43 pm #805733I have the same issue too.
June 8, 2017 at 8:50 pm #805735I have disabled all plugins except woocommerce latest version. I am running the latest WP and ENFOLD. if that helps.
June 8, 2017 at 8:53 pm #805737Actually, 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 7 years, 5 months ago by None.
June 8, 2017 at 9:01 pm #805741Yes, you are correct. it works “by price” it’s surely a bug.
June 8, 2017 at 9:04 pm #805744Hopefully this at least will allow others with similar issues be able to use this as a workaround
June 8, 2017 at 9:18 pm #805747Yes, I think so.
June 12, 2017 at 9:17 pm #807078Hi,
That is what community is about!
We are happy you got is short out, especially so fast!Best regards,
BasilisJune 12, 2017 at 9:53 pm #807107Well, this issue is far from resolved – is this in deed a bug as defined? – will it be worked on?
June 14, 2017 at 9:34 pm #808234Hi,
You just said that someone else will read and use the workaround
Is that fixed or not?Best regards,
BasilisJune 14, 2017 at 9:35 pm #808240sure, the workaround works – the problem is there though
October 3, 2017 at 4:18 pm #859678thanks 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 SortingDo 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 7 years, 1 month ago by ggd108.
October 4, 2017 at 9:37 am #860051February 19, 2019 at 4:37 pm #1069022Hi,
You can overwrite the following file if you are using a child-theme:
wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/productslider/productslider.phpOn 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.phpAfter 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, 9 months ago by Jarmo.
February 20, 2019 at 12:18 am #1069187 -
AuthorPosts
- The topic ‘Product Grid "No products found which match your selection."’ is closed to new replies.