Display All Products by Category with WooCommerce

With WooCommerce, I want to display all the categories in a store as headings, with all of their products listed below in an unordered list. Is this possible to do? I’ve seen a few things that’ll let me display a list of categories or a list of products for a specific category, but nothing that’ll loop through everything the way I described.

How to Display Product specific to a category with WooCommerce Plugin?

I’m using plugin Woocommerce to do shop online. I have many categories for example shoes, clothes and so on. How can I display the products of specific category? I see such product loops of on the sample page, but I only want show the products of a specific category in my index.php. Answers: Thank you … Read more

Display featured products through custom loop in woocommerce on template page

I would like to display 6 featured products from my woocommerce store on my home-page.php template. After some researched I found that the right way to do this was through a custom loop,( I do not wish to use shortcodes because I would like to add additional classes for styling etc. ) I also found that the key that woocommerce uses for the featured products is ‘_featured’. I put together the code below to display any products that I chose to be featured products in my store, but it doesn’t work… Any help is appreciated.

Changing Woocommerce Product Description

I’ve been changing the way that the Single product page looks. I’ve moved a few things about by hooking into Woocommerce and also editing the css. Out of the box the single product page shows the short description (described as woocommerce_template_single_excerpt in the content-single-product.php file) next to the product image, but I want to show … Read more

( Woocommerce) How to get the user belonging to an order?

I am making a function which needs to be called after an order is completed within WooCommerce. For this I’m using the *’woocommerce_order_status_completed’* hook. I want to check if the order has a product belonging to a specific product category. If this is the case, the user will be added to a group within WordPress. … Read more