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
/* Apologies for formatting, this was originally intended to be a ticket, but it errored. */ | |
// Line 295 of Woocommerce Shipstation Integration 4.1.27 includes/api-requests/class-wc-shipstation-api-export.php is currently: | |
$orders_xml->appendChild( $order_xml ); | |
// Proposed Change: | |
$orders_xml->appendChild( apply_filters( 'woocommerce_shipstation_export_order_xml', $order_xml) ); | |
/* | |
Lots of ways this can be used, for example, pulling from a staging site and using an internal email so as not to notify customers when testing. |