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