Site logo

Archived topic

bring the h1 title above the breadcrumbs

3 replies · Started by ppmd on March 3, 2023

Viewing posts 1–4 of 4

Hello I would like to bring the h1 title above the breadcrumbs in the product page: is it possible?

Hi there,

Try this PHP snippet:

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );

add_action('wp',function() {
	if (is_product()) {
		add_action( 'generate_before_content', 'woocommerce_template_single_title');
	}
});

Adding PHP: https://docs.generatepress.com/article/adding-php/

it works perfectly

thank u very much Ying :)

No problem :)

This archived topic is closed to new replies.