Hi again.
For the child theme, you need to copy the hook to the functions.php in the child theme.
remove_action('woocommerce_shop_loop_item_title','woocommerce_template_loop_product_title',10);
add_action('woocommerce_after_shop_loop_item_title','yolo_woocommerce_template_loop_product_title',15); // @TODO: maybe break some remove action in shortcode use woocommerce_template_loop_product_title()
if (!function_exists('yolo_woocommerce_template_loop_product_title')) {
function yolo_woocommerce_template_loop_product_title() {
echo '<a href="'. get_the_permalink() .'" ><h3>' . get_the_title() . '</h3></a>';
}
}
Please check it again.
Thanks.