Plugin Directory

Changeset 2680846


Ignore:
Timestamp:
02/17/2022 01:41:42 PM (4 years ago)
Author:
codeheaven
Message:

Review class added for showing a prompt to provide review if you like us.

Location:
extended-trial-coupon-for-wc-subscription/trunk
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • extended-trial-coupon-for-wc-subscription/trunk/includes/Assets.php

    r2676240 r2680846  
    3838    public function get_styles() {
    3939        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            ]
    4044        ];
    4145    }
  • extended-trial-coupon-for-wc-subscription/trunk/readme.md

    r2676240 r2680846  
    4747
    4848### Changelog
     49= 1.1 =\
     50Added: review class added for showing a prompt to provide review if you like us.
     51
    4952== 1.0 ==\
    5053Initial release
  • extended-trial-coupon-for-wc-subscription/trunk/readme.txt

    r2676245 r2680846  
    55Tested up to: 5.9
    66Requires PHP: 7.3
    7 Stable tag: 1.0
     7Stable tag: 1.1
    88WC requires at least: 5.0
    99WC tested up to: 6.1.1
     
    5959
    6060== Screenshots ==
    61 1. Go to Wordpress dashboard>woocommerce>coupon
     611. Go to WordPress dashboard>woocommerce>coupon
    62622. Before applying coupon code
    63633. After applying coupon code
    6464
    6565== Changelog ==
     66= 1.1 =
     67Added: review class added for showing a prompt to provide review if you like us.
     68
    6669= 1.0 =
    6770Initial release
    6871
    6972== Upgrade Notice ==
     73= 1.1 =
     74Just install/update the plugin & enjoy the features
     75
    7076= 1.0 =
    7177Just install the plugin & enjoy the features
  • extended-trial-coupon-for-wc-subscription/trunk/wcs-trial-coupon.php

    r2676240 r2680846  
    44 * Plugin URI: https://codeheaven.ca
    55 * 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.0
     6 * Version: 1.1
    77 * Author: Code Heaven
    88 * Author URI: https://codeheaven.ca/
     
    2929     * $var string
    3030     */
    31     const version = '1.0';
     31    const version = '1.1';
    3232
    3333    /*
     
    8787        new WCS\Trial\Coupon\Assets();
    8888        new WCS\Trial\Coupon\Trial_Coupon_Actions();
     89        new WCS\Trial\Coupon\Reviews();
    8990    }
    9091
Note: See TracChangeset for help on using the changeset viewer.