Home › Forums › WoodMart support forum › Filter problem › Reply To: Filter problem
August 22, 2023 at 12:30 pm
#490417
Aizaz Imtiaz Awan
Keymaster
Hello,
01. Your issue has been resolved I have added the following code in Theme Settings > Custom CSS:
#tab-title-cr_qna {
display: none;
}
02. Make appropriate changes and enter the below code to the functions.php file in your child theme.
if ( ! function_exists( 'woocommerce_template_loop_product_title' ) ) {
function woocommerce_template_loop_product_title() {
echo '<h3 class="wd-entities-title"><a href="' . get_the_permalink() . '">' . get_the_title() . '</a></h3>';
}
}
Don’t hesitate to let me know if you need any further help or any other info.
Best Regards