Hi all,
I redirect to my cart whenever a customer adds an item. I was worried they may not see / may take a while finding the Continue Shopping Button.
I've made it flash 3 times when the page comes up in order to draw attention to it.
I use X-Cart Gold 4.4.5
In
/skin/common_files/customer open
cart.php (please note that this directory may differ for other people - perhaps someone else can clarify?)
Scroll to the very end of the file, and you should see the following lines.
Code:
func_display('customer/home.tpl', $smarty);
?>
Change it to:
Code:
func_display('customer/home.tpl', $smarty);
?>
<script>
if ($('.checkout-1-button').length == 1)
{
$('.checkout-1-button').fadeOut().fadeIn().fadeOut().fadeIn().fadeOut().fadeIn();
}
</script>