Dawn 2.0 change add to cart button action

My add to cart button opens pop up cart. I want to set it to go to cart page. I am using dawn 2.0 @Guleria

Hey,

It’s relatively straightforward.

Just go to Online store → themes → actions → edit code

Then go to Assets → product-form.js

There you will see

this.form.addEventListener('submit', this.onSubmitHandler.bind(this));

You will need to comment this out like

//this.form.addEventListener('submit', this.onSubmitHandler.bind(this));

Cheers!

Thank you so much!!