Enable multiple checkout options at checkout

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 %} Item Image, remove redundant tab stop {% endcomment %}

{% comment %} Item Meta {% endcomment %}

{% if settings.cart_vendor_enable %}

{% endif %}

:

  • −

{% comment %}
Quantity
{% endcomment %}

{% render 'icon-minus' %} {% render 'icon-plus' %}

<button class=“none lg:inline-block mt-2 text-sm”
data-qty-adjust=“remove”
@click.prevent=“qtyAdjust($event, item)”>
{{ ‘cart.general.remove’ | t }}

{% comment %} Price {% endcomment %}
{{ 'products.general.regular_price' | t }} {{ 'products.general.sale_price' | t }}
/
  • −
{% if settings.cart_notes_enable %}
{{ 'cart.general.note' | t }}
{% endif %}

{{ '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 }}

{% if additional_checkout_buttons and settings.cart_additional_buttons %}
{{ content_for_additional_checkout_buttons }}
{% endif %}
{% comment %}theme-check-enable MissingTemplate{% endcomment %}

Hi @bthorne1 ,

Please remove code here, it will work fine:

@Litos Thank you so much

1 Like