Home › Forums › WoodMart support forum › change the title of the product in wd-sticky panel › Reply To: change the title of the product in wd-sticky panel
October 6, 2022 at 1:43 pm
#411265
Cal.97
Participant
Hello,
I would like the H4 tag to be replaced by a p tag.
I tried this solution:
if ( ! function_exists( ‘woocommerce_template_loop_product_title’ ) ) {
function woocommerce_template_loop_product_title() {
echo ‘<p class=”wd-entities-title”>’ . get_the_title() . ‘</p>’;
}
}
But it doesn’t work.
Could you help me?