New Shopify Certification now available: Liquid Storefronts for Theme Developers

Play audio clip when customer clicks "Add to Cart"

Solved
Acinea
Tourist
5 1 0

I would like to play a short mp3 when a customer clicks the "Add to Cart" button, is there a simple enough way to incorporate this? I am using the Dawn Theme.

 

Thank you in advance

Accepted Solution (1)
Acinea
Tourist
5 1 0

This is an accepted solution.

I was able to code a solution to my problem in a sort of janky way with Javascript.

In my cart-notification.js file, I added,

 

var audio = new Audio("your audio file")
audio.play()

 

to the open() {} function.

 

This plays my audio every time the cart notification box appears, which happens every time a customer adds a product to cart. Hopefully this can help someone looking to do something similar

 

View solution in original post

Reply 1 (1)
Acinea
Tourist
5 1 0

This is an accepted solution.

I was able to code a solution to my problem in a sort of janky way with Javascript.

In my cart-notification.js file, I added,

 

var audio = new Audio("your audio file")
audio.play()

 

to the open() {} function.

 

This plays my audio every time the cart notification box appears, which happens every time a customer adds a product to cart. Hopefully this can help someone looking to do something similar