Hi,
How do I add text below the product title on a single product page? I have a product page built in wp bakery that I got with the theme.
I have this kind of code but is not work
// Hook, który wyświetla tekst po tytule produktu
add_action(‘woocommerce_single_product_summary’, ‘custom_test_text_below_product_title3’, 6);
function custom_test_text_below_product_title3() {
echo ‘<p class=”custom-test-text” style=”font-weight: bold; color: red; margin-top: 10px;”>test3</p>’;
}