• Resolved rptr

    (@rptr)


    Hello guys,

    I want to change h2 title in product page from “Product description” to name of product. I want to do it automatically. Any idea how can I do it?

    Thanks for any ideas…

    Peter

Viewing 3 replies - 1 through 3 (of 3 total)
  • Enter the following PHP code in your theme’s functions.php file

    add_filter( 'woocommerce_product_description_heading', 'paulc_product_title' );
    function paulc_product_title() {
    	return get_the_title();
    }
    Thread Starter rptr

    (@rptr)

    Perfect, it works! Thank you so much. Do you think it is good for SEO?

    Plugin Support EtienneP a11n

    (@etiennep)

    Hi there!

    Glad to hear the solution provided helped you, as for if it is good for SEO, the best would be to confirm that with an SEO expert.

    I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change “Product description” to “Product title”’ is closed to new replies.