Answers for "woocommerce product category page code add"

PHP
0

Add Product Short Description To Product Category In WooCommerce

function webroom_add_short_description_in_product_categories() {
	global $product;
	if ( ! $product->get_short_description() ) return;
	?>
	<div itemprop="description">
		<?php echo apply_filters( 'woocommerce_short_description', $product->get_short_description() ) ?>
	</div>
	<?php
}
add_action('woocommerce_after_shop_loop_item_title', 'webroom_add_short_description_in_product_categories', 5);
Posted by: Guest on December-09-2021
-1

is product page woocommerce

<a href="">a</a>
Posted by: Guest on October-22-2021

Code answers related to "woocommerce product category page code add"

Browse Popular Code Answers by Language