The logo used on Admin pages and on output from admin is admin/images/logo.gif
If you want to rename this, you should edit the following code from admin/languages/english.php
// added defines for header alt and text
define('HEADER_ALT_TEXT', 'Admin Powered by Zen Cart :: The Art of E-Commerce');
define('HEADER_LOGO_WIDTH', '200');
define('HEADER_LOGO_HEIGHT', '70');
define('HEADER_LOGO_IMAGE', 'YOUR_LOGO_NAME.EXT');
Edit the information for your own logo,
save the file back to admin/includes/languages/english.php and upload it to your server.
Place your logo image in admin/images/YOUR_LOGO._NAME.EXT and upload to your server
If you have changed the size of your logo, please note that the invoice and packing slips functions do not currently take any notice of this. To encourage them to be more receptive, find the following line in admin/invoice.php and admin/packingslip.php
<td class="pageHeading" align="right"><?php echo zen_image(DIR_WS_IMAGES . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT); ?></td>
and edit it to read
<td class="pageHeading" align="right"><?php echo zen_image(DIR_WS_IMAGES . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT, HEADER_LOGO_WIDTH, HEADER_LOGO_HEIGHT); ?></td>
If you want to rename this, you should edit the following code from admin/languages/english.php
// added defines for header alt and text
define('HEADER_ALT_TEXT', 'Admin Powered by Zen Cart :: The Art of E-Commerce');
define('HEADER_LOGO_WIDTH', '200');
define('HEADER_LOGO_HEIGHT', '70');
define('HEADER_LOGO_IMAGE', 'YOUR_LOGO_NAME.EXT');
Edit the information for your own logo,
save the file back to admin/includes/languages/english.php and upload it to your server.
Place your logo image in admin/images/YOUR_LOGO._NAME.EXT and upload to your server
If you have changed the size of your logo, please note that the invoice and packing slips functions do not currently take any notice of this. To encourage them to be more receptive, find the following line in admin/invoice.php and admin/packingslip.php
<td class="pageHeading" align="right"><?php echo zen_image(DIR_WS_IMAGES . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT); ?></td>
and edit it to read
<td class="pageHeading" align="right"><?php echo zen_image(DIR_WS_IMAGES . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT, HEADER_LOGO_WIDTH, HEADER_LOGO_HEIGHT); ?></td>
- 0 Users Found This Useful