August 25, 2015

How to set product quantity, minimum value and increment amount in Woocommerce?

In this tutorial, We’ll learn how to set initial quantity, minimum value, maximum value and increment amount for products in woocommerce. Default values are: Quantity => 1 Minimum Value => 1 Maximum Vale => Any Quantity Increment Amount => 1 We can change one to all of these values. To do this add the following

How to set product quantity, minimum value and increment amount in Woocommerce? Read More »

How to display category specific message on woocommerce’s thank you page?

In this tutorial we’ll learn how to display category specific message on thank you page of woocommerce. To do this add the following lines of code at the end of your theme’s functions.php file: function so_28348735_category_based_thank_you_message ( $order_id ){ $order = wc_get_order( $order_id ); $show = false; foreach( $order->get_items() as $item ) { // check

How to display category specific message on woocommerce’s thank you page? Read More »

How to replace default product placeholder image in WooCommerce?

In this tutorial we’ll learn how to replace default placeholder image in woocommerce. In woocommerce if you don’t upload a product image then woocommerce automatically displays a an image placeholder, we are going to replace that image in this tutorial. In the image below you’ll see some products for which no image has been added

How to replace default product placeholder image in WooCommerce? Read More »

How to customize product details on single product page in Woocommerce?

In this tutorial we’ll learn how to customize product details on single product page.Woocommerce Product Details Customizer is a nice plugin that allow you to customize woocommerce product details pages. Show / Hide core components like product imagery, tabs, upsells and related products. You can download the plugin from here: https://wordpress.org/plugins/woocommerce-product-details-customiser/ After downloading the plugin,

How to customize product details on single product page in Woocommerce? Read More »