How to set up Accelerated Checkout Buttons?
This guide will walk you through modifying your Shopify theme's code to ensure seamless integration of Shopify Accelerated Checkout buttons within qikify Slide Cart. Enabling this feature can streamline the checkout process for your customers, potentially leading to increased sales.
Before you begin, we highly recommend reviewing Shopify's official documentation on editing theme code. This guide will familiarize you with the code editor and highlight potential risks associated with theme code modifications.
Step 1: Access your theme code
- Go to the Shopify admin portal and log in.
- From the Shopify admin, go to "Online Store" > "Themes."
- Choose the theme you want to add accelerated checkout buttons to.
- Select "Edit code" from the dropdown menu.

Step 2: Add custom liquid file
- Find the folder named sections
- Click on Add a new section
- Add new section and name it as sc-express-payment


- Then add the below code to the liquid file and Save:
{% if additional_checkout_buttons %}
<div style="display: none!important">
{{ content_for_additional_checkout_buttons }}
</div>
{% endif %}
{% schema %}
{
"name": "sc-express-payment",
"tag": "section",
"class": "section",
}
{% endschema %}

Step 3: Add new liquid file to theme
- Open theme.liquid and find the tag


- Place the code snippet:
{% section 'sc-express-payment' %}just after the open tag. - Save your changes.

Step 4: Enable Accelerated Checkout in qikify Slide Cart
The final step is to activate Accelerated Checkout within the qikify Slide Cart settings. After inserting the code snippets provided earlier and enabling this setting, qikify Slide Cart will display the appropriate buttons for your cart.
- Go to the qikfiy Slide Cart app > Slide Cart & Cart Upsell settings.
- Access the "Checkout" section.
- Enable "Enable express payment" by checking the checkbox.
- Don't forget to save your changes.

Updated on: 01/07/2026
Thank you!