WooCommerce Tutorials

How to add a custom tab on product page with the help of a plugin in woocommerce?

In a previous article, we have learned how to add a custom tab on product pages programmatically. In this tutorial we’ll learn how to add a custom tab on product pages with the help of a plugin. Only difference in two approaches is this, with adding a custom tab programmatically we’ll have same tab title

How to add a custom tab on product page with the help of a plugin in woocommerce? Read More »

How to display all the categories and subcategories without link of a product in Woocommerce?

In this tutorial we’ll learn how to display all the categories and subcategories of a product without links in Woocommrce. Here is our default product screen: Now we need to display all the product categories and sub-categories without links and before product title. To do this, add the following lines of code at the end

How to display all the categories and subcategories without link of a product in Woocommerce? Read More »

How to display custom field value on archive product page in Woocommerce?

In this tutorial we’ll learn how to display checkout page payment options as dropdown. By default woocommerce display payment options as radio buttons. Now, let’s say we want to replace these radio buttons with a dropdown. To do this go to ROOT/wp-content/plugins/woocommerce/templates/checkout and find file review-order.php. Open this file. Now find the following lines of

How to display custom field value on archive product page in Woocommerce? Read More »

How to display checkout page payment options as dropdown in Woocommerce?

In this tutorial we’ll learn how to display checkout page payment options as dropdown. By default woocommerce display payment options as radio buttons. Now, let’s say we want to replace these radio buttons with a dropdown. To do this go to ROOT/wp-content/plugins/woocommerce/templates/checkout and find file review-order.php. Open this file. Now find the following lines of

How to display checkout page payment options as dropdown in Woocommerce? Read More »

How to display a specific payment method for logged in users only in Woocommerce?

In this tutorial we’ll learn how to display a specific payment option for logged in users only. First of all let’s have a look at our checkout page, what payment methods are being displayed initially. To do this add some items in cart and go to cart then proceed to checkout. Here is the default

How to display a specific payment method for logged in users only in Woocommerce? Read More »