Hi, currently I have selected to show multiple checkout options in the theme settings. However I am looking to have them show at checkout not on the cart page. Attached is a photo of how it currently shows vs where I would like to have it show.
Hi @bthorne1 ,
Go to Assets > theme.min.css and paste this at the bottom of the file:
.dynamic-checkout__content {
display: none !important;
}
Hope it helps!
@Litos Thank you, is there a way to hide this while still having the dynamic checkout buttons show at checkout? This seemed to hide them completely for me.
Hi @bthorne1 ,
Please send me the code of cart-drawer.liquid file, I will check it.
@Litos Thank you, here it is
{% comment %}theme-check-disable MissingTemplate{% endcomment %}
{%- assign section_color = settings.cart_color_scheme -%}
{% render âscript-tagsâ, script: âcart-drawerâ %}
{{ 'cart.general.title' | t }} -
{{ 'general.accessibility.close_modal' | t }} {% render 'icon-close' %}:
- â
{% comment %}
Quantity
{% endcomment %}
<button class=ânone lg:inline-block mt-2 text-smâ
data-qty-adjust=âremoveâ
@click.prevent=âqtyAdjust($event, item)â>
{{ âcart.general.removeâ | t }}
- â
{{ 'customer.order.discount' | t }}
{{ 'cart.general.subtotal' | t }}
{%- capture taxes_shipping_checkout -%}
{%- if shop.taxes_included and shop.shipping_policy.body != blank -%}
{{ âcart.general.taxes_included_and_shipping_policy_htmlâ | t: link: shop.shipping_policy.url }}
{%- elsif shop.taxes_included -%}
{{ âcart.general.taxes_included_but_shipping_at_checkoutâ | t }}
{%- elsif shop.shipping_policy.body != blank -%}
{{ âcart.general.taxes_and_shipping_policy_at_checkout_htmlâ | t: link: shop.shipping_policy.url }}
{%- else -%}
{{ âcart.general.taxes_and_shipping_at_checkoutâ | t }}
{%- endif -%}
{%- endcapture -%}
{{ taxes_shipping_checkout }}
@Litos Thank you so much


