Archived topic
Make product title look like page title H1
7 replies · Started by Alexander on April 24, 2020
Hi! Is it possible to transfer product name from the right side of the page to the top to make it look like the article title H1 as on other pages. Thanks for your assistance!
Hi there,
try adding this PHP snippet:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title' , 5);
add_action( 'generate_before_content', function(){
if ( is_product() ) {
woocommerce_template_single_title();
}
}, 5);
Adding PHP: https://docs.generatepress.com/article/adding-php/
That's just great, David. Thank you!
You're welcome
Could you please check the site again, David. Double H1 titles has appeared on other pages except products.
Ooops - Edited the code above.
It worked, thanks a lot for your great and prompt support!
Glad we got it resolved :)