Hi,
I would like to include a tax registration and the words TAX INVOICE on the invoice that Zen Cart produces. How and where can I make these text modifications?
The following shows what I have done so far as suggested by Kim's archive post. However, it didn't work. Nothing has changed or showed up when I placed a test order. Any idea what went wrong?
============================
Open admin/ invoice.php
Find this section of code:
Code:
<tr>
<td class="pageHeading"><?php echo nl2br(STORE_NAME_ADDRESS); ?></td>
<td class="pageHeading" align="right"><?php echo zen_image(DIR_WS_IMAGES . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT); ?></td>
</tr>
Change to:
Code:
<tr>
<td class="pageHeading"><?php echo nl2br(STORE_NAME_ADDRESS); ?></td>
<td class="pageHeading"><?php echo TITLE_INVOICE; ?></td>
<td class="pageHeading" align="right"><?php echo zen_image(DIR_WS_IMAGES . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT); ?></td>
</tr>
Open admin/includes/languages/english/invoice.php
add:
define('TITLE_INVOICE', 'Tax Invoice');
In Admin>Configuration>My Store>Store Address and Phone
add: TaxID #XXXXXXXXX
============================



