I was wondering if it is possible to add some text above the title on a product page.
Here is the page https://westcoasthammocks.com.au/product/superjumbo-phangan/
This is what I would like to do.
https://drive.google.com/file/d/1xQ8ZbkWlGkvufGMtqHjq5u_oUI9wA2Bx/view?usp=sharing
Hey keifygeorge,
Please try this in your child theme functions.php file:
function keifygeorge_before_single_product_title() {
echo '<h1>Very comfortable hammock</h1>';
}
add_action( 'woocommerce_before_single_product', 'keifygeorge_before_single_product_title', 15 );
Best regards,
Rikard