Jump to content

Add To Cart Fly Effect ( disable ANIMATION on devices)


Recommended Posts

Hi all!

 

I'm using the Add To Cart Fly Effect module. I want only disable the animation on devices without the popup message.

So I can not use the option module disable for devices from the admin panel so that it turns off the module completely. It is necessary to rule addToCardAnimation.js code I think.

Link to comment
Share on other sites

You can use code like the following in the PHP file that adds the JavaScript:

if ($this->context->isMobile()) {
    // Add JavaScript file for mobile here
} else {
    // Add JavaScript file for tablet and desktop here
}
Link to comment
Share on other sites

Sorry, I can't be more specific since it's a paid module I can't access. You'll need to search the main PHP file of the module for $this->context->controller->addJS and then wrap it in the if statement above.

Link to comment
Share on other sites

If I gave you access to my file server, could you help me resolve this issue? I tried a few options but I did not. I know that for a man who knows this is a simple question, but for me it is a dense forest. Thank you.

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...