Hello,
Try to add following code snippet to the functions.php file in your child theme
function woodmart_content_instead_excerpt() {
the_content();
}
function woodmart_remove_product_tabs( $tabs ) {
unset( $tabs['description'] ); // Remove the description tab
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'woodmart_remove_product_tabs', 98 );
add_action( 'woocommerce_single_product_summary', 'woodmart_content_instead_excerpt', 20 );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
Best Regards