Changeset 2850715
- Timestamp:
- 01/18/2023 07:11:23 PM (3 years ago)
- Location:
- woocommerce-bundle-style-coupons
- Files:
-
- 12 added
- 2 edited
-
tags/0.3 (added)
-
tags/0.3/README.md (added)
-
tags/0.3/includes (added)
-
tags/0.3/includes/class-wc-bundle-style-coupons.php (added)
-
tags/0.3/languages (added)
-
tags/0.3/languages/wc_bundle_style_coupons-nl_NL.mo (added)
-
tags/0.3/languages/wc_bundle_style_coupons-nl_NL.po (added)
-
tags/0.3/readme.txt (added)
-
tags/0.3/wc-bundle-style-coupons.php (added)
-
trunk/README.md (added)
-
trunk/includes (added)
-
trunk/includes/class-wc-bundle-style-coupons.php (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wc-bundle-style-coupons.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-bundle-style-coupons/trunk/readme.txt
r1856056 r2850715 2 2 Contributors: CoenJacobs 3 3 Tags: woocommerce 4 Donate link: http://coenjacobs.me/donate/5 4 Requires at least: 3.5 6 Stable tag: 0. 27 Tested up to: 4.9.45 Stable tag: 0.3 6 Tested up to: 6.1.1 8 7 License: GPLv3 9 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 38 == Changelog == 40 39 41 = 0.2 - 10/04/2018 = 40 = 0.3 - 2023/01/18 = 41 * Update: Use WooCommerce CRUD to get/set coupon meta. 42 * Update: Tested against WooCommerce 7.4. 43 * Update: Tested against WordPress 6.1. 44 45 = 0.2 - 2018/04/30 = 42 46 * Fix: WooCommerce 3.0 compatible 43 47 * Tweak: Moved class to separate file … … 45 49 * Tweak: Display checkbox on "Usage Restrictions" tab of Coupon metabox 46 50 47 = 0.1.1 - 2 8/04/2013=51 = 0.1.1 - 2013/04/28 = 48 52 * Fix: Typo in coupon level settings label 49 53 50 = 0.1 - 2 4/04/2013=54 = 0.1 - 2013/04/24 = 51 55 * Initial release -
woocommerce-bundle-style-coupons/trunk/wc-bundle-style-coupons.php
r1856056 r2850715 1 1 <?php 2 2 3 /* 4 Plugin Name: WooCommerce Bundle Style Coupons 5 Description: Only apply a coupon when all products that this coupon applies to are in cart. 6 Author: Coen Jacobs 7 Author URI: http://coenjacobs.me 8 Version: 0.2 9 */ 3 /** 4 * Plugin Name: WooCommerce Bundle Style Coupons 5 * Description: Only apply a coupon when all products that this coupon applies to are in cart. 6 * Author: Coen Jacobs 7 * Author URI: https://coenjacobs.com 8 * Version: 0.3 9 * Tested up to: 6.1.1 10 * WC requires at least: 3.9.0 11 * WC tested up to: 7.4.0 12 */ 10 13 11 14 include( 'includes/class-wc-bundle-style-coupons.php' );
Note: See TracChangeset
for help on using the changeset viewer.