a. In yourcart/includes/languages/english/YOURTEMPLATE/button_names.php ADD the following line (in alphabetical sequence is fine or anywhere):
define('BUTTON_IMAGE_ADD_PRODUCT','button_add_product.gif');
b. in yourcart/admin/includes/languages/english.php ADD
define('IMAGE_ADD_PRODUCT','Add Product');
c. Now here's the tricky one - in the 'Orders Total' block in admin/edit_orders.php (around line 860)
FIND:
<td align='center' valign='top'><br><a href="<?php echo $PHP_SELF . "?oID=$oID&action=add_product&step=1"; ?>"><u><b><font size='3'><?php echo TEXT_DATE_ORDER_ADDNEW; ?> </font></b></u></a></td>
and REPLACE IT WITH:
<td align='center' valign='top'><br><a href="<?php echo $PHP_SELF . "?oID=$oID&action=add_product&step=1"; ?>"><?php echo zen_image_button('button_add_product.gif',IMAGE_ADD_PRODUCT) ?></a></td>
(Actually I prefer to comment out the old one and add the new one just in case.)
Bookmarks