X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (https://forum.x-cart.com/forumdisplay.php?f=20)
-   -   Make the 'Continue Shopping' button flash a few times (https://forum.x-cart.com/showthread.php?t=64481)

Mish 08-03-2012 04:59 PM

Make the 'Continue Shopping' button flash a few times
 
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>



All times are GMT -8. The time now is 11:34 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.