Changeset 975330
- Timestamp:
- 08/29/2014 04:37:46 PM (12 years ago)
- Location:
- 2kb-amazon-affiliates-store/trunk
- Files:
-
- 4 edited
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
store_shortcodes.php (modified) (1 diff)
-
template/admin/version.phtml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
2kb-amazon-affiliates-store/trunk/plugin.php
r932409 r975330 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. 36 * Version: 1.0.5 7 7 * Author: 2kblater.com 8 8 * Author URI: http://www.2kblater.com … … 16 16 } 17 17 18 define('KbAmazonVersion', '1.0. 3');19 define('KbAmazonVersionNumber', 10 3);18 define('KbAmazonVersion', '1.0.5'); 19 define('KbAmazonVersionNumber', 105); 20 20 define('KbAmazonStoreFolderName', pathinfo(dirname(__FILE__), PATHINFO_FILENAME)); 21 21 define('KbAmazonStorePluginPath', dirname(__FILE__) . '/'); -
2kb-amazon-affiliates-store/trunk/readme.txt
r975024 r975330 37 37 == Changelog == 38 38 39 = 1.0.5 = 40 Category fix in [kb_amz_list_products] 39 41 = 1.0.4 = 40 42 Some bugs got fixed. Thank you for your support. -
2kb-amazon-affiliates-store/trunk/store_shortcodes.php
r932025 r975330 304 304 $category = null; 305 305 if (!empty($atts['category'])) { 306 $ id= is_numeric($atts['category'])306 $category = is_numeric($atts['category']) 307 307 ? $atts['category'] 308 308 : get_cat_ID($atts['category']); 309 $category = get_category($id); 310 } 311 312 $atts['category'] = is_object($category) ? $category->ID : null; 309 } 310 311 $atts['cat'] = $category; 313 312 $atts['post_type'] = 'post'; 314 313 $atts['meta_key'] = 'KbAmzASIN'; 315 314 $atts['post_status'] = 'any'; 316 315 $atts['paged'] = getKbAmzPaged(); 317 316 318 317 if (isset($atts['attributeKey']) && isset($atts['attributeValue'])) { 319 318 $atts['meta_query'] = array( -
2kb-amazon-affiliates-store/trunk/template/admin/version.phtml
r975024 r975330 1 1 <div class="row" id="kb-amz-version"> 2 2 <div class="col-sm-12"> 3 <h4>1.0.5</h4> 4 <ul style="list-style-type: disc;"> 5 <li>Category fix in [kb_amz_list_products]</li> 6 </ul> 3 7 <h4>1.0.4</h4> 4 8 <ul style="list-style-type: disc;">
Note: See TracChangeset
for help on using the changeset viewer.