${function() {
const variantData = data.variant || {"id":"537f742c-91c3-4fa4-8232-15f3a3750ef2","product_id":"77f6f9aa-d538-44d5-9422-6fdbc19c4f71","title":"blue-S","weight_unit":"g","inventory_quantity":999,"sku":"1569877731339395074","barcode":"","position":1,"option1":"blue","option2":"S","option3":"","note":"","image":{"src":"\/\/img.staticdj.com\/22a2133792430b50151becc4caccc83d.jpeg","path":"22a2133792430b50151becc4caccc83d.jpeg","width":900,"height":900,"alt":"78dc3f8d6f7dcaf6dce8c4bfae67aaef","aspect_ratio":1},"wholesale_price":[{"price":29.89,"min_quantity":1}],"weight":"500","compare_at_price":"49.89","price":"29.89","retail_price":"49.89","available":true,"url":"\/products\/oversized-unisex-contrast-polos-sweatshirt-h1mu?variant=537f742c-91c3-4fa4-8232-15f3a3750ef2","available_quantity":999999999,"options":[{"name":"Color","value":"blue"},{"name":"Size","value":"S"}],"off_ratio":40,"flashsale_info":[],"sales":2};
const saveType = "amount";
const saveText = "Save {{saved_amount}}";
const productLabelDiscountOn = false;
return `
-
${saveText.replace('\{\{saved_amount\}\}',
saveType == 'percentage'
? variantData.off_ratio + '%'
: ` `
)}
`;
}()}
people are adding to purchase
Color
: blue
${function(){
const optName = "Color";
const optionValue = data.originData.selectData ? data.originData.selectData[optName].value : data.originData.value;
const optionValueText = optionValue ? (': ' + optionValue) : '';
return `
${optionValueText}
`
}()}
${function(){
const tipText = "Please select a {{ name }}".replace(/\{\{\s+name\s+\}\}/g, data);
return `${tipText}
`
}()}
Size
: S
${function(){
const optName = "Size";
const optionValue = data.originData.selectData ? data.originData.selectData[optName].value : data.originData.value;
const optionValueText = optionValue ? (': ' + optionValue) : '';
return `
${optionValueText}
`
}()}
${function(){
const tipText = "Please select a {{ name }}".replace(/\{\{\s+name\s+\}\}/g, data);
return `${tipText}
`
}()}
${function() {
const postageFreeAmount = 89;
const custom_text = "Buy {amount} more to get FREE Shipping";
const totalPrice = +data.total_price;
const diffPrice = postageFreeAmount - totalPrice;
const percentDiff = (diffPrice > 0 ? (totalPrice / postageFreeAmount * 100) : 100) + '%';
let tipText = "Your order is free delivery";
if (diffPrice > 0) {
tipText = custom_text.replace('{amount}', `
`);
}
return `
`;
}()}
Add to cart
Product was out of stock.
Product is unavailable.
${function(){
const variantData = data.variant || {"id":"537f742c-91c3-4fa4-8232-15f3a3750ef2","product_id":"77f6f9aa-d538-44d5-9422-6fdbc19c4f71","title":"blue-S","weight_unit":"g","inventory_quantity":999,"sku":"1569877731339395074","barcode":"","position":1,"option1":"blue","option2":"S","option3":"","note":"","image":{"src":"\/\/img.staticdj.com\/22a2133792430b50151becc4caccc83d.jpeg","path":"22a2133792430b50151becc4caccc83d.jpeg","width":900,"height":900,"alt":"78dc3f8d6f7dcaf6dce8c4bfae67aaef","aspect_ratio":1},"wholesale_price":[{"price":29.89,"min_quantity":1}],"weight":"500","compare_at_price":"49.89","price":"29.89","retail_price":"49.89","available":true,"url":"\/products\/oversized-unisex-contrast-polos-sweatshirt-h1mu?variant=537f742c-91c3-4fa4-8232-15f3a3750ef2","available_quantity":999999999,"options":[{"name":"Color","value":"blue"},{"name":"Size","value":"S"}],"off_ratio":40,"flashsale_info":[],"sales":2};
return `
`
}()}
/** @private {string} */
class SpzCustomAnchorScroll extends SPZ.BaseElement {
static deferredMount() {
return false;
}
constructor(element) {
super(element);
/** @private {Element} */
this.scrollableContainer_ = null;
}
isLayoutSupported(layout) {
return layout == SPZCore.Layout.LOGIC;
}
buildCallback() {
this.viewport_ = this.getViewport();
this.initActions_();
}
setTarget(containerId, targetId) {
this.containerId = '#' + containerId;
this.targetId = '#' + targetId;
}
scrollToTarget() {
const container = document.querySelector(this.containerId);
const target = container.querySelector(this.targetId);
const {scrollTop} = container;
const eleOffsetTop = this.getOffsetTop_(target, container);
this.viewport_
.interpolateScrollIntoView_(
container,
scrollTop,
scrollTop + eleOffsetTop
);
}
initActions_() {
this.registerAction(
'scrollToTarget',
(invocation) => this.scrollToTarget(invocation?.caller)
);
this.registerAction(
'setTarget',
(invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId)
);
}
/**
* @param {Element} element
* @param {Element} container
* @return {number}
* @private
*/
getOffsetTop_(element, container) {
if (!element./*OK*/ getClientRects().length) {
return 0;
}
const rect = element./*OK*/ getBoundingClientRect();
if (rect.width || rect.height) {
return rect.top - container./*OK*/ getBoundingClientRect().top;
}
return rect.top;
}
}
SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll);
const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings";
class SpzCustomStrengthenTrust extends SPZ.BaseElement {
constructor(element) {
super(element);
this.renderElement_ = null;
}
isLayoutSupported(layout) {
return layout == SPZCore.Layout.CONTAINER;
}
buildCallback() {
this.xhr_ = SPZServices.xhrFor(this.win);
const renderId = this.element.getAttribute('render-id');
SPZCore.Dom.waitForChild(
document.body,
() => !!document.getElementById(renderId),
() => {
this.renderElement_ = SPZCore.Dom.scopedQuerySelector(
document.body,
`#${renderId}`
);
if (this.renderElement_) {
this.render_();
}
this.registerAction('track', (invocation) => {
this.track_(invocation.args);
});
}
);
}
render_() {
this.fetchData_().then((data) => {
if (!data) {
return;
}
SPZ.whenApiDefined(this.renderElement_).then((apis) => {
apis?.render(data);
document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{
if(event.target.nodeName == 'A'){
this.track_({type: 'trust_content_click'});
}
})
});
});
}
track_(data = {}) {
const track = window.sa && window.sa.track;
if (!track) {
return;
}
track('trust_enhancement_event', data);
}
parseJSON_(string) {
let result = {};
try {
result = JSON.parse(string);
} catch (e) {}
return result;
}
fetchData_() {
return this.xhr_
.fetchJson(STRENGTHEN_TRUST_URL)
.then((responseData) => {
if (!responseData || !responseData.data) {
return null;
}
const data = responseData.data;
const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => {
return result.concat(Object.assign(moduleSetting, {
logos: (moduleSetting.logos || []).map((item) => {
return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item;
})
}));
}, []);
return Object.assign(data, {
module_settings: moduleSettings,
isEditor: window.self !== window.top,
});
});
}
}
SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);
${data.module_title}
To display this card to customers, you need to go to "Booster & Store Conversion" to turn on the trust enhancement feature.
${item.content.replaceAll("{store_name}","nicezap")}
To display this card to customers, you need to go to "Booster & Store Conversion" to turn on the trust enhancement feature.
Our outfits are designed with standard sizing. We recommend customers choose the size they typically wear for a comfortable fit. For accurate selection, please refer to our size chart, which aligns with standard industry measurements. For example, if you usually wear a medium, we advise selecting the same size in our outfits for an optimal fit.
Hoodie Size Chart (Men's & Women's)
Size (US/EU)
Chest (inches)
Chest (cm)
Sleeve Length (inches)
Sleeve Length (cm)
XS
34-36
86-91
31-32
78-81
S
36-38
91-97
32-33
81-84
M
38-40
97-102
33-34
84-86
L
42-44
107-112
34-35
86-89
XL
46-48
117-122
35-36
89-91
XXL
50-52
127-132
36-37
91-94
T-Shirt Size Chart (Men's & Women's)
Size (US/EU)
Chest (inches)
Chest (cm)
Length (inches)
Length (cm)
XS
32-34
81-86
27-28
68-71
S
34-36
86-91
28-29
71-74
M
38-40
97-102
29-30
74-76
L
42-44
107-112
30-31
76-79
XL
46-48
117-122
31-32
79-81
XXL
50-52
127-132
32-33
81-84
Tips:
Fit Guide : For a looser fit, consider sizing up.
Unisex Sizing : These sizes are generally unisex; women may want to order one size down for a snugger fit.
Ensure to check the specific measurements provided by different outfits as sizing may vary slightly.
1. Worldwide shipping. 2. Estimated delivery time is 10-20 days. 3. Standard Shipping: order over $89 - Free order $0-$88.99 - $13.99
If you are not happy with your purchase, we are ready to help!
Requirement:
The item is in its original packaging.
The item isn't used or damaged.
The item should be returned or exchanged within 30 days.
Click here for more details.