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 | |
| /* | |
| * Access to downloadable files associated with a subscription will, by default, expire | |
| * when the subscription is no longer "active" or "pending-cancel". | |
| * https://woocommerce.com/document/subscriptions/faq/#section-39 | |
| * This snippet overrides that behavior to allow access as per the Download Expiry settng | |
| * when the subscription status is "cancelled" | |
| */ |
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
| /* | |
| * Add our Custom Fields to simple products | |
| */ | |
| function mytheme_woo_add_custom_fields() { | |
| global $woocommerce, $post; | |
| echo '<div class="options_group">'; | |
| // Text Field |