如何利用店匠后台完成Google商品预检
收藏课程
取消收藏
4 mins / By SHOPLAZZA Learn
收藏课程
取消收藏

在开通GMC账户以后,很多卖家上传了商品信息,却会出现被封禁或者广告效果不佳的情况,这都是因为店铺和商品信息需要优化。
本课程将简单介绍如何在Shoplazza后台进行店铺和商品预检,帮您完善和调整信息,使其更加合乎规范,保障GMC账户的稳定。

  • 0:00:12 上节课我们提到了如何在后台进行谷歌工具开户,在这节课,我们将围绕GMC重点讲解Google购物广告的相关知识。 很多商家在完成了GMC账户开通以后,上传了自己的商品信息,依然出现被封禁或者广告效果不佳的情况,这都是因为商品信息需要优化,Shoplazza提供了这项服务,检测的错误主要涉及两方面,店铺后台和GMC账户。 其中,在店铺后台,主要是看店铺设置和店铺装修两部分。
  • 0:00:47 在店铺设置中,会检测收款渠道和物流方案的错误。 因为在GMC政策中,结账流程不完整或结账流程不安全会导致封号,所以店铺预检中要确保至少有一种安全的收款方式和物流方式,流程中不能出现任何错误,付款后应该弹出成功页面,告知客户已经成功购买。 店铺装修的预检主要是检测各类合规条款,主要包括Contact 条款、Privacy 条款、Payment 条款、Terms 条款、Shipping 条款、Return & Refund 条款这些条款。 因为在GMC政策中,虚假陈述会直接关联到Google用户安全,所以,你需要确保独立站的合规性,如明确的隐私条款、联系方式、物流政策、退款和退货政策等等。
  • 0:01:43 而在GMC账户方面的检测主要包括检测网站声明,GMC账户状态,关联谷歌账户这几个部分。 每个 Merchant Center 帐户只能对应一个网站。要在 Google 上展示你的商品,需要确认该店铺网站域名的所有权归商家所有,并且声明该域名专供此 Merchant Center 帐户使用。 另外,还要确保GMC有一个单独的谷歌账户关联使用,我们建议Google Shopping Ads 可以考虑新建其他谷歌账户进行投放,而不与搜索广告等共用账户,避免连带被封。
  • 0:02:19 虽然Google Ads和GMC政策说起来比较复杂,但是使用店铺预检功能,只须等待几秒就能清晰看到网站还有哪些东西需要调整。只有网站店铺健康分数达到了100分后,才能进行下一步操作。 这就好像是一场考试,店铺的预检就相当于交卷前的自我检查,这个时候做得完善,才能考出一个好成绩。只有通过更正和完善网站和账户的信息,才能为GMC账户的稳定提供更多的保障。
  • 0:02:52 店铺预检通过之后,我们同样可以使用Shoplazza后台进行商品预检。 Shoplazza根据Google Shopping Ads的广告政策和Merchant Center规范,对商品信息进行检测,可以帮助商家智能补充商品信息,使其符合GMC投放的格式,自动上传至GMC。 【添加想要投放广告的商品,直接选择商品,该商品的所有子商品都会包括在内。预检任务完成后,会出现预检通过和预检不通过两个结果,如果不通过,点击“去完善商品属性”,然后根据问题指引来完善缺失的商品属性数据。添加完成后,系统会自动再检测一遍,成功完善属性后,商品状态将从检测不通过变为检测通过。】需要注意的是,如果网站出现仿品,包括仿制的商标、款式、商品图片等会导致GMC被封;另外,如果网站销售的品牌很多,并且有大品牌商品,但是没有提供经销商授权; 以及折扣很低、全站折扣、包邮信息等等虚假宣传信息也同样会导致GMC被封。
课程评论

看看学员怎么说

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