Shopify弹出窗口-添加结帐按钮

时间:2020-09-04 17:51:37

标签: popup shopify

我正在尝试将“ checkout”按钮添加到客户“ adds to cart”时出现的标准购物车弹出窗口中。

我正在使用Shopify首次亮相的主题,但该问题几乎适用于任何具有“ Shopify”的add to cart pop-up主题。

将额外的代码添加到“ cart-popup.liquid”非常容易,因为我是从“ cart-template.liquid”复制过来的。

该按钮本身正在显示,但不起作用。 我添加的其他按钮,带有PaypalAmazon的checkout都可以显示,并且也可以正常工作。

下面是“捐赠者代码”

<div class="cart__buttons-container">
  <div class="cart__submit-controls">

    <input type="submit" name="checkout" class="cart__submit btn btn--small-wide" value="{{ 'cart.general.checkout' | t }}">
  </div>

  <div class="cart__error-message-wrapper hide" role="alert" data-cart-error-message-wrapper>
    <span class="visually-hidden">{{ 'general.accessibility.error' | t }} </span> {% include 'icon-error' %}
    <span class="cart__error-message" data-cart-error-message></span>
  </div>

  {%- if additional_checkout_buttons -%}
  <div class="additional-checkout-buttons">{{ content_for_additional_checkout_buttons }}</div>
  {%- endif -%}
</div>

此额外的代码在弹出窗口中正确显示了按钮。

the buttons all work except for the main one! checkout

我认为缺少某些东西……有什么建议吗? 谢谢!

0 个答案:

没有答案