如何设置收款工具
收藏课程
取消收藏
3 mins / By SHOPLAZZA Learn
收藏课程
取消收藏

独立站的一项重要特点,就是能较大程度的保证您的“资金安全”,让资金更加稳定、自由掌控。这是因为独立站拥有更多元的收款方式供您和消费者去选择。而这将同时为您和消费者提供便利。

Shoplazza后台支持Paypal、信用卡支付、分期付款、货到付款等多种支付方式,本课程将简单介绍PayPal和Stripe收款两种工具在平台中的具体使用方式。


  • 0:00:12 独立站的一项重要特点,就是能较大程度的保证您的“资金安全”,让资金更加稳定、自由掌控。这是因为独立站拥有更多元的收款方式供您和消费者去选择。而这将同时为您和消费者提供便利。 我向您推荐PayPal和信用卡收款两种工具。
  • 0:00:34 首先是PayPal,它在全球拥有2.2亿活跃用户,是全球很多国家消费者首选的支付工具。无论是PC还是移动端,它都能有良好的支持。在整个交易中,PayPal会收取1.9%至3.4%不等的手续费。我强烈的推荐您使用企业级的PayPal账户,它将拥有更完善的服务和稳定性。PayPal的注册也很简单,您只需要登录PayPal的官网,如实的填写企业信息即可。随后您需要对账户进行认证和绑定银行卡,最后您还需要进行邮件的激活,整个过程可能需要两到三天的时间,一个全球可用的企业级收款工具,就这么完成了。
  • 0:01:27 另外推荐给您的是信用卡的收款工具,它们可以让您的顾客在您的网站上用信用卡进行消费。值得一提的是,PayPal是拥有此项功能的,遗憾的是很多消费者对此并不知情。所以拥有一个信用卡收款渠道依然很必要。
  • 0:01:46 Stripe是一个强大且流行的支付工具,也是店匠最推荐使用的信用卡收单工具。 使用美国版stripe,每笔信用卡交易收取2.9%的费用加上0.30美元的手续费,值得一提的是,Stripe目前还不对中国大陆企业直接开放服务。您必须拥有一个香港或其他国家地区的公司主体,才能申请Stripe并进行使用。 之所以推荐它,是因为它除了交易佣金外,不收取其他费用,并且简单易用。Stripe可以轻易的接入您的网站,并且为您识别信用卡欺诈。
  • 0:02:26 除了Stripe之外,其实国内也有很多优秀的信用卡收款工具供您选择,比如钱海、PingPong。您可以根据自己企业的情况自由的选择。 以上这些工具都可以轻松的接入Shoplazza的后台,以PayPal举例,您只需要进入后台,点击收款设置,点击PayPal,然后输入账号密码即可。是不是特别简单呢? 搞定了这些,我们就能快速的开始下一步了。
课程评论

看看学员怎么说

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