Changeset 1564322
- Timestamp:
- 12/29/2016 01:34:47 PM (9 years ago)
- Location:
- tradetracker-store
- Files:
-
- 70 added
- 3 edited
-
tags/4.6.33 (added)
-
tags/4.6.33/Tradetracker-Store.php (added)
-
tags/4.6.33/cache (added)
-
tags/4.6.33/debug.php (added)
-
tags/4.6.33/front.php (added)
-
tags/4.6.33/functions.php (added)
-
tags/4.6.33/images (added)
-
tags/4.6.33/images/No_image.png (added)
-
tags/4.6.33/images/ajax-loader.gif (added)
-
tags/4.6.33/images/more.png (added)
-
tags/4.6.33/import (added)
-
tags/4.6.33/import/database.php (added)
-
tags/4.6.33/import/xml.php (added)
-
tags/4.6.33/import/xmlsplit.php (added)
-
tags/4.6.33/js (added)
-
tags/4.6.33/js/expand.js (added)
-
tags/4.6.33/menu (added)
-
tags/4.6.33/menu/expand.js (added)
-
tags/4.6.33/menu/faq.php (added)
-
tags/4.6.33/menu/images (added)
-
tags/4.6.33/menu/images/Premium-addons.png (added)
-
tags/4.6.33/menu/images/add-edit-stores.png (added)
-
tags/4.6.33/menu/images/debug.png (added)
-
tags/4.6.33/menu/images/enhanced-distribution.png (added)
-
tags/4.6.33/menu/images/item-selection.png (added)
-
tags/4.6.33/menu/images/kruisje.png (added)
-
tags/4.6.33/menu/images/layout-settings.png (added)
-
tags/4.6.33/menu/images/overlay.png (added)
-
tags/4.6.33/menu/images/product-page.png (added)
-
tags/4.6.33/menu/images/screenshot-1.png (added)
-
tags/4.6.33/menu/images/tb-close.png (added)
-
tags/4.6.33/menu/images/vinkje.png (added)
-
tags/4.6.33/menu/images/xml-feed-options.png (added)
-
tags/4.6.33/menu/itemselect.php (added)
-
tags/4.6.33/menu/layout.php (added)
-
tags/4.6.33/menu/main.js (added)
-
tags/4.6.33/menu/menu.css (added)
-
tags/4.6.33/menu/menu.php (added)
-
tags/4.6.33/menu/news.php (added)
-
tags/4.6.33/menu/pluginsettings.php (added)
-
tags/4.6.33/menu/premium.php (added)
-
tags/4.6.33/menu/releaselog.php (added)
-
tags/4.6.33/menu/search.php (added)
-
tags/4.6.33/menu/showlayout.php (added)
-
tags/4.6.33/menu/store.php (added)
-
tags/4.6.33/menu/style.css (added)
-
tags/4.6.33/menu/xmlfeed.php (added)
-
tags/4.6.33/menu/xmloption.php (added)
-
tags/4.6.33/readme.txt (added)
-
tags/4.6.33/screenshot-1.png (added)
-
tags/4.6.33/screenshot-2.png (added)
-
tags/4.6.33/screenshot-3.png (added)
-
tags/4.6.33/splits (added)
-
tags/4.6.33/tinymce (added)
-
tags/4.6.33/tinymce/cart.png (added)
-
tags/4.6.33/tinymce/test.js (added)
-
tags/4.6.33/tinymce/tinyTT.php (added)
-
tags/4.6.33/tinymce/tinymce.php (added)
-
tags/4.6.33/tinymce/ttmce.js (added)
-
tags/4.6.33/translation (added)
-
tags/4.6.33/translation/default.mo (added)
-
tags/4.6.33/translation/default.po (added)
-
tags/4.6.33/translation/tradetracker-store-nl_NL.mo (added)
-
tags/4.6.33/translation/tradetracker-store-nl_NL.po (added)
-
tags/4.6.33/translation/ttstore-nl_NL.mo (added)
-
tags/4.6.33/translation/ttstore-nl_NL.po (added)
-
tags/4.6.33/uninstall.php (added)
-
tags/4.6.33/upgrading.php (added)
-
tags/4.6.33/widget (added)
-
tags/4.6.33/widget/widget.php (added)
-
trunk/Tradetracker-Store.php (modified) (1 diff)
-
trunk/front.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tradetracker-store/trunk/Tradetracker-Store.php
r1557838 r1564322 3 3 * Plugin Name: Tradetracker-Store 4 4 * Plugin URI: http://wpaffiliatefeed.com 5 * Version: 4.6.3 25 * Version: 4.6.33 6 6 * Description: A Plugin that will add a TradeTracker affiliate feed to your site with several options to choose from. 7 7 * Author: Robert Braam -
tradetracker-store/trunk/front.php
r1557838 r1564322 196 196 function show_ttuserpages($winkelvol) 197 197 { 198 global $wpdb; 199 global $ttstoremultitable; 198 200 if(isset($_GET['ipp'])){ 199 201 if(is_numeric($_GET['ipp']) && $_GET['ipp'] > "0"){ 200 202 $itemsperpage = $_GET['ipp']; 201 203 } else { 202 $itemsperpage = "0";204 $itemsperpage = $wpdb->get_var( "SELECT multipageamount FROM $ttstoremultitable where id='".$winkelvol."';" ); 203 205 } 204 206 } else { 205 $itemsperpage = "0";207 $itemsperpage = $wpdb->get_var( "SELECT multipageamount FROM $ttstoremultitable where id='".$winkelvol."';" ); 206 208 } 207 209 $userperpage = "<form action=\"\" method=\"get\" class=\"itemsperpage\" name=\"itemsperpage\" >"; -
tradetracker-store/trunk/readme.txt
r1557838 r1564322 5 5 Requires at least: 4 6 6 Tested up to: 4.7 7 Stable tag: 4.6.3 27 Stable tag: 4.6.33 8 8 9 9 A plugin that lets you import an XML productfeed from TradeTracker. … … 43 43 == Changelog == 44 44 = 4.6.32 = 45 - Small fix because MariaDB is causing issues around double quotes 46 - Small fix that will auto select the page amount on your front page of you website when your store option matches one of the default options 47 48 = 4.6.32 = 45 49 - Small fix to remove a SQL error when system things you selected a specific feed while you didn't 46 50
Note: See TracChangeset
for help on using the changeset viewer.