Home Forums WoodMart support forum Filter problem Reply To: Filter problem

#490417

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