Forked from jessepearson/woocommerce_defer_transactional_emails.php
Created
November 15, 2023 03:55
-
-
Save jasperf/740543ebc726a80dbbee859f18f3b144 to your computer and use it in GitHub Desktop.
This will turn on deferred transactional emails in WooCommerce. This may help if you are experiencing slow checkouts or checkout timeouts.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // Do not copy this line | |
/** | |
* This will turn on deferred transactional emails in WooCommerce. This may help if you | |
* are experiencing slow checkouts or checkout timeouts. | |
*/ | |
add_filter( 'woocommerce_defer_transactional_emails', '__return_true' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment