==================================
X-Cart Add to Cart Alert v4.4.x
www.xcartmods.co.uk
==================================


1) Upload files.

------------------------------------------------

2) skin/common_files/customer/service_css.tpl

At end of template, insert...

{if $main eq "product" || $main eq "search" || $main eq "products" || $main eq "catalog"}
{include file="modules/Cart_Alert/cart_alert.tpl"}
{/if}

Edit by CFL Systems: instead of the above insert
{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}

------------------------------------------------

3) skin/common_files/js/ajax.add2cart.js

After...

  if (this.savedData.box)
    this.savedData.box.html(lbl_added);

Insert...

// Added to Cart Alert Start
	Cart_Alert_Product();
// Added to Cart Alert End

Edit by CFL Systems: instead of the above insert
	// Added to Cart Alert Start
	window['Cart_Alert_Product_' + this.productid]();
	// Added to Cart Alert End

------------------------------------------------

4) Run www.yourstore.com/cleanup.php
