August 25, 2015

How to Remove/disable Review option from Woocommerce Product Pages

There are Two Ways to Remove/disable the Review Option From the Woocommerce Product Pages. 1- Use a WordPress Plugin Called : Disable Comments 2- Add a Code in the function.php file. Lets Start with the first Option. Below is the Screenshot, It  Looks Like. Download this plugin: Disable Comment And Activate the Plugin. After Activating […]

How to Remove/disable Review option from Woocommerce Product Pages Read More »

How to remove/hide specific category products from shop page in Woocommerce?

In this tutorial we’ll learn how to remove/hide products of a category page from shop page. To do this first of all create some products and assign them to categories. I’ve created two products, two categories and assigned one product to each category. This will be my shop page look like after products creation and

How to remove/hide specific category products from shop page in Woocommerce? Read More »

How to display remaining quantity of each variation in Woocommerce?

E-commerce stores choose to show remaining quantity of products to inform customers how many are remaining in inventory, especially if the quantity is lower than a specific lower limit. This can be difficult if products have multiple variation. Suppose a product i.e. shirt you are selling in different colors, it will be difficult for you

How to display remaining quantity of each variation in Woocommerce? Read More »

How to add sort by name in sorting options of Woocommerce

In this tutorial we’ll learn how to add sort by name option in sorting options of dropdown. This is the default sorting dropdown on shop page. Now add the following lines of code at the end of functions.php file. functionmonkey_ordering_args( $sort_args ) { $orderby_value = isset( $_GET[‘orderby’] ) ? woocommerce_clean( $_GET[‘orderby’] ) : apply_filters( ‘woocommerce_default_catalog_orderby’,

How to add sort by name in sorting options of Woocommerce Read More »