Authorized Returns Login

FITFLOP


Shipping Instructions

1.  Enter the first 12 characters of your Order Number, Email Address, and your Phone Number without dashes as exactly entered for your order and Click Continue to enter the shipping label creation page.

2.  Complete the Return Form.

3.  Printout your shipping label(s) and affix it to the package(s).

4.  Bring your package(s) at an Authorized UPS Drop-off.

HeaderTfalseAuthorized Returns LoginContinueJfalseContinueField1Sfalse0Order NumberField2Sfalse0Email AddressField3Sfalse0Phone Number2978FITFLOP6Y50157kINKvb3nnKz9100FITFLOPdea436a1-6297-4f3b-b5f0-79bcada3debd// FitFlop - Updated Code - 04.21.2026 $(document).ready(function () { $(labelPack).text(""); $(".Header").text("SHIPPING INFORMATION"); $(".MastLeft").before($(".Header")); var vRequired = "<b><span style='color:#8B4513;'> &#9830;</span> = Required Field<br><br></b>"; $("#boxSFName").before(vRequired); var vInternal = $("#Reference10").val(); if (!vInternal) { $("#main_ship_form").css("width", "450px"); var vWait = "<b><span id='PleaseWait'>Please Wait...</span></b>"; $("#AddItems").after(vWait); document.getElementById("PleaseWait").hidden = true; document.getElementById("ProcessShipment").setAttribute("disabled", "disabled"); $("#ProcessShipment").css("visibility", "hidden"); } else { $("#boxSFName").before($("#boxReference1")); } $("#boxSFEmail").after($("#boxDeliveryMethod")); $("#boxSFEmail").after($("#boxSFQVDelivery")); $("#boxSFName").css("width", "450px"); $("#SFName").css("width", "350px"); $("#boxSFAttn").css("width", "450px"); $("#SFAttn").css("width", "350px"); $("#boxSFAddr1").css("width", "450px"); $("#SFAddr1").css("width", "350px"); $("#boxSFAddr2").css("width", "450px"); $("#SFAddr2").css("width", "350px"); $("#boxSFCity").css("width", "450px"); $("#SFCity").css("width", "350px"); $("#boxSFState").css("width", "450px"); $("#SFState").css("width", "360px"); $("#boxSFZip").css("width", "450px"); $("#SFZip").css("width", "350px"); $("#boxSFPhone").css("width", "450px"); $("#SFPhone").css("width", "350px"); $("#boxSFEmail").css("width", "450px"); $("#SFEmail").css("width", "350px"); $("#boxSFQVDelivery").css("width", "450px"); $("#boxSFQVDelivery").css("margin", "0px 0px"); $("#boxSFQVDelivery label")[0].innerHTML = "<span style='font-size:9pt;'>Check to receive a delivery notification email.</span>"; $("#boxDeliveryMethod").css("width", "450px"); $("#DeliveryMethod").before($("#boxDeliveryMethod > label")); $("#boxDeliveryMethod label")[0].innerHTML = "<span style='font-size:10pt;font-weight:bold;'>Select Label Option &nbsp;</span>"; var vOrdNo = $("#SFCust01").val(); vOrdNo = vOrdNo.replaceAll("-", ""); $("#Reference1").val(vOrdNo); setTimeout(function () { document.getElementById("STCountry").value = "US"; }, 5000); }); var vItemsWin = null; // Wait for the AR popup and table to actually exist before running AddAR $("#AddItems").click(function () { $("#SFCountry").val("US"); document.getElementById("PleaseWait").hidden = false; document.getElementById("AddItems").setAttribute("disabled", "disabled"); vItemsWin = setInterval(function () { var modal = document.getElementById("_ARItemsModalPopup"); var table = document.getElementById("arItemsTable"); var headerRow = document.getElementById("arItemsTableTr"); if (modal && table && headerRow && modal.style.display !== "none") { AddAR(); } }, 300); }); function AddAR() { clearInterval(vItemsWin); var pleaseWait = document.getElementById("PleaseWait"); var modal = document.getElementById("_ARItemsModalPopup"); var table = document.getElementById("arItemsTable"); var headerRow = document.getElementById("arItemsTableTr"); var modalTitle = document.querySelector("#_ARItemsModalPopup .modal-title h2"); var processBtn = document.getElementById("process"); var addItemsBtn = document.getElementById("AddItems"); if (!modal || !table || !headerRow) return; if (pleaseWait) { pleaseWait.hidden = true; } var headers = headerRow.getElementsByTagName("th"); var rows = table.querySelectorAll("tr.itemRow"); // Update popup title if (modalTitle) { modalTitle.textContent = "Returning Items"; } // Update AR header text if (headers[3]) { headers[3].textContent = "Enter Quantity to Return ?"; } // Replace Weight header with Return Reason if (headers[6]) { headers[6].textContent = "Select Return Reason ?"; } // Replace Weight cell with reason dropdown for each row rows.forEach(function (row, index) { var cells = row.getElementsByTagName("td"); var targetCell = cells[6]; // original Weight column if (!targetCell) return; // Do not build again if already done if (targetCell.querySelector("select")) return; targetCell.replaceChildren(createReturnReasonSelect(index)); }); // Add custom validation button once if (processBtn && !document.getElementById("validatingReasons")) { var validateBtn = document.createElement("input"); validateBtn.type = "button"; validateBtn.id = "validatingReasons"; validateBtn.value = "Create Shipping label"; processBtn.parentNode.insertBefore(validateBtn, processBtn); validateBtn.addEventListener("click", validateReasons, true); } // Hide original process button until validation passes if (processBtn) { processBtn.setAttribute("disabled", "disabled"); processBtn.style.visibility = "hidden"; } if (addItemsBtn) { addItemsBtn.removeAttribute("disabled"); } } function createReturnReasonSelect(index) { var select = document.createElement("select"); select.id = "ReturnReasons_" + index; select.style.width = "110px"; var options = [ { value: "", text: "- Select -" }, { value: "S1 Too Long", text: "Too Long" }, { value: "S2 Too Short", text: "Too Short" }, { value: "S3 Too Loose", text: "Too Loose" }, { value: "S4 Too Tight", text: "Too Tight" }, ]; options.forEach(function (item) { var option = document.createElement("option"); option.value = item.value; option.textContent = item.text; select.appendChild(option); }); return select; } function checkSelectList() { var modal = document.getElementById("_ARItemsModalPopup"); if (!modal) return; var table = modal.querySelector("#arItemsTable"); if (!table) return; var tbody = table.querySelector("tbody"); if (!tbody) return; var rows = tbody.querySelectorAll("tr"); rows.forEach(function (row) { if (row.id === "arItemsTableTr") return; var cells = row.getElementsByTagName("td"); var selectCell = cells[6]; if (!selectCell) return; var select = selectCell.querySelector("select"); if (select) { select.style.backgroundColor = "#e5e5e5"; } }); } // function checkSelectList() { // var modal = document.getElementById("_ARItemsModalPopup"); // if (!modal) return; // var table = modal.querySelector("#arItemsTable"); // if (!table) return; // var rows = table.querySelectorAll("tr.itemRow"); // rows.forEach(function (row) { // var cells = row.getElementsByTagName("td"); // var selectCell = cells[6]; // if (!selectCell) return; // var select = selectCell.querySelector("select"); // if (select) { // select.style.backgroundColor = "#e5e5e5"; // } // }); // } // function checkSelectList() { // var table = document.getElementById("arItemsTable"); // if (!table) return; // var rows = table.querySelectorAll("tr.itemRow"); // rows.forEach(function (row) { // var cells = row.getElementsByTagName("td"); // var selectCell = cells[6]; // if (!selectCell) return; // var select = selectCell.querySelector("select"); // if (select) { // select.style.backgroundColor = "#e5e5e5"; // } // }); // } function validateReasons() { console.log("validateReasons fired"); var modal = document.getElementById("_ARItemsModalPopup"); if (!modal) { console.log("No AR modal found"); return; } var table = modal.querySelector("#arItemsTable"); if (!table) { console.log("No arItemsTable found"); return; } var tbody = table.querySelector("tbody"); if (!tbody) { console.log("No tbody found"); return; } var rows = tbody.querySelectorAll("tr"); console.log("Row count:", rows.length); console.log("Rows found by tr:", tbody.querySelectorAll("tr").length); console.log("Table text:", table.textContent); var sfCust03 = document.getElementById("SFCust03"); var reference2 = document.getElementById("Reference2"); var sfCust01 = document.getElementById("SFCust01"); var reference1 = document.getElementById("Reference1"); var processBtn = document.getElementById("process"); var processShipmentBtn = document.getElementById("ProcessShipment"); var vCanShip = true; var vSFCustom3 = ""; var vRef2 = ""; var vCodeLimitCnt = 1; var c = 1; if (sfCust03) sfCust03.value = ""; if (reference2) reference2.value = ""; checkSelectList(); rows.forEach(function (row) { // Skip header row if (row.id === "arItemsTableTr") return; var cells = row.getElementsByTagName("td"); if (!cells.length) return; var qtyInput = row.querySelector('input[id^="shipquantity_"]'); var reasonCell = cells[6]; var reasonSelect = reasonCell ? reasonCell.querySelector("select") : null; var skuCell = cells[5]; console.log("Row check:", { qty: qtyInput ? qtyInput.value : "no qty input", reason: reasonSelect ? reasonSelect.value : "no reason select", sku: skuCell ? skuCell.textContent.trim() : "no sku", }); if (!qtyInput) { c = c + 1; return; } var qty = parseInt(qtyInput.value, 10); if (!isNaN(qty) && qty > 0 && qty < 1000) { if (!reasonSelect || !reasonSelect.value) { if (reasonSelect) { reasonSelect.style.backgroundColor = "red"; } vCanShip = false; } else { var vAllReasons = reasonSelect.value; var vSelectReasonCode = vAllReasons.substring(0, 2); vSFCustom3 = vSFCustom3 + "|" + vSelectReasonCode + "|" + c; if (sfCust03) { sfCust03.value = vSFCustom3; } if (skuCell && vCodeLimitCnt < 3) { var vSKU = skuCell.textContent.trim(); if (vSKU.length >= 9) { vRef2 = vRef2 + " " + vSKU.substring(0, 3) + "-" + vSKU.substring(3, 6) + "-" + vSKU.substring(6, 9) + " " + vSelectReasonCode; vCodeLimitCnt = vCodeLimitCnt + 1; if (reference2) { reference2.value = vRef2; } } } } } c = c + 1; }); console.log("vCanShip final:", vCanShip); console.log("SFCust03 final:", sfCust03 ? sfCust03.value : "missing"); console.log("Reference2 final:", reference2 ? reference2.value : "missing"); console.log("Reference1 before set:", reference1 ? reference1.value : "missing"); if (vCanShip === true) { if (sfCust01 && sfCust01.value && reference1) { var noDash = sfCust01.value.replace(/[^0-9A-Z]+/gi, ""); reference1.value = noDash; } if (processBtn) processBtn.removeAttribute("disabled"); if (processShipmentBtn) processShipmentBtn.removeAttribute("disabled"); console.log("Reference1 final:", reference1 ? reference1.value : "missing"); if (processBtn) { processBtn.click(); } } } // function validateReasons() { // console.log("validateReasons fired"); // var modal = document.getElementById("_ARItemsModalPopup"); // if (!modal) { // console.log("No AR modal found"); // return; // } // var table = modal.querySelector("#arItemsTable"); // if (!table) { // console.log("No arItemsTable found"); // return; // } // var tbody = table.querySelector("tbody"); // if (!tbody) { // console.log("No tbody found"); // return; // } // var rows = tbody.querySelectorAll("tr.itemRow"); // console.log("Row count:", rows.length); // console.log("Rows found by tr:", tbody.querySelectorAll("tr").length); // console.log("Table text:", table.textContent); // var sfCust03 = document.getElementById("SFCust03"); // var reference2 = document.getElementById("Reference2"); // var sfCust01 = document.getElementById("SFCust01"); // var reference1 = document.getElementById("Reference1"); // var processBtn = document.getElementById("process"); // var processShipmentBtn = document.getElementById("ProcessShipment"); // var vCanShip = true; // var vSFCustom3 = ""; // var vRef2 = ""; // var vCodeLimitCnt = 1; // var c = 1; // if (sfCust03) sfCust03.value = ""; // if (reference2) reference2.value = ""; // checkSelectList(); // rows.forEach(function (row) { // var cells = row.getElementsByTagName("td"); // var qtyInput = row.querySelector('input[id^="shipquantity_"]'); // var reasonCell = cells[6]; // var reasonSelect = reasonCell ? reasonCell.querySelector("select") : null; // var skuCell = cells[5]; // console.log("Row check:", { // qty: qtyInput ? qtyInput.value : "no qty input", // reason: reasonSelect ? reasonSelect.value : "no reason select", // sku: skuCell ? skuCell.textContent.trim() : "no sku", // }); // if (!qtyInput) { // c = c + 1; // return; // } // var qty = parseInt(qtyInput.value, 10); // if (!isNaN(qty) && qty > 0 && qty < 1000) { // if (!reasonSelect || !reasonSelect.value) { // if (reasonSelect) { // reasonSelect.style.backgroundColor = "red"; // } // vCanShip = false; // } else { // var vAllReasons = reasonSelect.value; // var vSelectReasonCode = vAllReasons.substring(0, 2); // vSFCustom3 = vSFCustom3 + "|" + vSelectReasonCode + "|" + c; // if (sfCust03) { // sfCust03.value = vSFCustom3; // } // if (skuCell && vCodeLimitCnt < 3) { // var vSKU = skuCell.textContent.trim(); // if (vSKU.length >= 9) { // vRef2 = vRef2 + " " + vSKU.substring(0, 3) + "-" + vSKU.substring(3, 6) + "-" + vSKU.substring(6, 9) + " " + vSelectReasonCode; // vCodeLimitCnt = vCodeLimitCnt + 1; // if (reference2) { // reference2.value = vRef2; // } // } // } // } // } // c = c + 1; // }); // console.log("vCanShip final:", vCanShip); // console.log("SFCust03 final:", sfCust03 ? sfCust03.value : "missing"); // console.log("Reference2 final:", reference2 ? reference2.value : "missing"); // console.log("Reference1 before set:", reference1 ? reference1.value : "missing"); // if (vCanShip === true) { // if (sfCust01 && sfCust01.value && reference1) { // var noDash = sfCust01.value.replace(/[^0-9A-Z]+/gi, ""); // reference1.value = noDash; // } // if (processBtn) processBtn.removeAttribute("disabled"); // if (processShipmentBtn) processShipmentBtn.removeAttribute("disabled"); // console.log("Reference1 final:", reference1 ? reference1.value : "missing"); // if (processBtn) { // processBtn.click(); // } // } // } // function validateReasons() { // console.log("validateReasons fired"); // var table = document.getElementById("arItemsTable"); // if (!table) { // console.log("No arItemsTable found"); // return; // } // var rows = table.querySelectorAll("tr.itemRow"); // console.log("Row count:", rows.length); // var sfCust03 = document.getElementById("SFCust03"); // var reference2 = document.getElementById("Reference2"); // var sfCust01 = document.getElementById("SFCust01"); // var reference1 = document.getElementById("Reference1"); // var processBtn = document.getElementById("process"); // var processShipmentBtn = document.getElementById("ProcessShipment"); // var vCanShip = true; // var vSFCustom3 = ""; // var vRef2 = ""; // var vCodeLimitCnt = 1; // var c = 1; // if (sfCust03) { // sfCust03.value = ""; // } // if (reference2) { // reference2.value = ""; // } // checkSelectList(); // rows.forEach(function (row) { // var cells = row.getElementsByTagName("td"); // var qtyInput = row.querySelector('input[id^="shipquantity_"]'); // var reasonCell = cells[6]; // var reasonSelect = reasonCell ? reasonCell.querySelector("select") : null; // var skuCell = cells[5]; // console.log("Row check:", { // qty: qtyInput ? qtyInput.value : "no qty input", // reason: reasonSelect ? reasonSelect.value : "no reason select", // sku: skuCell ? skuCell.textContent.trim() : "no sku" // }); // if (!qtyInput) { // c = c + 1; // return; // } // var qty = parseInt(qtyInput.value, 10); // if (!isNaN(qty) && qty > 0 && qty < 1000) { // if (!reasonSelect || !reasonSelect.value) { // console.log("Missing reason for qty row"); // if (reasonSelect) { // reasonSelect.style.backgroundColor = "red"; // } // vCanShip = false; // } else { // var vAllReasons = reasonSelect.value; // var vSelectReasonCode = vAllReasons.substring(0, 2); // vSFCustom3 = vSFCustom3 + "|" + vSelectReasonCode + "|" + c; // if (sfCust03) { // sfCust03.value = vSFCustom3; // } // if (skuCell && vCodeLimitCnt < 3) { // var vSKU = skuCell.textContent.trim(); // if (vSKU.length >= 9) { // vRef2 = // vRef2 + // " " + // vSKU.substring(0, 3) + // "-" + // vSKU.substring(3, 6) + // "-" + // vSKU.substring(6, 9) + // " " + // vSelectReasonCode; // vCodeLimitCnt = vCodeLimitCnt + 1; // if (reference2) { // reference2.value = vRef2; // } // } // } // } // } // c = c + 1; // }); // console.log("vCanShip final:", vCanShip); // console.log("SFCust03 final:", sfCust03 ? sfCust03.value : "missing"); // console.log("Reference2 final:", reference2 ? reference2.value : "missing"); // console.log("Reference1 before set:", reference1 ? reference1.value : "missing"); // if (vCanShip === true) { // if (sfCust01 && sfCust01.value && reference1) { // var noDash = sfCust01.value.replace(/[^0-9A-Z]+/gi, ""); // reference1.value = noDash; // } // if (processBtn) { // processBtn.removeAttribute("disabled"); // } // if (processShipmentBtn) { // processShipmentBtn.removeAttribute("disabled"); // } // console.log("Reference1 final:", reference1 ? reference1.value : "missing"); // if (processBtn) { // processBtn.click(); // } // } // } // function validateReasons() { // var table = document.getElementById("arItemsTable"); // if (!table) return; // var rows = table.querySelectorAll("tr.itemRow"); // var sfCust03 = document.getElementById("SFCust03"); // var reference2 = document.getElementById("Reference2"); // var sfCust01 = document.getElementById("SFCust01"); // var reference1 = document.getElementById("Reference1"); // var processBtn = document.getElementById("process"); // var processShipmentBtn = document.getElementById("ProcessShipment"); // var vCanShip = true; // var vSFCustom3 = ""; // var vRef2 = ""; // var vCodeLimitCnt = 1; // var c = 1; // if (sfCust03) { // sfCust03.value = ""; // } // if (reference2) { // reference2.value = ""; // } // checkSelectList(); // rows.forEach(function (row) { // var cells = row.getElementsByTagName("td"); // var qtyInput = row.querySelector('input[id^="shipquantity_"]'); // var reasonCell = cells[6]; // replaced Weight column // var reasonSelect = reasonCell ? reasonCell.querySelector("select") : null; // var skuCell = cells[5]; // SKU column // console.log("Return Reason:", reasonSelect ? reasonSelect.value : "No select found"); // console.log({ // qty: qtyInput ? qtyInput.value : "No qty input", // reason: reasonSelect ? reasonSelect.value : "No select found", // sku: skuCell ? skuCell.textContent.trim() : "No SKU found", // }); // if (!qtyInput) { // c = c + 1; // return; // } // var qty = parseInt(qtyInput.value, 10); // if (!isNaN(qty) && qty > 0 && qty < 1000) { // if (!reasonSelect || !reasonSelect.value) { // if (reasonSelect) { // reasonSelect.style.backgroundColor = "red"; // } // vCanShip = false; // } else { // var vAllReasons = reasonSelect.value; // var vSelectReasonCode = vAllReasons.substring(0, 2); // vSFCustom3 = vSFCustom3 + "|" + vSelectReasonCode + "|" + c; // if (sfCust03) { // sfCust03.value = vSFCustom3; // } // if (skuCell && vCodeLimitCnt < 3) { // var vSKU = skuCell.textContent.trim(); // if (vSKU.length >= 9) { // vRef2 = vRef2 + " " + vSKU.substring(0, 3) + "-" + vSKU.substring(3, 6) + "-" + vSKU.substring(6, 9) + " " + vSelectReasonCode; // vCodeLimitCnt = vCodeLimitCnt + 1; // if (reference2) { // reference2.value = vRef2; // } // } // } // } // } // c = c + 1; // }); // if (vCanShip === true) { // if (sfCust01 && sfCust01.value && reference1) { // var noDash = sfCust01.value.replace(/[^0-9A-Z]+/gi, ""); // reference1.value = noDash; // } // if (processBtn) { // processBtn.removeAttribute("disabled"); // } // if (processShipmentBtn) { // processShipmentBtn.removeAttribute("disabled"); // } // if (processBtn) { // processBtn.click(); // } // } // } //***************************************************************** //Below code fixes issue with Next and Previous Buttons not working // function runNextPageBtn() { // nextPageBtn(true); // } // function runPreviousPageBtn() { // previousPageBtn(true); // } // setInterval(function () { // if ((e = document.getElementById("arItemsPagerNextClick"))) { // e.removeEventListener("click", runNextPageBtn); // e.addEventListener("click", runNextPageBtn); // } // if ((e = document.getElementById("arItemsPagerPreviousClick"))) { // e.removeEventListener("click", runPreviousPageBtn); // e.addEventListener("click", runPreviousPageBtn); // } // }, 3000); //***************************************************************** /* format the body of the page and center align the shipping form */ .ColorGroup-YellowGreen { width: 510px; display: block; margin-left: auto; margin-right: auto; align-content: center; align-items: center; justify-content: center; } .MastLeft {margin: 0px 0px 0px 0px; padding: 0px; width: 640px;height: 250px; min-height: 250px;align-items: center; justify-content: center;} /* Sets Margins and width of the Announcement section */ #main_ship_form { position:relative; top:-40px; left:100px; background-color:#ffffff; } body > div.ColorGroup-YellowGreen > div.Header { position:relative; top:-10px; left:200px; } .FormModule .ButtonBar{height:50px;background-color:#ffffff;} /* the Process Shipment and Clear section bar */ /* .ButtonPrime {background:none;background-color:#000000;font-family: Arial, Helvetica, san-serif; font-size: 12px;padding:5px; position:relative; left:-60px;} */ .FirstColumnModule { border-style:none!Important;background-color:#ffffff;} TD {border-style:none!Important;} ol {padding-left: 100px;} h4 {display:none!important;} HR {display:none!important;} #_ARItemsModalPopup > div > div.modal-header {background-color:#000000;} #_ARItemsModalPopup > div > div.modal-body > div > div.Header {background-color:#000000;} #_ARItemsModalPopup > div > div.modal-footer {background-color:#000000;} #_ARItemsModalPopup > div > div.modal-body > div > table > tbody > tr.ColumnHeader > th:nth-child(4), #_ARItemsModalPopup > div > div.modal-body > div > table > tbody > tr.ColumnHeader > th:nth-child(7) {background-color:#000000;color:#ffffff;} #boxSFAddr1, #boxSFName, #boxSFAddr2, #boxSFCity, #boxSFState, #boxSFZip, #boxSFPhone, #boxSFEmail, #boxSFQVDelivery { padding: 9px 0px 0px 0px; } #boxDeliveryMethod { padding: 9px 0px 5px 0px; } #process {background-color:#ffffff;color:#000000;} .simpleInput { width: 62px;}<ol> <li>Verify your address for the return label.</li> <li>Select your shipping label option.</li> <li>Click the Add Items button to select the items being returned.</li> <li>Click the &#39;Process Shipment&#39; button to get your label.</li> </ol><br> After you have printed your shipping label, you can take your package to any UPS dropoff location. <br><br> <b>To find the nearest UPS authorized location select <a href="http://www.ups.com/dropoff?loc=en_US&WT.svl=PriNav" target="_blank"> UPS Drop-Off Locator </a></b><br><br>FITFLOP90kaKvB6HWLPajDfalsefalsetruefalsefalsefalsefalsetruefalse5946falsefalse0FITFLOPODW0422ecjXwn2Rqtruetrue26042026-04-22T00:30:11falsefalsefalsefalsefalsefalsefalsefalse0truefalsefalsefalsefalsefalsefalsefalsefalsefalseRklURkxPUA==falseP225861truefalse766b0465-9795-4e4c-8024-548f4253cf24truefalsefalsefalsefalse<script> function testSp() { var vhide; var vTrackNo; var vRef1; var vRef2; var vtext1 = ""; var vItem1 = ""; var vItem2 = ""; var vPosition = 0; const months = ["January","February","March","April","May","June","July","August","September","October","November","December"]; const d = new Date(); let month = months[d.getMonth()]; var vSuccessful = $('.HideWhenPrint')[0].innerHTML; if (vSuccessful.indexOf("Shipment") >0) { vhide = $('.HideWhenPrint')[2].innerHTML; vTrackNo = vhide.trim(); vTrackNo = vTrackNo.substr(0, 18); vRef1 = $('.Body strong')[4].innerHTML; if (vRef1 != "") { vRef1 = vRef1.substr(20); } vRef2 = $('.Body strong')[5].innerHTML; if (vRef2 != "") { vRef2 = vRef2.substr(20); vRef2 = vRef2.trim(); } vtext1 = '<h3>Returns Packing List</h3><br><b>Place this Returns Packing List inside your return package</b> (in case your shipping label gets damaged)<br><br><table style="width: 70%"><tr><th align="left" style="width: 55%">Tracking Number:</th><th align="left">Order Number:</th></tr><tr><td>' vPosition = (vRef2.indexOf(" ") + 3); vItem1 = vRef2.substring(0, vPosition); vItem1 = vItem1.trim(); vItem2 = vRef2.substring(vPosition + 1); vItem2 = vItem2.trim(); if (vRef2.length > 17) { vtext1 = vtext1 + vTrackNo + '</td><td>' + vRef1 + '</td></tr><tr><td>&nbsp;</td></tr><tr><th align="left" style="width: 55%">Return Code:</th><th align="left">Label Date: ' + month +' ' + d.getDate() + ', ' + d.getFullYear() + '</th></tr><tr><td>' + vItem1 + '</td></tr><tr><td>' + vItem2 + '</td></tr></table>' } else { vtext1 = vtext1 + vTrackNo + '</td><td>' + vRef1 + '</td></tr><tr><td>&nbsp;</td></tr><tr><th align="left" style="width: 55%">Return Code:</th><th align="left">Label Date: ' + month +' ' + d.getDate() + ', ' + d.getFullYear() + '</th></tr><tr><td>' + vRef2 + '</td></tr></table>' } vtext1 = vtext1 + '<br><br><h3>Instructions:</h3><ol><li><b>Ensure that there are no other tracking labels attached to your package.</b>&nbsp;</li><br><br><li><b>Fold the printed label at the solid line above.</b> &nbsp; Place the label in a UPS Shipping Pouch. If you do not have a pouch, affix the folded label using clear plastic shipping tape over the entire label. Take care not to cover any seams or closures.<br><br></li>' vtext1 = vtext1 + '<li><b>Drop-off<br></b><ul><li>Take this package to any location of The UPS Store®, UPS Customer Center, UPS Drop Box, or any UPS Authorized Shipping Outlet® near you. Items sent via UPS Returns® (including returns sent via UPS Ground) are accepted at any UPS Drop Box. To find your closest UPS location visit <a href="http://www.ups.com/dropoff" target="_blank">http://www.ups.com/dropoff</a> or click <a name="upsLocatorLink" href="http://www.ups.com/dropoff?autosubmit=1&amp;Lang=eng&amp;Country=US&amp;AirPickUp=no&amp;GroundPickup=yes" target="_blank">here</a>.</li></ol></div>' $('.Body')[0].innerHTML = vtext1; } else { // INSTRUCTIONS FROM EMAIL LABEL vhide = $('.HideWhenPrint')[0].innerHTML; vTrackNo = vhide.trim(); vTrackNo = vTrackNo.substr(0, 18); vRef1 = $('.Body strong')[4].innerHTML; if (vRef1 != "") { vRef1 = vRef1.substr(20); } vRef2 = $('.Body strong')[5].innerHTML; if (vRef2 != "") { vRef2 = vRef2.substr(20); vRef2 = vRef2.trim(); } vtext1 = '<h3>Returns Packing List</h3><br><b>Place this Returns Packing List inside your return package</b> (in case your shipping label gets damaged)<br><br><table style="width: 70%"><tr><th align="left" style="width: 55%">Tracking Number:</th><th align="left">Order Number:</th></tr><tr><td>' vPosition = (vRef2.indexOf(" ") + 3); vItem1 = vRef2.substring(0, vPosition); vItem1 = vItem1.trim(); vItem2 = vRef2.substring(vPosition + 1); vItem2 = vItem2.trim(); if (vRef2.length > 17) { vtext1 = vtext1 + vTrackNo + '</td><td>' + vRef1 + '</td></tr><tr><td>&nbsp;</td></tr><tr><th align="left" style="width: 55%">Return Code:</th><th align="left">Label Date: ' + month +' ' + d.getDate() + ', ' + d.getFullYear() + '</th></tr><tr><td>' + vItem1 + '</td></tr><tr><td>' + vItem2 + '</td></tr></table>' } else { vtext1 = vtext1 + vTrackNo + '</td><td>' + vRef1 + '</td></tr><tr><td>&nbsp;</td></tr><tr><th align="left" style="width: 55%">Return Code:</th><th align="left">Label Date: ' + month +' ' + d.getDate() + ', ' + d.getFullYear() + '</th></tr><tr><td>' + vRef2 + '</td></tr></table>' } vtext1 = vtext1 + '<br><br><h3>Instructions:</h3><ol><li><b>Ensure that there are no other tracking labels attached to your package.</b>&nbsp;</li><br><br><li><b>Fold the printed label at the solid line above.</b> &nbsp; Place the label in a UPS Shipping Pouch. If you do not have a pouch, affix the folded label using clear plastic shipping tape over the entire label. Take care not to cover any seams or closures.<br><br></li>' vtext1 = vtext1 + '<li><b>Drop-off<br></b><ul><li>Take this package to any location of The UPS Store®, UPS Customer Center, UPS Drop Box, or any UPS Authorized Shipping Outlet® near you. Items sent via UPS Returns® (including returns sent via UPS Ground) are accepted at any UPS Drop Box. To find your closest UPS location visit <a href="http://www.ups.com/dropoff" target="_blank">http://www.ups.com/dropoff</a> or click <a name="upsLocatorLink" href="http://www.ups.com/dropoff?autosubmit=1&amp;Lang=eng&amp;Country=US&amp;AirPickUp=no&amp;GroundPickup=yes" target="_blank">here</a>.</li></ol></div>' $('.Body')[0].innerHTML = vtext1; } // End Else } //End Function window.onload=testSp; </script>0ASIA90<br><br> <h2 style='color:black;'>Instructions to receive your shipping label:</h2> <ol> <li>Enter your order number, email address, and phone number used to place your order. Click Continue.<br> *This information must be input exactly as input during order placement</li> <li>Complete the return form and printout your shipping label.</li> <li>Affix the label to the package and bring your return package to an authorized UPS drop-off location.</li> </ol> <br> <br> <br> <br><br> <br> <br><br> <h3>Shipping Instructions</h3> 1. &nbsp;Enter the first 12 characters of your Order Number, Email Address, and your Phone Number without dashes as exactly entered for your order and Click Continue to enter the shipping label creation page.<br><br> 2. &nbsp;Complete the Return Form.<br><br> 3. &nbsp;Printout your shipping label(s) and affix it to the package(s).<br><br> 4. &nbsp;Bring your package(s) at an Authorized UPS Drop-off.<br><br>002d40f40a-ffe5-4a39-861a-216f2c8d84eac79f5aee-cdb0-475f-8e9d-8c1c32f44352falsefalse1falsefalsefalsefalsefalsefalse0FITFLOP29783Authorized Returnstrue0a2ecf8f6-f49f-4f29-a6ef-a1b08a14ec6cFitFlop AR URL2022-04-07T00:00:00900038329529781Order Number129629785Email Address229729784Phone Number3