Hi there,
Just in case there's anyone out there like me that needs step-by-step instructions. Here you go!
To begin, visit that link in the first post and scroll down to "Full Source Download" and click that to download the files for this fix. Or, you can save it from here (same source):
http://koivi.com/ie-png-transparency.zip
Here's the steps I took to get this working...
- First, I put the "replacePngTags.php" file in my shop directory (where ZC is installed).
- Then I copied the spacer.png (1x1px image) to my shop/includes/templates/MY_CUSTOM_TEMPLATE/images directory. (Your custom template (override directory) may be named something else.)
- I opened the tpl_header.php file located here:
shop/includes/templates/MY_CUSTOM_TEMPLATE/common/tpl_header.php
and pasted in this code at the very top above everything else...
Code:
<?php ob_start(); ?>
- Then, I pasted this code...
Code:
<?php
include_once 'replacePngTags.php';
echo replacePngTags(ob_get_clean());
?>
at the very bottom, after everything else, in my
shop/includes/templates/MY_CUSTOM_TEMPLATE/common/tpl_footer.php file.
Hope that helps somebody,
Rebekah