hello, i am trying to add the below simple attribute list on the single product page
on the functions.php in the child theme. but does not do anything.
//show attributes after summary in product single view
add_action('woocommerce_single_product_summary', function() {
global $product;
echo $product->list_attributes();
}, 25);