Changeset 1040414
- Timestamp:
- 12/08/2014 03:35:00 PM (11 years ago)
- Location:
- 2kb-amazon-affiliates-store/trunk
- Files:
-
- 4 edited
-
KbAmazonStore.php (modified) (2 diffs)
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
template/admin/version.phtml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
2kb-amazon-affiliates-store/trunk/KbAmazonStore.php
r1008393 r1040414 541 541 public function isProductAvailable($id) 542 542 { 543 $meta = $this->getProductMeta($id); 544 if (isset($meta['KbAmzOfferSummary.TotalNew']) 545 && $meta['KbAmzOfferSummary.TotalNew'] > 0) { 546 return true; 547 } else if (isset($meta['KbAmzOfferSummary.TotalUsed']) 543 544 /*else if (isset($meta['KbAmzOfferSummary.TotalUsed']) 548 545 && $meta['KbAmzOfferSummary.TotalUsed'] > 0) { 549 546 return true; … … 553 550 } else if (isset($meta['KbAmzOfferSummary.TotalRefurbished']) 554 551 && $meta['KbAmzOfferSummary.TotalRefurbished'] > 0) { 552 return true; 553 } */ 554 555 $meta = $this->getProductMeta($id); 556 if (isset($meta['KbAmzOfferSummary.TotalNew']) 557 && $meta['KbAmzOfferSummary.TotalNew'] > 0) { 555 558 return true; 556 559 } else { -
2kb-amazon-affiliates-store/trunk/plugin.php
r1008393 r1040414 4 4 * Plugin URI: http://www.2kblater.com/?p=8318 5 5 * Description: Amazon Affiliate Store Plugin With Cart, Checkout, Custom Themes. Easy to manage and setup. Sell wide range of physical and digital products imported from Amazon Affiliate API using 90 days cookie reference. This plugin is released with GPL2 license. 6 * Version: 1.0. 96 * Version: 1.0.10 7 7 * Author: 2kblater.com 8 8 * Author URI: http://www.2kblater.com … … 16 16 } 17 17 18 define('KbAmazonVersion', '1.0. 9');19 define('KbAmazonVersionNumber', 10 9);18 define('KbAmazonVersion', '1.0.10'); 19 define('KbAmazonVersionNumber', 1010); 20 20 define('KbAmazonStoreFolderName', pathinfo(dirname(__FILE__), PATHINFO_FILENAME)); 21 21 define('KbAmazonStorePluginPath', dirname(__FILE__) . '/'); -
2kb-amazon-affiliates-store/trunk/readme.txt
r1008393 r1040414 3 3 Requires at least: 4.0 4 4 Tested up to: 4.0 5 Stable tag: 1.0. 95 Stable tag: 1.0.10 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 36 36 37 37 == Changelog == 38 = 1.0.10 = 39 isProductAvailable now only checks for new and free products to determine availability 38 40 = 1.0.9 = 39 41 kb_amz_list_products shortcode accept short code parameters with php code. Ex. [kb_amz_list_products attribute_value="<? date('Y-m-d', time() - 3600); ?>"]. -
2kb-amazon-affiliates-store/trunk/template/admin/version.phtml
r1008393 r1040414 1 1 <div class="row" id="kb-amz-version"> 2 2 <div class="col-sm-12"> 3 <h4>1.0.10</h4> 4 <ul style="list-style-type: disc;"> 5 <li>isProductAvailable now only checks for new and free products to determine availability</li> 6 </ul> 3 7 <h4>1.0.9</h4> 4 8 <ul style="list-style-type: disc;">
Note: See TracChangeset
for help on using the changeset viewer.