Changeset 3228803
- Timestamp:
- 01/26/2025 01:28:15 PM (14 months ago)
- Location:
- easycoupon
- Files:
-
- 30 added
- 4 edited
-
tags/1.0.0/appsero (added)
-
tags/1.0.0/appsero/.editorconfig (added)
-
tags/1.0.0/appsero/.github (added)
-
tags/1.0.0/appsero/.github/workflows (added)
-
tags/1.0.0/appsero/.github/workflows/wpcs.yml (added)
-
tags/1.0.0/appsero/.gitignore (added)
-
tags/1.0.0/appsero/.php-cs-fixer.dist.php (added)
-
tags/1.0.0/appsero/composer.json (added)
-
tags/1.0.0/appsero/composer.lock (added)
-
tags/1.0.0/appsero/phpcs.xml.dist (added)
-
tags/1.0.0/appsero/readme.md (added)
-
tags/1.0.0/appsero/src (added)
-
tags/1.0.0/appsero/src/Client.php (added)
-
tags/1.0.0/appsero/src/Insights.php (added)
-
tags/1.0.0/appsero/src/License.php (added)
-
tags/1.0.0/easycoupon.php (modified) (2 diffs)
-
tags/1.0.0/readme.txt (modified) (4 diffs)
-
trunk/appsero (added)
-
trunk/appsero/.editorconfig (added)
-
trunk/appsero/.github (added)
-
trunk/appsero/.github/workflows (added)
-
trunk/appsero/.github/workflows/wpcs.yml (added)
-
trunk/appsero/.gitignore (added)
-
trunk/appsero/.php-cs-fixer.dist.php (added)
-
trunk/appsero/composer.json (added)
-
trunk/appsero/composer.lock (added)
-
trunk/appsero/phpcs.xml.dist (added)
-
trunk/appsero/readme.md (added)
-
trunk/appsero/src (added)
-
trunk/appsero/src/Client.php (added)
-
trunk/appsero/src/Insights.php (added)
-
trunk/appsero/src/License.php (added)
-
trunk/easycoupon.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easycoupon/tags/1.0.0/easycoupon.php
r3228787 r3228803 18 18 die; 19 19 } 20 21 if( !class_exists('Appsero\Client') ) { 22 require __DIR__ . '/appsero/src/Client.php'; 23 } 24 25 /** 26 * Initialize the tracker 27 * 28 * @return void 29 */ 30 function easycoupon_appsero_init_tracker() { 31 32 if ( ! class_exists( 'Appsero\Client' ) ) { 33 require_once __DIR__ . '/appsero/src/Client.php'; 34 } 35 36 $client = new Appsero\Client( 'da35c4be-c41d-47ae-8a67-02e646a7d1f4', 'EasyCoupon – Create WooCommerce Coupons, BOGO Deals, Auto Apply Coupons, URL Coupons', __FILE__ ); 37 38 // Active insights 39 $client->insights()->init(); 40 } 41 42 add_action( 'init', 'easycoupon_appsero_init_tracker' ); 20 43 21 44 add_action( 'plugins_loaded', 'easycoupon_init' ); … … 45 68 46 69 70 -
easycoupon/tags/1.0.0/readme.txt
r3228787 r3228803 2 2 Contributors: hiveplugins 3 3 Donate link: https://hiveplugins.com/easycoupon/ 4 Tags: woocommerce, coupon generator, BOGO deals, auto apply coupons, coupon URLs4 Tags: woocommerce, coupon generator, bogo deals, autoapply coupons, coupon urls 5 5 Requires PHP: 7.4 6 6 Requires at least: 6.5 … … 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 EasyCoupon is a WooCommerce plugin offering features like bulk coupon generation, auto apply coupon, BOGO deals, and coupon URLs. Simplify coupon managementto boost sales.12 EasyCoupon for WooCommerce simplifies coupon management with bulk creation, auto apply, BOGO deals, and coupon URLs to boost sales. 13 13 14 14 == Description == … … 61 61 <p>EasyCoupon is the ultimate solution for WooCommerce store owners looking to increase customer retention and drive more sales through flexible, automated, and customizable coupon management. Download and install EasyCoupon today to start boosting your WooCommerce store revenue.</p> 62 62 63 64 ## Privacy Policy 65 EasyCoupon uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements. 66 67 Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure a great user experience for all our users. 68 69 Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.** 70 71 Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/). 72 73 63 74 == Installation == 64 75 … … 92 103 Yes, it works seamlessly with most WooCommerce themes and plugins. 93 104 94 == Screenshots == 105 == Screenshots == 95 106 96 1. **Bulk Coupon Generator** - Easily generate bulk coupons from the dashboard. 97 2. **BOGO Deal Settings** - Configure Buy One Get One offers for your customers. 98 3. **Coupon URL Example** - View how the coupon URL is displayed for sharing and auto-application. 99 4. **Usage Restrictions** - Set custom usage restrictions to enhance control. 107 1. **Force Apply** - Automatically apply a single coupon by overriding all others in the cart. 108 2. **Bulk Coupon Generator** - Easily generate bulk coupons from the dashboard. 109 3. **Coupon URL Example** - View how the coupon URL is displayed for sharing and auto-application. 110 4. **BOGO Deal Settings** - Configure Buy One Get One offers for your customers. 111 100 112 101 113 == Changelog == -
easycoupon/trunk/easycoupon.php
r3228787 r3228803 18 18 die; 19 19 } 20 21 if( !class_exists('Appsero\Client') ) { 22 require __DIR__ . '/appsero/src/Client.php'; 23 } 24 25 /** 26 * Initialize the tracker 27 * 28 * @return void 29 */ 30 function easycoupon_appsero_init_tracker() { 31 32 if ( ! class_exists( 'Appsero\Client' ) ) { 33 require_once __DIR__ . '/appsero/src/Client.php'; 34 } 35 36 $client = new Appsero\Client( 'da35c4be-c41d-47ae-8a67-02e646a7d1f4', 'EasyCoupon – Create WooCommerce Coupons, BOGO Deals, Auto Apply Coupons, URL Coupons', __FILE__ ); 37 38 // Active insights 39 $client->insights()->init(); 40 } 41 42 add_action( 'init', 'easycoupon_appsero_init_tracker' ); 20 43 21 44 add_action( 'plugins_loaded', 'easycoupon_init' ); … … 45 68 46 69 70 -
easycoupon/trunk/readme.txt
r3228787 r3228803 2 2 Contributors: hiveplugins 3 3 Donate link: https://hiveplugins.com/easycoupon/ 4 Tags: woocommerce, coupon generator, BOGO deals, auto apply coupons, coupon URLs4 Tags: woocommerce, coupon generator, bogo deals, autoapply coupons, coupon urls 5 5 Requires PHP: 7.4 6 6 Requires at least: 6.5 … … 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 EasyCoupon is a WooCommerce plugin offering features like bulk coupon generation, auto apply coupon, BOGO deals, and coupon URLs. Simplify coupon managementto boost sales.12 EasyCoupon for WooCommerce simplifies coupon management with bulk creation, auto apply, BOGO deals, and coupon URLs to boost sales. 13 13 14 14 == Description == … … 61 61 <p>EasyCoupon is the ultimate solution for WooCommerce store owners looking to increase customer retention and drive more sales through flexible, automated, and customizable coupon management. Download and install EasyCoupon today to start boosting your WooCommerce store revenue.</p> 62 62 63 64 ## Privacy Policy 65 EasyCoupon uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements. 66 67 Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure a great user experience for all our users. 68 69 Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.** 70 71 Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/). 72 73 63 74 == Installation == 64 75 … … 92 103 Yes, it works seamlessly with most WooCommerce themes and plugins. 93 104 94 == Screenshots == 105 == Screenshots == 95 106 96 1. **Bulk Coupon Generator** - Easily generate bulk coupons from the dashboard. 97 2. **BOGO Deal Settings** - Configure Buy One Get One offers for your customers. 98 3. **Coupon URL Example** - View how the coupon URL is displayed for sharing and auto-application. 99 4. **Usage Restrictions** - Set custom usage restrictions to enhance control. 107 1. **Force Apply** - Automatically apply a single coupon by overriding all others in the cart. 108 2. **Bulk Coupon Generator** - Easily generate bulk coupons from the dashboard. 109 3. **Coupon URL Example** - View how the coupon URL is displayed for sharing and auto-application. 110 4. **BOGO Deal Settings** - Configure Buy One Get One offers for your customers. 111 100 112 101 113 == Changelog ==
Note: See TracChangeset
for help on using the changeset viewer.