Plugin Directory

Changeset 1584214


Ignore:
Timestamp:
01/28/2017 04:08:27 PM (9 years ago)
Author:
RPG84
Message:
  • Selecting none in the item select and saving will now also save when no items are selected.
Location:
tradetracker-store
Files:
71 added
3 edited

Legend:

Unmodified
Added
Removed
  • tradetracker-store/trunk/Tradetracker-Store.php

    r1583787 r1584214  
    33* Plugin Name: Tradetracker-Store
    44* Plugin URI: http://wpaffiliatefeed.com
    5 * Version: 4.6.37
     5* Version: 4.6.38
    66* Description: A Plugin that will add a TradeTracker affiliate feed to your site with several options to choose from.
    77* Author: Robert Braam
     
    145145$pro_table_prefix=$wpdb->prefix.'tradetracker_';
    146146define('PRO_TABLE_PREFIX', $pro_table_prefix);
    147 update_option("TTstoreversion", "4.6.18" );
     147update_option("Tradetracker_sliderenable", '1');
     148update_option("TTstoreversion", "4.6.36" );
    148149$ttstoretable = PRO_TABLE_PREFIX."store";
    149150$ttstorelayouttable = PRO_TABLE_PREFIX."layout";
  • tradetracker-store/trunk/menu/itemselect.php

    r1430889 r1584214  
    133133    if( isset($_POST[ $ttstoresubmit ]) && $_POST[ $ttstoresubmit ] == 'Y' ) {
    134134        $Tradetracker_items = $_POST['item'];
    135         if(isset($Tradetracker_items) && $Tradetracker_items != ""){
     135        if((isset($Tradetracker_items) && $Tradetracker_items != "") || $Tradetracker_items == ""){
    136136            $query = "DELETE FROM `".$ttstoreitemtable."` WHERE `".$ttstoreitemtable."`.`storeID` = ".$multiid."";
    137137            $wpdb->query($query);
  • tradetracker-store/trunk/readme.txt

    r1583787 r1584214  
    55Requires at least: 4
    66Tested up to: 4.7.2
    7 Stable tag: 4.6.37
     7Stable tag: 4.6.38
    88
    99A plugin that lets you import an XML productfeed from TradeTracker.
     
    4242
    4343== Changelog ==
     44= 4.6.38 =
     45- Selecting none in the item select and saving will now also save when no items are selected.
     46
    4447= 4.6.37 =
    4548- Added option in plugin settings to disable price slider
Note: See TracChangeset for help on using the changeset viewer.