Home Forums WoodMart support forum Short description like demo Reply To: Short description like demo

#38715

Artem Temos
Keymaster

Hi,

Try to add the following PHP code snippet to the child theme functions.php file to show your product attributes table in the short description. Or you can simply use HTML table in your products short description

function woodmart_display_product_attributes() {
	global $product;
	wc_display_product_attributes( $product );
}
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_action( 'woocommerce_single_product_summary', 'woodmart_display_product_attributes', 20 );