woocommerce_allow_switching_email_locale

woocommerce_allow_switching_email_locale

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.2.3

apply_filters('woocommerce_allow_switching_email_locale') is found 1 times:

  • /includes/emails/class-wc-email.php line 344
    		 *
    		 * @param bool $default_value The default returned value.
    		 * @param WC_Email $this The WC_Email object.
    		 */
    		$switch_email_locale = apply_filters( 'woocommerce_allow_switching_email_locale', true, $this );
    
    		if ( $switch_email_locale && $this->is_customer_email() && apply_filters( 'woocommerce_email_setup_locale', true ) ) {
    			wc_switch_to_site_locale();
    		}
    	}