Im looking to add the total amount next to the checkout word in the same button on dawn theme
password samurai
A user wants to display the cart total amount directly next to the “Checkout” text within the checkout button on the Dawn theme’s cart drawer, rather than showing it separately.
Proposed Solution:
A response provides a code modification for the snippets/cart-drawer.liquid file:
{{ cart.total_price | money_with_currency }}The solution includes a screenshot showing the modified button layout. This customization consolidates pricing information directly into the checkout button for a more streamlined cart drawer interface.
Im looking to add the total amount next to the checkout word in the same button on dawn theme
password samurai
Edit theme code, in snippets/cart-drawer.liquid file , edit code,
1.add this:
## {{ 'sections.cart.estimated_total' | t }}
{{ cart.total_price | money_with_currency }}