How to show discounted products in front like feature products
-
Hi, how can I display discount products on the front as well as future products?
-
@DaniD
To display featured product on homepage, you just enable the featured button in product https://prnt.sc/zk3syw
To display discounted products on home page
-
add all the discounted item in one category like "discounted-item" https://prnt.sc/zk4w69
-
now go to velocity-> meta data -> home page content and pass the array with valid category slug https://prnt.sc/zk4znb
@include('shop::home.category', ['category' => 'discounted-item'])
once all done now you will get all product under the category name "discount item" at the homepage
-