Site logo

[Resolved] bring the h1 title above the breadcrumbs

Home Forums Support [Resolved] bring the h1 title above the breadcrumbs

Home Forums Support bring the h1 title above the breadcrumbs

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2554321
    ppmd

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

    #2554544
    Ying
    Staff
    Customer Support

    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/

    #2554562
    ppmd

    it works perfectly

    thank u very much Ying 🙂

    #2554625
    Ying
    Staff
    Customer Support

    No problem 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.