Created
August 20, 2019 23:37
-
-
Save AmeliaBriscoe/b44f3f5f19467ac826774ca4f507f138 to your computer and use it in GitHub Desktop.
Auto-check Update All Subscriptions Checkbox
This file contains hidden or 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 | |
/* Auto check box to update the shipping/billing address on all subscriptions */ | |
add_filter( 'wcs_update_all_subscriptions_addresses_checked', '__return_true' ); | |
/* Auto check box to update the payment method on all subscriptions */ | |
add_filter( 'wcs_update_all_subscriptions_payment_method_checked', '__return_true' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment