Skip to content

Instantly share code, notes, and snippets.

@spencerfinnell
Created July 30, 2018 18:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spencerfinnell/2d03261f8feaf6c5daa5a9e2f36b90c1 to your computer and use it in GitHub Desktop.
Save spencerfinnell/2d03261f8feaf6c5daa5a9e2f36b90c1 to your computer and use it in GitHub Desktop.
<?php
/**
* Offer free shipping when a customer has an open pending order.
*/
add_filter( 'wc_combined_shipping_maybe_has_free_shipping', function() {
return 'pending';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment