Changeset 2249516
- Timestamp:
- 02/24/2020 08:03:26 PM (6 years ago)
- Location:
- affiliatewp-store-credit/trunk
- Files:
-
- 3 edited
-
affiliatewp-store-credit.php (modified) (2 diffs)
-
integrations/class-woocommerce.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
affiliatewp-store-credit/trunk/affiliatewp-store-credit.php
r2068470 r2249516 1 1 <?php 2 2 /** 3 * Plugin Name: AffiliateWP - Store Credit4 * Plugin URI: https://affiliatewp.com5 * Description: Pay AffiliateWP referrals as store credit6 * Author: AffiliateWP, LLC7 * Contributors: ryanduff, ramiabraham, mordauk, sumobi, patrickgarman, section214, tubiz8 * Version: 2.3.29 * Author URI: https://affiliatewp.com10 * Text Domain: affiliatewp-store-credit3 * Plugin Name: AffiliateWP - Store Credit 4 * Plugin URI: https://affiliatewp.com 5 * Description: Pay AffiliateWP referrals as store credit 6 * Author: Sandhills Development, LLC 7 * Author URI: https://sandhillsdev.com 8 * Contributors: ryanduff, ramiabraham, mordauk, sumobi, patrickgarman, section214, tubiz 9 * Version: 2.3.3 10 * Text Domain: affiliatewp-store-credit 11 11 */ 12 12 … … 72 72 73 73 self::$plugin_dir = plugin_dir_path( __FILE__ ); 74 self::$version = '2.3. 2';74 self::$version = '2.3.3'; 75 75 76 76 self::$instance->setup_constants(); -
affiliatewp-store-credit/trunk/integrations/class-woocommerce.php
r2068470 r2249516 265 265 ); 266 266 267 /** 268 * Filters store credit data for coupons. 269 * 270 * @since 2.0 271 * @since 2.3.3 Adds usage count to coupon data. 272 * 273 * @param array $coupon_data The coupon metadata. 274 */ 267 275 $coupon_data = apply_filters( 'affwp_store_credit_woocommerce_coupon_data', array( 268 276 'discount_type' => 'fixed_cart', … … 270 278 'individual_use' => 'no', 271 279 'usage_limit' => '1', 280 'usage_count' => '0', 272 281 'expiry_date' => $expires, 273 282 'apply_before_tax' => 'yes', -
affiliatewp-store-credit/trunk/readme.txt
r2194215 r2249516 4 4 Description: Pay AffiliateWP referrals as store credit. Currently supports WooCommerce and Easy Digital Downloads. 5 5 Author: ramiabraham 6 Contributors: ryanduff, ramiabraham, mordauk, sumobi, patrickgarman, section214, drewapicture, tubiz 6 Contributors: ryanduff, ramiabraham, mordauk, sumobi, patrickgarman, section214, drewapicture, tubiz, alexstandiford 7 7 Tags: affiliatewp, affiliates, store credit, woo, woocommerce, easy digital downloads, edd 8 8 License: GPLv2 or later 9 9 Tested up to: 5.3 10 10 Requires PHP: 5.3 11 Stable tag: 2.3. 211 Stable tag: 2.3.3 12 12 Requires at least: 3.5 13 13 … … 70 70 71 71 == Changelog == 72 73 = Version 2.3.3, February 24, 2020 = 74 * Fix [WooCommerce integration]: Store credit cannot be used 72 75 73 76 = Version 2.3.2, April 14, 2019 =
Note: See TracChangeset
for help on using the changeset viewer.