php - I am trying to display some custome content below product data right after color and size attribute in woocomerce using hooks

one text

the code i use is this

add_action( 'woocommerce_single_product_summary', 'quadlayers_woocommerce_hooks4', 29);
function quadlayers_woocommerce_hooks4() {
include 'sizedrop.html';
}

if I increase the parameter value any more than 29 then the output in print directly to before add to cart and if I decrease it print before color and after category it does not go after color and size attribute do you have any solution to it

Source