Changeset 1070290
- Timestamp:
- 01/18/2015 09:08:05 AM (11 years ago)
- Location:
- 2kb-amazon-affiliates-store/trunk
- Files:
-
- 5 edited
-
KbAmazonStore.php (modified) (1 diff)
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
store_shortcodes.php (modified) (2 diffs)
-
template/admin/version.phtml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
2kb-amazon-affiliates-store/trunk/KbAmazonStore.php
r1065841 r1070290 84 84 'attribute_key' => '(See Product Attributes)', 85 85 'attribute_value' => '(Explore Attributes Value)', 86 'attribute_compare' => "'=', '!=', '>', '>=', '<', '<=', 'LIKE', 'NOT LIKE', 'IN', 'NOT IN', 'BETWEEN'" 86 'attribute_compare' => "'=', '!=', '>', '>=', '<', '<=', 'LIKE', 'NOT LIKE', 'IN', 'NOT IN', 'BETWEEN'", 87 'post_status' => '<b>publish</b> / any' 87 88 ), 88 89 'active' => true, -
2kb-amazon-affiliates-store/trunk/plugin.php
r1065841 r1070290 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.1. 36 * Version: 1.1.4 7 7 * Author: 2kblater.com 8 8 * Author URI: http://www.2kblater.com … … 16 16 } 17 17 18 define('KbAmazonVersion', '1.1. 3');19 define('KbAmazonVersionNumber', 11 3);18 define('KbAmazonVersion', '1.1.4'); 19 define('KbAmazonVersionNumber', 114); 20 20 define('KbAmazonStoreFolderName', pathinfo(dirname(__FILE__), PATHINFO_FILENAME)); 21 21 define('KbAmazonStorePluginPath', dirname(__FILE__) . '/'); -
2kb-amazon-affiliates-store/trunk/readme.txt
r1065841 r1070290 3 3 Requires at least: 4.0 4 4 Tested up to: 4.1 5 Stable tag: 1.1. 35 Stable tag: 1.1.4 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.1.4 = 39 Fixed bug when listing products with no quantity left. kb_amz_list_products now lists only products (posts) with post_status = publish be default, which can be changed. 38 40 = 1.1.3 = 39 41 Fixed bug for creating multiple checkout pages. -
2kb-amazon-affiliates-store/trunk/store_shortcodes.php
r1063905 r1070290 296 296 'title' => null, 297 297 'pagination' => 'Yes', 298 'items_per_row' => null 298 'items_per_row' => null, 299 'post_status' => 'publish' 299 300 ), $atts, 'kb_amz_list_products'); 300 301 … … 324 325 $atts['post_type'] = 'post'; 325 326 //$atts['meta_key'] = 'KbAmzASIN'; 326 $atts['post_status'] = 'any';327 //$atts['post_status'] = 'publish'; 327 328 $atts['paged'] = $atts['pagination'] ? getKbAmzPaged() : null; 328 329 $atts['meta_query'] = array(); -
2kb-amazon-affiliates-store/trunk/template/admin/version.phtml
r1065841 r1070290 1 1 <div class="row" id="kb-amz-version"> 2 2 <div class="col-sm-12"> 3 4 <h4>1.1.4</h4> 5 <ul style="list-style-type: disc;"> 6 <li>Fixed bug when listing products with no quantity left. kb_amz_list_products now lists only products (posts) with post_status = publish be default, which can be changed.</li> 7 </ul> 3 8 <h4>1.1.3</h4> 4 9 <ul style="list-style-type: disc;">
Note: See TracChangeset
for help on using the changeset viewer.