Skip to content

Instantly share code, notes, and snippets.

@AmeliaBriscoe
Created August 20, 2019 23:37
Show Gist options
  • Save AmeliaBriscoe/b44f3f5f19467ac826774ca4f507f138 to your computer and use it in GitHub Desktop.
Save AmeliaBriscoe/b44f3f5f19467ac826774ca4f507f138 to your computer and use it in GitHub Desktop.
Auto-check Update All Subscriptions Checkbox
<?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