How To Show Featured Products On Homepage In WordPress Woocommerce

Should your WordPress site be equipped with WooCommerce, displaying your highlighted products on the front page could boost sales and simplify the shopping process for your customers. This guide will detail the steps to present featured products on your WordPress WooCommerce homepage.

Step 1: Create a Featured Products Category

The first step is to create a category specifically for your featured products. This will make it easier to manage and display these products on the homepage. To do this, go to Products > Categories in your WordPress dashboard and click on Add New. Give the category a name such as “Featured Products” and save it.

Step 2: Assign Products to the Featured Products Category

Next, you need to assign your products to the featured products category. To do this, go to Products > All Products in your WordPress dashboard and click on a product that you want to feature. In the product details page, scroll down to the Categories section and select “Featured Products” from the drop-down menu. Repeat this process for all products that you want to feature.

Step 3: Create a Homepage Template with Featured Products Section

To display your featured products on the homepage, you need to create a custom homepage template. This can be done by going to Appearance > Theme Editor in your WordPress dashboard and editing the home.php file. You can add a section for featured products using HTML code such as:

<div class="featured-products">
    <h2>Featured Products</h2>
    <ul>
        <li>[product name]</li>
        <li>[product name]</li>
        <li>[product name]</li>
    </ul>
</div>

You can customize the HTML code to suit your needs and add as many products as you want. Make sure to replace “[product name]” with the actual product names.

Step 4: Display Featured Products on Homepage

Once you have created a custom homepage template with a featured products section, you can display your featured products on the homepage. To do this, go to Appearance > Customize in your WordPress dashboard and select “Homepage” from the left-hand menu. Scroll down to the “Featured Products” section and click on “Add Section”. Select “Featured Products” from the drop-down menu and save your changes.

Conclusion

In conclusion, showing featured products on the homepage in WordPress WooCommerce is a great way to increase sales and make it easier for customers to find the products they are looking for. By following these steps, you can create a custom homepage template with a featured products section and display your featured products on the homepage.