Temanızın functions.php dosyasına aşağıda verilen kodu ekleyerek ürün detay sayfasında sepete ekle butonunun altına bir bildirim ekleyebilirsiniz.
Css kodu ile bütünleşik olduğu için bundan sonrada ihtiyacı olacak arkadaşların işine yarayacaktır.
function ecommercehints_show_custom_content_below_product_meta() {
echo "<div style='background-color: #E3494C !important; color: #ffffff !important; padding: 5px !important; text-align:center !important; '>Custom content here!</div>";
};
add_action( 'woocommerce_product_meta_end', 'ecommercehints_show_custom_content_below_product_meta', 10 );İyi geceler.