var zoomy = "\n\

Make numbers bigger and redder to avoid confusion

\n\
\n\ \n\

\n\ This mod tweaks the invoice to make numbers larger/highlighed when the quantity is not 1. We had a bunch of orders where someone bought 2 of something and only one shipped and this helped avoid confusion\n\

\n\ \n\

\n\ (This presupposes that you have already done the mods above.)\n\
\n\
\n\ \n\

\n\ \n\

\n\ \"\" \n\

\n\ \n\
\n\ \n\

admin/invoice.php

\n\
\n\ \n\

\n\ Find (line 165)\n\

\n\
          echo  \'      <tr class="dataTableRow">\' . "\\n" . \'<td class="dataTableContent"  valign="center">(&nbsp;)&nbsp;<img width="100" src="/images/\' . $invoice_image . \'" /></td>\' .\n\
            \'        <td class="dataTableContent" valign="top" align="right">&nbsp;\' . $order->products[$i][\'qty\'] . \'&nbsp;x</td>\' . "\\n" .\n\
            \'        <td class="dataTableContent" valign="top">\' . $order->products[$i][\'name\'];
\n\ \n\

\n\ and replace with \n\

\n\
if ($order->products[$i][\'qty\']  > 1) {\n\
              echo \'<tr class="dataTableRow">\' . "\\n" . \'<td class="dataTableContent"  valign="center">(&nbsp;)&nbsp;<img width="100" src="/images/\' . $invoice_image . \'" /></td>\' .\n\
           \'        <td class="dataTableContent" valign="top" align="right">&nbsp;<b><font color="FF0000" size="4">\' . $order->products[$i][\'qty\'] . \'</font></b>&nbsp;x</td>\' . "\\n" .\n\
           \'        <td class="dataTableContent" valign="top">\' . $order->products[$i][\'name\'];\n\
         } else {\n\
     echo \'<tr class="dataTableRow">\' . "\\n" . \'<td class="dataTableContent"  valign="center">(&nbsp;)&nbsp;<img width="100" src="/images/\' . $invoice_image . \'" /></td>\' .\n\
           \'        <td class="dataTableContent" valign="top" align="right">&nbsp;\' . $order->products[$i][\'qty\'] . \'&nbsp;x</td>\' . "\\n" .\n\
           \'        <td class="dataTableContent" valign="top">\' . $order->products[$i][\'name\'];\n\
        }
\n\ \n\
\n\ ";document.write(zoomy);document.write("

This page was autogenerated from http://www.ladyada.net/wiki/tutorials/zencartmods/invnumbers.html
Please edit the wiki to contribute any updates or corrections.
")