/*
 Theme Name: Envo Shopper child theme
 Theme URI: https://envothemes.com/
 Description: Child theme for Envo Shopper
 Author: EnvoThemes
 Author URI: https://envothemes.com/
 Template: envo-shopper
 Version: 1.0
*/

/* Add your code below this line */
function change_related_products_title( $title ) {
    $title = 'Te-ar mai putea interesa...';
    return $title;
}
add_filter( 'woocommerce_product_related_products_heading', 'change_related_products_title' );
