Women's Support & Soft Adjustable Sandals

$39.99
$43.99
Save $4.00
4 sold
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
1
Select product
Selected 0 item(s)
Black/ US 5.5
Black/ US 6
Black/ US 6.5-7
Black/ US 7.5
Black/ US 8
Black/ US 8.5
Black/ US 9
Black/ US 9.5-10
Black/ US 10.5
Black/ US 11
Khaki/ US 5.5
Khaki/ US 6
Khaki/ US 6.5-7
Khaki/ US 7.5
Khaki/ US 8
Khaki/ US 8.5
Khaki/ US 9
Khaki/ US 9.5-10
Khaki/ US 10.5
Khaki/ US 11
White/ US 5.5
White/ US 6
White/ US 6.5-7
White/ US 7.5
White/ US 8
White/ US 8.5
White/ US 9
White/ US 9.5-10
White/ US 10.5
White/ US 11
Blue/ US 5.5
Blue/ US 6
Blue/ US 6.5-7
Blue/ US 7.5
Blue/ US 8
Blue/ US 8.5
Blue/ US 9
Blue/ US 9.5-10
Blue/ US 10.5
Blue/ US 11
Red/ US 5.5
Red/ US 6
Red/ US 6.5-7
Red/ US 7.5
Red/ US 8
Red/ US 8.5
Red/ US 9
Red/ US 9.5-10
Red/ US 10.5
Red/ US 11
Navy/ US 5.5
Navy/ US 6
Navy/ US 6.5-7
Navy/ US 7.5
Navy/ US 8
Navy/ US 8.5
Navy/ US 9
Navy/ US 9.5-10
Navy/ US 10.5
Navy/ US 11
Pink/ US 5.5
Pink/ US 6
Pink/ US 6.5-7
Pink/ US 7.5
Pink/ US 8
Pink/ US 8.5
Pink/ US 9
Pink/ US 9.5-10
Pink/ US 10.5
Pink/ US 11
class SpzCheckoutNotificationHandler extends SPZ.BaseElement { constructor(element) { super(element); this.timer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } sendVariantListUpdateEvent_(data) { const messageData = { type: "theme_variant_list_update", data: { orderToken: data.order_token || data.order_id } }; clearInterval(this.timer_); if(!window.CheckoutAPI) { this.timer_ = setInterval(() => { if(window.CheckoutAPI) { clearInterval(this.timer_); postMessage && postMessage(messageData); } }, 500); } else { postMessage && postMessage(messageData); } } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction('sendVariantListUpdateEvent', (param) => { this.sendVariantListUpdateEvent_(param.args.data); }); } } SPZ.defineElement('spz-custom-checkout-notification-handler', SpzCheckoutNotificationHandler); function handleGetOrderInfo(data) { if (data.order_id) { let api = `/api/checkout/order/info?order_id=${data.order_id}`; return Promise.resolve(api); } return Promise.reject({}); } function addEventListenerKickItems(data) { if (data.type === 'checkout_kick_items') { return Promise.resolve(data); } return Promise.reject({}); } exportFunction('handleGetOrderInfo', handleGetOrderInfo) exportFunction('addEventListenerKickItems', addEventListenerKickItems)