Plugin Directory

Changeset 1070290


Ignore:
Timestamp:
01/18/2015 09:08:05 AM (11 years ago)
Author:
2kblater.com
Message:

1.1.4

Location:
2kb-amazon-affiliates-store/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • 2kb-amazon-affiliates-store/trunk/KbAmazonStore.php

    r1065841 r1070290  
    8484                'attribute_key' => '(See Product Attributes)',
    8585                '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'
    8788            ),
    8889            'active' => true,
  • 2kb-amazon-affiliates-store/trunk/plugin.php

    r1065841 r1070290  
    44 * Plugin URI: http://www.2kblater.com/?p=8318
    55 * 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.3
     6 * Version: 1.1.4
    77 * Author: 2kblater.com
    88 * Author URI: http://www.2kblater.com
     
    1616}
    1717
    18 define('KbAmazonVersion', '1.1.3');
    19 define('KbAmazonVersionNumber', 113);
     18define('KbAmazonVersion', '1.1.4');
     19define('KbAmazonVersionNumber', 114);
    2020define('KbAmazonStoreFolderName',  pathinfo(dirname(__FILE__), PATHINFO_FILENAME));
    2121define('KbAmazonStorePluginPath',  dirname(__FILE__) . '/');
  • 2kb-amazon-affiliates-store/trunk/readme.txt

    r1065841 r1070290  
    33Requires at least: 4.0
    44Tested up to: 4.1
    5 Stable tag: 1.1.3
     5Stable tag: 1.1.4
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3636
    3737== Changelog ==
     38= 1.1.4 =
     39Fixed 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.
    3840= 1.1.3 =
    3941Fixed bug for creating multiple checkout pages.
  • 2kb-amazon-affiliates-store/trunk/store_shortcodes.php

    r1063905 r1070290  
    296296        'title'             => null,
    297297        'pagination'        => 'Yes',
    298         'items_per_row'     => null
     298        'items_per_row'     => null,
     299        'post_status'       => 'publish'
    299300    ), $atts, 'kb_amz_list_products');
    300301   
     
    324325    $atts['post_type']      = 'post';
    325326    //$atts['meta_key']       = 'KbAmzASIN';
    326     $atts['post_status']    = 'any';
     327    //$atts['post_status']    = 'publish';
    327328    $atts['paged']          = $atts['pagination'] ? getKbAmzPaged() : null;
    328329    $atts['meta_query']     = array();
  • 2kb-amazon-affiliates-store/trunk/template/admin/version.phtml

    r1065841 r1070290  
    11<div class="row" id="kb-amz-version">
    22    <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>
    38        <h4>1.1.3</h4>
    49        <ul style="list-style-type: disc;">
Note: See TracChangeset for help on using the changeset viewer.