Skip to content
Advertisement

Add a custom text under featured products price in Woocommerce product widget

I am trying to add a line of text under the price of my featured products on my homepage. I have tried editing the content-widget-product.php so it looks like this –

JavaScript

I added the “Delivery throughout line”… but it doesn’t do anything though. Can someone please tell me why it’s not working. Thanks!

Advertisement

Answer

Try the following code that will add your custom text to the widget Products items for featured products only under the price in the home page:

JavaScript

Code goes in function.php file of your active child theme (active theme). Tested and works.

enter image description here


Addition: If you use a shortcode in your home page like for example:

JavaScript

You will use the following code (that works for products in the loop):

JavaScript

Code goes in function.php file of your active child theme (active theme). Tested and works.

enter image description here


To display this custom text everywhere for all products (in all Woocommerce archive pages as shop and in all Woocommerce loops as related products, upsells, cross-sells…)

You will use the same code without the if statement:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement