店匠费用及划扣方式
收藏课程
取消收藏
3 mins / By SHOPLAZZA Learn
收藏课程
取消收藏

店匠Shoplazza因其强大的建站功能和全面的客户服务,成为很多想做跨境独立站的品牌商的首选。因此,很多品牌商都非常关心店匠Shoplazza的费用问题。

本课程将为您详细介绍店匠Shoplazza的费用及划扣方式,助您更好地了解和使用Shoplazza。

  • 0:00:12 今天这节课我们来一起了解一下shoplazza费用以及划扣方式。Shoplazza 的费用构成目前由订阅费和GMV佣金也就是商品交易总额两部分组成。
  • 0:00:25 在你注册Shoplazza账号以后会有7天试用期,试用期间若你有进一步使用我们产品的计划,需要在试用期结束前,主动订阅正式的套餐版本,所需要的费用就是订阅费。 订阅费可以通过信用卡支付完成,卡种目前支持VISA、Mastercard、JCB、美国运通和银联信用卡。 Shoplazza已取得PCI(Payment Card Industry)支付安全认证,可以确保你支付信息的安全性。 此外,你绑定的信用卡信息,会直接保存到第三方支付平台stripe上,stripe具备成熟的风控能力,同样可以确保你信用卡的安全。 在绑定信用卡并主动订阅正式套餐后,你注册时使用的邮箱会收到订阅费扣款的通知。
  • 0:01:14 这里要注意,正式套餐生效后,会默认采用到期自动订阅、自动扣款的机制,以避免因店铺自然过期而影响店铺的前台交易。 当然如果你想要取消套餐自动订阅的功能我们也是支持的,你可以打开店铺后台,找到“店铺设置”,点击“套餐与支付方式”,“套餐订阅计划”,选择“取消套餐自动订阅”即可。 Shoplazza会在后台的【店铺设置-套餐与支付方式】界面,为你标记下次订阅费的扣款日期,并在店铺到期三天前,通过站内信方式提醒你。如果扣款成功,平台也会把支付成功的账单通过邮件发送给你。 值得注意的是,如果你的店铺绑定了不能正常交易的信用卡,会导致店铺续费失败,在首次自动订阅扣款失败后,你有两次重试扣款的机会,每24小时重试一次,最后一次重试扣款失败后,整个店铺会进入冻结状态。
  • 0:02:21 除了订阅费,另外的费用就是GMV佣金。那么,GMV佣金是如何扣款的呢? GMV佣金同样是需要通过信用卡完成支付的,当店铺产生的GMV佣金累计满50USD,系统将生成抽佣账单,并对店铺绑定的信用卡发起扣款。扣款成功,系统将会生成抽佣明细账单,通过邮件推送给你,同时会发送站内信与你取得联系,你可以随时到管理后台下载明细账单进行核对。 值得注意的是,如果首次扣款失败,你将还会有3次机会进行补救以避免店铺被冻结,每次扣款失败后,Shoplazza都会通过站内信和邮件的形式通知你。我们一共会提供3天时间给你换绑可以正常缴费的信用卡,你只要进行绑卡后主动发起支付就可以解除限制。
课程评论

看看学员怎么说

发表评论
顾客评论
已到底部
最新评价时间
按点赞数从大到小
按评分从高到低
按评分从低到高
×
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.