Skip to content

Instantly share code, notes, and snippets.

@NickGreen
Created October 30, 2018 21:54
Show Gist options
  • Save NickGreen/939f9e487992d261da4d32ebbe51f8a8 to your computer and use it in GitHub Desktop.
Save NickGreen/939f9e487992d261da4d32ebbe51f8a8 to your computer and use it in GitHub Desktop.
Allow early renewal for synchronized products
<?php
function allow_synced_product_early_renewal( false, $subscription ) {
return true;
}
add_filter( 'wcs_allow_synced_product_early_renewal', 'allow_synced_product_early_renewal' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment