Home › Forums › Basel support forum › Book Shop into Basel theme › Reply To: Book Shop into Basel theme
February 2, 2018 at 12:41 pm
#36988
Artem Temos
Keymaster
Try to add the following PHP code snippet to the child theme functions.php file to do this
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 );