// Custom message for invalid VIN if (!function_exists('jireh_custom_no_products_message')) { add_filter('gettext','jireh_custom_no_products_message', 10, 3); function jireh_custom_no_products_message($translated, $text, $domain){ if ($domain === 'woocommerce' && $text === 'No products were found matching your selection.' ){ if (!empty($GLOBALS['jireh_vin_invalid'])){ return 'Invalid VIN number, please check your VIN and try again or contact JirehAutoParts.'; } } return $translated; } }