Changeset 2680846
- Timestamp:
- 02/17/2022 01:41:42 PM (4 years ago)
- Location:
- extended-trial-coupon-for-wc-subscription/trunk
- Files:
-
- 3 added
- 4 edited
-
assets/css (added)
-
assets/css/admin.css (added)
-
includes/Assets.php (modified) (1 diff)
-
includes/Reviews.php (added)
-
readme.md (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wcs-trial-coupon.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
extended-trial-coupon-for-wc-subscription/trunk/includes/Assets.php
r2676240 r2680846 38 38 public function get_styles() { 39 39 return [ 40 'wcs-coupon-admin-style' => [ 41 'src' => WCS_TRIAL_COUPON_ASSETS . '/css/admin.css', 42 'version' => filemtime( WCS_TRIAL_COUPON_PATH . '/assets/css/admin.css' ), 43 ] 40 44 ]; 41 45 } -
extended-trial-coupon-for-wc-subscription/trunk/readme.md
r2676240 r2680846 47 47 48 48 ### Changelog 49 = 1.1 =\ 50 Added: review class added for showing a prompt to provide review if you like us. 51 49 52 == 1.0 ==\ 50 53 Initial release -
extended-trial-coupon-for-wc-subscription/trunk/readme.txt
r2676245 r2680846 5 5 Tested up to: 5.9 6 6 Requires PHP: 7.3 7 Stable tag: 1. 07 Stable tag: 1.1 8 8 WC requires at least: 5.0 9 9 WC tested up to: 6.1.1 … … 59 59 60 60 == Screenshots == 61 1. Go to Word press dashboard>woocommerce>coupon61 1. Go to WordPress dashboard>woocommerce>coupon 62 62 2. Before applying coupon code 63 63 3. After applying coupon code 64 64 65 65 == Changelog == 66 = 1.1 = 67 Added: review class added for showing a prompt to provide review if you like us. 68 66 69 = 1.0 = 67 70 Initial release 68 71 69 72 == Upgrade Notice == 73 = 1.1 = 74 Just install/update the plugin & enjoy the features 75 70 76 = 1.0 = 71 77 Just install the plugin & enjoy the features -
extended-trial-coupon-for-wc-subscription/trunk/wcs-trial-coupon.php
r2676240 r2680846 4 4 * Plugin URI: https://codeheaven.ca 5 5 * Description: WCS Trial Coupon will add option in WooCommerce coupon filed. With this plugin you can provide extra amount of time on trial period while purchasing a subscription from your store. 6 * Version: 1. 06 * Version: 1.1 7 7 * Author: Code Heaven 8 8 * Author URI: https://codeheaven.ca/ … … 29 29 * $var string 30 30 */ 31 const version = '1. 0';31 const version = '1.1'; 32 32 33 33 /* … … 87 87 new WCS\Trial\Coupon\Assets(); 88 88 new WCS\Trial\Coupon\Trial_Coupon_Actions(); 89 new WCS\Trial\Coupon\Reviews(); 89 90 } 90 91
Note: See TracChangeset
for help on using the changeset viewer.