Plugin Directory

Changeset 2249516


Ignore:
Timestamp:
02/24/2020 08:03:26 PM (6 years ago)
Author:
alexstandiford
Message:

Version 2.3.3 release

Location:
affiliatewp-store-credit/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • affiliatewp-store-credit/trunk/affiliatewp-store-credit.php

    r2068470 r2249516  
    11<?php
    22/**
    3  * Plugin Name:     AffiliateWP - Store Credit
    4  * Plugin URI:      https://affiliatewp.com
    5  * Description:     Pay AffiliateWP referrals as store credit
    6  * Author:          AffiliateWP, LLC
    7  * Contributors:    ryanduff, ramiabraham, mordauk, sumobi, patrickgarman, section214, tubiz
    8  * Version:         2.3.2
    9  * Author URI:      https://affiliatewp.com
    10  * Text Domain:     affiliatewp-store-credit
     3 * 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
    1111 */
    1212
     
    7272
    7373            self::$plugin_dir = plugin_dir_path( __FILE__ );
    74             self::$version = '2.3.2';
     74            self::$version = '2.3.3';
    7575
    7676            self::$instance->setup_constants();
  • affiliatewp-store-credit/trunk/integrations/class-woocommerce.php

    r2068470 r2249516  
    265265        );
    266266
     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         */
    267275        $coupon_data = apply_filters( 'affwp_store_credit_woocommerce_coupon_data', array(
    268276            'discount_type'    => 'fixed_cart',
     
    270278            'individual_use'   => 'no',
    271279            'usage_limit'      => '1',
     280            'usage_count'      => '0',
    272281            'expiry_date'      => $expires,
    273282            'apply_before_tax' => 'yes',
  • affiliatewp-store-credit/trunk/readme.txt

    r2194215 r2249516  
    44Description: Pay AffiliateWP referrals as store credit. Currently supports WooCommerce and Easy Digital Downloads.
    55Author: ramiabraham
    6 Contributors: ryanduff, ramiabraham, mordauk, sumobi, patrickgarman, section214, drewapicture, tubiz
     6Contributors: ryanduff, ramiabraham, mordauk, sumobi, patrickgarman, section214, drewapicture, tubiz, alexstandiford
    77Tags: affiliatewp, affiliates, store credit, woo, woocommerce, easy digital downloads, edd
    88License: GPLv2 or later
    99Tested up to: 5.3
    1010Requires PHP: 5.3
    11 Stable tag: 2.3.2
     11Stable tag: 2.3.3
    1212Requires at least: 3.5
    1313
     
    7070
    7171== Changelog ==
     72
     73= Version 2.3.3, February 24, 2020 =
     74* Fix [WooCommerce integration]: Store credit cannot be used
    7275
    7376= Version 2.3.2, April 14, 2019 =
Note: See TracChangeset for help on using the changeset viewer.