Changeset 2669172
- Timestamp:
- 01/30/2022 10:35:47 AM (4 years ago)
- Location:
- offerwhere-for-woocommerce
- Files:
-
- 16 added
- 5 edited
-
tags/1.5.0 (added)
-
tags/1.5.0/CHANGELOG.txt (added)
-
tags/1.5.0/README.txt (added)
-
tags/1.5.0/class.offerwhere_api.php (added)
-
tags/1.5.0/class.offerwhere_database.php (added)
-
tags/1.5.0/class.offerwhere_http_status.php (added)
-
tags/1.5.0/class.offerwhere_message.php (added)
-
tags/1.5.0/class.offerwhere_settings.php (added)
-
tags/1.5.0/class.offerwhere_validator.php (added)
-
tags/1.5.0/class.offerwhere_woocommerce.php (added)
-
tags/1.5.0/css (added)
-
tags/1.5.0/css/offerwhere.css (added)
-
tags/1.5.0/index.php (added)
-
tags/1.5.0/js (added)
-
tags/1.5.0/js/offerwhere.js (added)
-
tags/1.5.0/offerwhere-woocommerce.php (added)
-
trunk/CHANGELOG.txt (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/css/offerwhere.css (modified) (1 diff)
-
trunk/js/offerwhere.js (modified) (1 diff)
-
trunk/offerwhere-woocommerce.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
offerwhere-for-woocommerce/trunk/CHANGELOG.txt
r2669029 r2669172 1 1 == Changelog == 2 = 1.5.0 = 3 * Prevent card from scrolling to top on click. 4 * Standardize size of loyalty program name. 5 * Update tags. 6 2 7 = 1.4.0 = 3 8 * Update CSS. -
offerwhere-for-woocommerce/trunk/README.txt
r2669029 r2669172 2 2 Contributors: offerwhere, tosinogunrinde 3 3 Author URI: https://www.offerwhere.com 4 Tags: loyalty program, reward program, points program, woocommerce, loyalty, reward, points4 Tags: Loyalty program, loyalty, points, Points and Rewards, Rewards, woocommerce 5 5 Requires at least: 3.1 6 6 Tested up to: 5.9 7 Stable tag: 1. 4.07 Stable tag: 1.5.0 8 8 Requires PHP: 7.0 9 9 WC requires at least: 3.5 … … 72 72 73 73 == Changelog == 74 = 1.4.0 = 75 * Update CSS. 74 = 1.5.0 = 75 * Prevent card from scrolling to top on click. 76 * Standardize size of loyalty program name. 77 * Update tags. 76 78 77 79 [Historical Changelog](https://raw.githubusercontent.com/tosin-ogunrinde/offerwhere-for-woocommerce-wordpress-plugin/master/offerwhere-for-woocommerce/CHANGELOG.txt) -
offerwhere-for-woocommerce/trunk/css/offerwhere.css
r2669029 r2669172 8 8 margin: 0 !important; 9 9 padding: 0 !important; 10 font-size: 1.5rem !important; 10 11 } 11 12 -
offerwhere-for-woocommerce/trunk/js/offerwhere.js
r2647433 r2669172 1 1 jQuery(document).ready(function ($) { 2 2 'use strict'; 3 $("#offerwhere-form-ask-user-for-number-toggle-button").click(function () { 3 $("#offerwhere-form-ask-user-for-number-toggle-button").click(function ($e) { 4 $e.preventDefault(); 4 5 $('#offerwhere-form-user-number-container').toggle('fast', function () { 5 6 if ($('#offerwhere-form-user-number-container').is(':visible')) { -
offerwhere-for-woocommerce/trunk/offerwhere-woocommerce.php
r2669029 r2669172 4 4 * Plugin URI: https://www.offerwhere.com/grow-business/loyalty-programs 5 5 * Description: Retain more customers. Run an effective loyalty program on your website, in your store, or from your home in minutes. 6 * Version: 1. 4.06 * Version: 1.5.0 7 7 * Requires at least: 3.1 8 8 * Tested up to: 5.9 … … 21 21 22 22 const OFFERWHERE_WORDPRESS_MINIMUM_VERSION = '3.1'; 23 const OFFERWHERE_VERSION = '1. 4.0';23 const OFFERWHERE_VERSION = '1.5.0'; 24 24 const OFFERWHERE_WOOCOMMERCE_MINIMUM_VERSION = '3.5'; 25 25
Note: See TracChangeset
for help on using the changeset viewer.