Skip to content

Instantly share code, notes, and snippets.

@riq363
riq363 / ecwid-cash-on-delivery.js
Last active December 2, 2016 15:47 — forked from makfruit/ecwid-cash-on-delivery.js
Hide or show payment methods in Ecwid depending on the delivery methods selected
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
Ecwid.paymentOptionElement = function(caption) {
return jQuery("label:contains('" + caption + "')").parents('.ecwid-PaymentMethodsBlock-PaymentOption');
};
Ecwid.OnPageLoaded.add(function(page) {
if (page.type === 'CHECKOUT_PAYMENT_DETAILS') {
Ecwid.Cart.get(function(cart) {
//if customer selects 'Local delivery' shipping method
if (cart.shippingMethod === 'Local delivery') {