Changeset 2775742
- Timestamp:
- 08/25/2022 05:48:58 PM (4 years ago)
- Location:
- swidget-for-cmp
- Files:
-
- 20 added
- 3 edited
-
tags/1.8.0 (added)
-
tags/1.8.0/edd (added)
-
tags/1.8.0/edd/class-edd-session.php (added)
-
tags/1.8.0/edd/libraries (added)
-
tags/1.8.0/edd/libraries/class-recursive-arrayaccess.php (added)
-
tags/1.8.0/edd/libraries/class-wp-session.php (added)
-
tags/1.8.0/edd/libraries/wp-session.php (added)
-
tags/1.8.0/readme.txt (added)
-
tags/1.8.0/settingsPage.php (added)
-
tags/1.8.0/swidget-cmp.php (added)
-
tags/1.8.1 (added)
-
tags/1.8.1/edd (added)
-
tags/1.8.1/edd/class-edd-session.php (added)
-
tags/1.8.1/edd/libraries (added)
-
tags/1.8.1/edd/libraries/class-recursive-arrayaccess.php (added)
-
tags/1.8.1/edd/libraries/class-wp-session.php (added)
-
tags/1.8.1/edd/libraries/wp-session.php (added)
-
tags/1.8.1/readme.txt (added)
-
tags/1.8.1/settingsPage.php (added)
-
tags/1.8.1/swidget-cmp.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/settingsPage.php (modified) (1 diff)
-
trunk/swidget-cmp.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
swidget-for-cmp/trunk/readme.txt
r2771143 r2775742 5 5 Requires at least: 4.1.0 6 6 Tested up to: 5.8.1 7 Stable tag: 1. 77 Stable tag: 1.8 8 8 Requires PHP: 5.2 9 9 License: GPLv2 or later … … 167 167 == Changelog == 168 168 169 = 1.8.1 = 170 171 * Removed "Max Displayed Qty" option (in favor of item-specific settings) 172 173 = 1.8.0 = 174 175 * Added "Max Displayed Qty" option 176 169 177 = 1.7.0 = 170 178 171 * Added gift card balance-check shortcode179 * Added `swcardbalance` shortcode and functionality 172 180 173 181 = 1.6.0 = -
swidget-for-cmp/trunk/settingsPage.php
r2738219 r2775742 8 8 "sw_date_format" => array("Date Format (see <a href='https://momentjs.com/docs/#/parsing/string-format/' target='_new'>this guide</a> for possible tokens to use)", "text"), 9 9 "sw_low_qty" => array("Low Qty", "number"), 10 //"sw_max_display_qty" => array("Max Displayed Qty", "number"), 10 11 "sw_radio_cutoff" => array("Radio Button Cutoff for Timed Items (max before change to dropdown)", "number"), 11 12 "sw_display_product_name" => array("Display Product Name?", "yn"), -
swidget-for-cmp/trunk/swidget-cmp.php
r2771143 r2775742 5 5 GitHub Plugin URI: CMP-Studio/swidget-cmp 6 6 Description: Siriusware Widget for Carnegie Museusms of Pittsburgh 7 Version: 1. 7.07 Version: 1.8.1 8 8 Author: Carnegie Museums of Pittsburgh 9 9 Author URI: http://www.carnegiemuseums.org … … 26 26 const SWCMP_AS_ARRAY = false; 27 27 const SWCMP_AS_JSON = true; 28 const SWCMP_DEBUGMODE = false;28 const SWCMP_DEBUGMODE = true; 29 29 30 30 … … 96 96 "sw_date_format" => "dateFormat", 97 97 "sw_low_qty" => "lowQty", 98 //"sw_max_display_qty" => "maxDisplayQty", 98 99 "sw_radio_cutoff" => "radioCutoff", 99 100 "sw_display_product_name" => "displayName", … … 378 379 $cart = intval($co_atts["cart"]); 379 380 if (!$cart) { 381 echo "<!-- get cart for site $site ? -->\n"; 380 382 $cart = swcmp_get_cart($site); 381 383 }
Note: See TracChangeset
for help on using the changeset viewer.