Home › Forums › WoodMart support forum › Change the tag of product title for product categories › Reply To: Change the tag of product title for product categories
February 24, 2024 at 5:38 pm
#543459
Hung Pham
Keymaster
Hi nathan.dgy,
Thanks for reaching to us and take our apologies for the long delay in answering.
Use the below code for reordering the tabs, just set priority values per your needs. Paste the code into the functions.php file in your Child theme.
if ( ! function_exists( 'woocommerce_template_loop_product_title' ) ) {
function woocommerce_template_loop_product_title() {
echo '<p class="wd-entities-title"><a href="' . get_the_permalink() . '">' . get_the_title() . '</a></p>';
}
}
Regards,