Re: 'Add to Cart' Alert Message
I haven't tested this exhaustively, but I think I have the alert working on category pages with featured products.
Step two of the installation suggests adding the following lines to service_head.tpl or service_css.tpl (depending on which iteration of the mod you install):
{if $main eq "product" || $main eq "search" || $main eq "products" || $main eq "catalog"}
<link href="{$SkinDir}/modules/Cart_Alert/css/shadowbox.css" type="text/css" rel="stylesheet">
<script src="{$SkinDir}/modules/Cart_Alert/shadowbox.js" type="text/javascript"></script>
{include file="modules/Cart_Alert/cart_alert.tpl"}
{/if}
(note that in the above, the extra condition I've added for the manufacturer list is missing as it is a cut-n-paste from the installation txt file only).
I have added these lines to the top of the skin/common_files/customer/main/products_list.tpl file, and in the service_head.tpl file I have changed the first line of the above snippet to read:
{if $main eq "product"}
It seems to work on the store I'm building at the moment, but please take the usual precautions if you try it on yours just in case I've broken something without knowing (yet).
Welly
|