woocommerce_allow_restoring_email_locale

woocommerce_allow_restoring_email_locale

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_allow_restoring_email_locale') is found 1 times:

  • /includes/emails/class-wc-email.php line 364
    		 *
    		 * @param bool $default_value The default returned value.
    		 * @param WC_Email $this The WC_Email object.
    		 */
    		$restore_email_locale = apply_filters( 'woocommerce_allow_restoring_email_locale', true, $this );
    
    		if ( $restore_email_locale && $this->is_customer_email() && apply_filters( 'woocommerce_email_restore_locale', true ) ) {
    			wc_restore_locale();
    		}
    	}