Jump to content

Alternate Add To Cart Animation


carelessoul

Recommended Posts

Is there an alternative "Add to Cart" animation for Prestashop that doesn't use the "fly-to-cart" feature? Something like maybe a check mark beside the "Add to cart" button or any other animation that doesn't require a lot of javascript to minimize congestion and make the website faster.

 

I am using prestashop version 1.5.1 with a modified default theme.

Link to comment
Share on other sites

It would be nice to have a popup or something else when things are added to the cart. I know that there is already a module on this but it is not compatible with the newest version of Prestashop. The problem is that I found that a lot of visitors (basically everyone) does not understand that they have to click the cart when they have added a product.

 

Kind regards,

V

http://plainindustry.dk

Link to comment
Share on other sites

  • 4 months later...

Thanks Nemo1 for the tutorial and idea :)

Would be nice to be able to click outside the box toclose it, with something like this :

 


$("body").click(function()
{
 $(".ajax_cart_added_popup").fadeOut();
});

$(".ajax_cart_added_popup").click(function(event)
{
 event.stopPropagation();
});

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...