Home › Forums › WoodMart support forum › changing function in the theme changing function in the theme This topic has 3 replies, 2 voices, and was last updated 5 years, 9 months ago by Artem Temos. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts March 11, 2019 at 9:39 pm #112386 razztechParticipant hi i need to change somethings in this function /** * ———————————————————————————————— * Custom function for product title * ———————————————————————————————— */ if( ! function_exists( ‘woocommerce_template_loop_product_title’ ) ) { function woocommerce_template_loop_product_title() { echo ‘<h3 class=”product-title”>‘ . get_the_title() . ‘</h3>’; } } on line 13 in /wp-content/themes/woodmart/inc/integrations/woocommerce/template-tags.php how can i do that in child theme ? March 12, 2019 at 7:12 am #112416 Artem TemosKeymaster Hi, Just copy the whole function to the child theme functions.php file and do your changes. Kind Regards March 12, 2019 at 9:03 am #112446 razztechParticipant it is not working i copied to the child theme this function woocommerce_template_loop_product_title() { echo ‘<h3 class=”product-title”>‘ . get_the_title() . ‘</h3>’; } is it enough ? March 12, 2019 at 10:17 am #112466 Artem TemosKeymaster Yes, it is enough for this customization. Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to create new topics. Login / Register