Questions tagged «place-order»

1
单击下达订单magento2后如何滚动错误消息
如果用户是小屏幕设备,则在许多情况下他们永远不会看到错误消息。 我通过错误/通知/成功消息提到了此链接 可用性问题。但没有得到任何答案 例如, 如果他们在结帐流程的“发货”步骤中并且添加了错误消息,则他们可能看不到该错误消息已添加到页面顶部。 我的建议是使用户平滑滚动到错误消息,然后在按钮旁边显示错误消息。

3
Magento 2:将下订单按钮从付款移动到结帐页面上的侧边栏?
我想将下订单按钮从付款移动到结帐页面的侧边栏中。 有人可以给我一个建议吗? 编辑:这甚至可能(提供答案/方法)吗? 根据我的研究,每种付款方式都有自己的.html模板,其中包括自己的按钮。该按钮不是从kickout.js模板加载的。例如,“免费”付款方式的一部分: <div class="checkout-agreements-block"> <!-- ko foreach: $parent.getRegion('before-place-order') --> <!-- ko template: getTemplate() --><!-- /ko --> <!--/ko--> </div> <div class="actions-toolbar"> <div class="primary"> <button class="action primary checkout" type="submit" data-bind=" click: placeOrder, attr: {title: $t('Place Order')}, css: {disabled: !isPlaceOrderActionAllowed()} "> <span data-bind="i18n: 'Place Order'"></span> </button> </div> </div> 虽然“支票/汇票”付款方式如下所示(只有差异,enable: (getCode() == …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.