How Can I Skip The Cart And Go Straight To Checkout? 2022

Hi, i use Sense theme but i want to skip Cart to go directly to checkout page in my shop, in forum i talk about lot off Application but he don’t work and


Don’t work too

Anyone to help me please

Would really want to see your site as there will be many versions of that theme and the code might differ.

It will be possible and you’ll find that these are generally the two paths to take:

  1. Change the theme code so that after a product was successfully added to cart, you redirect to the checkout page (/checkout)
  2. Change the add to cart action to a permalink. This also requires some theme edits.

I would not expect that code that you have shown here to work.

Are you able to share you shop url? Are you comfortable editing code?

Hi @Rambo6699

To skip cart page and directly go to checkout page first you need to select page option as cart type inside CMS

![image-20220630-120433.png|1844x936](upload://69els1kDnxlBn6mT4lKn41RiKcM.jpeg)

After that you just need to add below code in Assets / product-form.js file

document.location.href = '/cart/checkout';

I hope it’s helpful to you.