Women's Yoga Fitness Bag Dry Wet Separation Shoe Position Training Bag Customizable Logo Short Trip

$10.00
Color:  Black
كمية
شحن

Rich text

A sentence or two introducing your brand, what you sell, and what makes your brand compelling to customers.
Buy now

وصف

如果您创建的通用物流方案不足以满足您的业务,并且您希望为不同的产品提供不同的运输费率,那么您可以创建自定义物流方案。

例如,如果您销售一些易碎产品(如玻璃器皿),需要更多更精细的运费配置,那么您可以为这些易碎产品单独创建运费方案,收取与其他产品不同的运费。这对于跨境电商运输来说尤为重要,因为商品的物流需求可能有所差异,精确的运费设置能够有效控制成本。

操作路径

  1. 登录您的 Shoplazza 管理后台,点击设置 > 物流。

  1. 找到运费方案部分,点击创建自定义物流方案

  1. 填写一个方案名,然后点击添加商品与创建区域方案。

  1. 点击添加商品按钮,会进入商品选择的弹窗。在商品选择中,您需要选择需要应用这个自定义物流方案的商品,您可以从专辑列表中添加,也可以单独添加产品,完成后点击确定

 

  1. 点击创建区域方案:

  • 为此运输方案创建名称。

  • 选择该方案需要支持的国家或地区。

  • 如果您需要COD(货到付款)请勾选支持货到付款。

  • 点击确认保存您的发货设置。

 

  1. 区域添加完成后,点击添加运费方案,为选定的运输区域设置具体的运费费率。

注意:

在设置此部分之前,您可能需要先咨询承运商以获取适合您店铺的运费方案。

  1. 您可以为此运费方案输入方案名称,输入之后点击页面空白处即可保存;也可以点击下拉框选择已有运费方案名。

  1. 编辑方案说明部分以提供更多信息。添加一个简短的说明,可以澄清并帮助您的客户了解运输和计算方式。

  1. 在规则设置中,您可以选择生效范围和计算方式,可选基于订单价格商品数量订单重量计算运费。

提示:

自定义物流方案默认生效范围默认选择“【xxx】商品”,且当前配置的物流方案存在以下情形,建议可以不用修改此选项:

  • 店铺使用多个发货地或仓库,而该物流方案中的商品仅来自某一个仓库;

  • 此方案中的商品因特殊原因(如体积较大)无法与其他商品合并发货,或是发货成本比其他商品较高,需单独计算运费。

关于此选项的详细介绍请查看:根据商品范围匹配运费

  1. 运费设置部分,可选择固定运费首重+续重按售价比例,并输入运费金额。

  1. 点击确定,即可在区域方案中保存此费率。

  1. 完成后,点击保存

注意:

  • 一个运费方案可以添加到多个物流方案中。

Customer Reviews
Here are what our customers say.
أكتبمراجعة
آراءالعملاء
واو لقد وصلت إلى القاع
الأحدث
الأكثر إعجابا
أعلى التصنيفات
أدنى التصنيفات
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.