User Tools

Site Tools


tutorials:zencartmods:ez_update

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
tutorials:zencartmods:ez_update [2011/10/05 16:49]
daigo created
tutorials:zencartmods:ez_update [2016/01/28 18:05] (current)
Line 1: Line 1:
 +====== Easy Updates ======
 +
 Zencart'​s inventory management is bulky and can sometimes take way too long to do really simple things -- like changing the stock of many items at once.  Zencart'​s inventory management is bulky and can sometimes take way too long to do really simple things -- like changing the stock of many items at once. 
  
-To fix this, we've made an admin page calles **easy_update.php** that can do lots of stock changes at once, as well as organize products by stock, ordered but not shipped, and # of people subscribed.+To fix this, we've made an admin page calles **easy_update.php** that can do lots of stock changes at once, as well as organize products by stock, ordered but not shipped, and # of people subscribed. ​This is our daily go-to for the store inventory '​health'​ - letting us know whats the most important thing to get back into stock at a glance
  
-Here's the file we use:+{{ :tutorials:​zencartmods:​easyupdates.gif?​ |}}
  
 +(recall that we keep 3 pieces of each item on hand for emergencies such as replacements or lost shipments, etc. which is why at qty 3 its considered out of stock)
 +
 +Here's the file we use:
  
 +{{:​tutorials:​zencartmods:​ez_update.php.zip|}}
  
 Download this file and follow the instructions [[http://​ladyada.net/​wiki/​tutorials/​zencartmods/​helper.html|here]] to place it in the admin menu.  Download this file and follow the instructions [[http://​ladyada.net/​wiki/​tutorials/​zencartmods/​helper.html|here]] to place it in the admin menu. 
Line 15: Line 21:
 The html table on this page is also sorted with the [[http://​tablesorter.com/​docs/​|tablesorter plugin]]. Download the newest version of **jquery.tablesorter.min.js** and save it in your **admin/​includes/​javascript** directory. The html table on this page is also sorted with the [[http://​tablesorter.com/​docs/​|tablesorter plugin]]. Download the newest version of **jquery.tablesorter.min.js** and save it in your **admin/​includes/​javascript** directory.
  
 +The tablesorter plugin is pretty great - it will automatically choose whether to sort numerically or alphabetically,​ and you can hold down the shift key to sort by multiple columns at once. 
 ==== CSS ==== ==== CSS ====
  
Line 70: Line 77:
  
  
-NOTE: This file uses the [[http://​www.ladyada.net/​library/​zencart/​backinstock.html|back in stock notification mod]]. If you haven'​t added this mod on your site then you'll need to remove ​this code block from this file:+NOTE: This file uses the [[http://​www.ladyada.net/​library/​zencart/​backinstock.html|back in stock notification mod]]. If you haven'​t added this mod on your site then you'll need to remove ​these code blocks ​from this file:
  
 +Line 18
 +<code php>
 +require('​includes/​languages/​english/​back_in_stock_notifications.php'​);​
 +</​code>​
 +
 +Line 125
 <code php> <code php>
   // Remove this section if you are not using the back_in_stock_notification_manager plugin ​                                                                                                                                                                                     // Remove this section if you are not using the back_in_stock_notification_manager plugin ​                                                                                                                                                                                  
Line 82: Line 95:
   }   }
   // remove up to here for back_in_stock_notification mod   // remove up to here for back_in_stock_notification mod
 +</​code>​
 +
 +Line 231
 +<code html>
 +  <​th>​notification subscribed</​th>​
 +</​code>​
 +
 +Line 253:
 +<code php>
 +  <​td><?​php echo $info['​notification_subscribed'​];​ ?></​td>​
 </​code>​ </​code>​
  
/home/ladyada/public_html/wiki/data/attic/tutorials/zencartmods/ez_update.1317833367.txt.gz · Last modified: 2016/01/28 18:05 (external edit)