Articles on: Design and customizations

How to Hide Express Checkout Options from Cart

Having the Express checkout options in the cart can Bypass the Bird app date/time selection. Therefore, leading to orders without the date and time data.




Follow the steps below to hide the express checkout options in the cart and your customers can use it in the checkout.

Open the cart page and navigate to the express checkout buttons.



Hit the right key of your mouse or the mousepage and click the option Inspect



Navigate to the express/dynamic checkout buttons in the code and find the class/id of the element. The class or id is usually named using the word "dynamic".



Copy the class name or id and open the Bird App Settings > Widget Design



Scroll below to the Advance styling section and Paste the class or id as below

For Class:

.dynamic-checkout__content  /* This will be the class name for your Shopify store's dynamic checkout buttons */

{
    display: none;
}



For id:

#dynamic-checkout-cart   /* This will be the id name for your Shopify store's dynamic checkout buttons */

{
    display: none;
}


The added code will look like this.



Final result. The express checkout options are hidden from the cart page.




Let us know if you are not able to disable it, and we will do it from our end.

Updated on: 09/06/2024

Was this article helpful?

Share your feedback

Cancel

Thank you!