Changeset 1920092
- Timestamp:
- 08/05/2018 07:59:01 PM (8 years ago)
- Location:
- 2kb-amazon-affiliates-store/trunk
- Files:
-
- 1 deleted
- 4 edited
-
KbAmazonImporter.php (modified) (3 diffs)
-
nbproject (deleted)
-
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/KbAmazonImporter.php
r1360010 r1920092 430 430 * @return array|null 431 431 */ 432 public function find($asin, $responseGroup = false )432 public function find($asin, $responseGroup = false, $country = null) 433 433 { 434 434 if (!$responseGroup) { … … 439 439 440 440 $firstAsin = is_array($asin) ? $asin[key($asin)] : $asin; 441 $country = getKbAmz()->getProductCountry($firstAsin); 441 if (!$country) { 442 $country = getKbAmz()->getProductCountry($firstAsin); 443 } 442 444 443 445 $key = is_array($asin) ? implode(' ', $asin) : $asin . serialize($responseGroup); … … 454 456 $amazonApi = getKbAmazonApi($country); 455 457 $result = $amazonApi->responseGroup(implode(',', $responseGroup)) 456 ->lookup($asin , array('Condition' => 'New', 'Availability' => 'Available'));458 ->lookup($asin/*, array('Condition' => 'New', 'Availability' => 'Available')*/); 457 459 $country = $amazonApi->country(); 458 460 -
2kb-amazon-affiliates-store/trunk/plugin.php
r1810362 r1920092 4 4 * Plugin URI: http://www.2kblater.com/?p=8318 5 5 * Description: Amazon Affiliate Store Plugin With Variants, Cart, Checkout, Custom Themes, Variants and Versions. Easy to manage and setup. Sell wide range of physical and digital products imported from Amazon Affiliate API using 90 days cookie reference. 6 * Version: 2.1. 26 * Version: 2.1.3 7 7 * Author: 2kblater.com 8 8 * Author URI: http://www.2kblater.com … … 20 20 } 21 21 22 define('KbAmazonVersion', '2.1. 2');23 define('KbAmazonVersionNumber', 21 2);22 define('KbAmazonVersion', '2.1.3'); 23 define('KbAmazonVersionNumber', 213); 24 24 define('KbAmazonStoreFolderName', pathinfo(dirname(__FILE__), PATHINFO_FILENAME)); 25 25 define('KbAmazonStorePluginPath', dirname(__FILE__) . '/'); -
2kb-amazon-affiliates-store/trunk/readme.txt
r1810362 r1920092 3 3 Requires at least: 4.0 4 4 Tested up to: 4.8 5 Stable tag: 2.1. 15 Stable tag: 2.1.3 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 46 46 10. /assets/screenshot-10.jpg 47 47 == Changelog == 48 = 2.1.3 = 49 Country update 48 50 = 2.1.2 = 49 51 Modal stuck after install fix -
2kb-amazon-affiliates-store/trunk/template/admin/version.phtml
r1810362 r1920092 1 1 <div class="row" id="kb-amz-version"> 2 2 <div class="col-sm-12"> 3 <h4>2.1.3</h4> 4 <ul style="list-style-type: disc;"> 5 <li> 6 Country update 7 </li> 8 </ul> 3 9 <h4>2.1.2</h4> 4 10 <ul style="list-style-type: disc;">
Note: See TracChangeset
for help on using the changeset viewer.