如何利用品集工具实现选品
收藏课程
取消收藏
4 mins / By SHOPLAZZA Learn
收藏课程
取消收藏

铺货模式可以通过平台大批量地上传商品,在短时间内提升独立站的销售额,是非常适合新手商家使用的一种模式。那么,在这种模式下该如何进行选品呢?又需要借助什么工具呢?
本课程将介绍在shoplazza后台使用品集插件进行商品抓取的过程,并且介绍两种重要的选品策略,助您方便快捷地选对产品。

  • 0:00:12 跨境电商独立站常见的运营模式分为四种: 1.铺货模式; 2.垂直品类; 3.Dropshipping; 4.D2C(Direct-to-Customer)。 你的店铺是哪一种运营模式呢? 不同的运营模式主要取决于店家的经验和所处阶段。比如,铺货模式就是通过平台大批量地上传商品,提高产品的上传效率,可以在短时间内提升独立站的销售额,是在发展的前期极受欢迎的一种模式。 因为这种模式不需要进行太多的宣传推广和运营优化,操作简单便捷,对于经验和人力的要求不高,并且有利于建立稳定的销售网点。因此,适合新手商家来使用。 正因为铺货模式的这种特点,因此需要快速大量的上传商品。与此同时,你的竞争优势将不再是价格或者是独特的商品,而是比竞争对手更快、更好地接触和服务你的客户。 也就是说,营销、运营以及客户支持,才是你获得竞争优势的来源。因此切中用户的差异化需求,深入到小众商品的利基市场,才是铺货模式下好的选品策略。
  • 0:01:29 下面我们推荐两个常用的选品策略。 策略一:基于供应链优势。 对于单价较低的商品来说,因为价格较为低廉,消费者普遍不会在意微小的溢价空间,对于价格的敏感度较低,比如智能手机保护壳、无线充电底座、方向盘保护套、车内挂饰等商品。 在这种购物体验中,消费者更在乎的是产品的质量和购物的快速便捷。而这些产品,基于中国市场优秀的供应链系统,很容易寻找到价格实惠并且优质的供货商。因此选择这些品类进行售卖,可以通过扩大销量从而获得利润。 策略二:基于消费习惯培养 同时推荐的还有日用消耗品,比如美妆用品、厨房用品、家庭清洁、日用装饰、健身时尚用品等。这类产品不需要知名品牌的加持就能够获得消费者的青睐,非常适合铺货模式的店铺运营。 这种类型的产品因其日常使用率以及消耗品的属性,一旦获得消费者的满意和认可,就会产生回购。老客户良好的回购率,对比推广营销获取新客户,要更加简单容易。 需要注意的是,在选择供应商或商品时,最好不要选择现有品牌的产品,以避免假货和仿品,影响你的店铺信誉,否则将会极大的影响广告投放等问题。
  • 0:03:07 在了解铺货模式下如何选品后,在这里我们介绍一款Shoplazza的插件,品集。 品集,是专业便捷的一键代发系统,支持速卖通、Amazon平台海量商品的一键抓取。采用品集的代发货模式,可以让你更加便捷的从平台上选择不同的供应商。 在Shoplazza后台,左侧菜单栏找到应用市场,在应用列表中找到品集插件,点击进行账号注册,绑定店铺和账号,并加入Dropshipping Center完成初始设置。 需要抓取商品时,可以进入速卖通或Amazon平台,按照选品策略进行选品。复制商品链接到品集后台,进行商品的抓取。抓取成功后,即可一键推送到你的独立站,快速实现商品上架用户购买成功的商品物流状态,就会自动同步更新到品集以及Shoplazza的后台。
课程评论

看看学员怎么说

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