jaw@jawtemplates.com

Tag: product

How to Add Woocommerce Product Days Availability

Simply create  a custom field in a product and then show it in a single product page When you add 0 (zero), the string will not show. Default value is “1-3”. You can change the string (translation) here – ../goodstore/woocommerce/content-single-product.php ...

How to Show all Product Categories in Breadcrumbs

If you have structure of categories like this: Main Category Category 1 Category 1-1 Category 2 Category 2-1 And if you want show in breadcrumbs bar all categories like this: Home | Main Category | Category 1 | Category 2 | Category 1-1 | Category 2-1 | Product name So ...

Showing “NEW” badge also in product detail page

For showing “New” badge also in single product detail, you should add into function.php this add_action( ‘woocommerce_before_single_product_summary’, array( ‘WC_nb’, ‘woocommerce_show_product_loop_new_badge’ ), 30 ); I recommen ...