如何在后台进行谷歌工具开户
收藏课程
取消收藏
5mins / By SHOPLAZZA Learn
收藏课程
取消收藏

对于跨境电商独立站卖家而言,要想获取更多潜在消费者,增加独立站流量,提高销售额,Google 引流是刚需,而谷歌广告(Google Ads)开户是使用 Google 投放广告的第一步。

本课程将通过演播的方式快速教会你如何在shoplazza后台进行谷歌工具开户,同时讲解开户过程中的各项注意事项,缩短你的开户流程。

  • 0:00:10 谷歌的展示和搜索广告都只需要在Google ads 中进行操作投放,申请和投放的难度都相对比较低,今天我来为你介绍如何开通账户,以及认识谷歌购物广告。使用Shoplazza,你将获得简单顺畅的广告投放体验。在这里你可以完成开户、数据埋点、Ads转化跟踪、关联GMC账号、对商品feed进行预检等操作。这将极大地简化操作和学习成本。
  • 0:00:42 首先我们要完成企业的信息审核认证,点击Shoplazza后台的“营销推广”, 然后点击“Google”, 就可以抵达这个页面。 分别对应一些功能和操作。第一步我们首先要完成的是企业认证,点击广告客户,点击去认证。在这里输入相应的资料信息点击提交即可。然后回到账户开通页面,点击开通账户,依次填写所需的信息,点击提交。值得一提的是,建议你选择广告投放目的地的时区为账号的默认时区。回到开户页面,当开户成功后我们就可以进行充值,点击充值,输入充值金额,最低的充值金额为500美元,选择一种支付方式。
  • 0:01:40 Shoplazza目前支持微信和支付宝付款,并且已经打通了接口,会按照实时汇率,向你收取相应的人民币。 你在Shoplazza充值的广告费,并不会占用你的个人或者企业外汇额度,你只需要支付人民币,剩下的其他手续由Shoplazza代为处理,也就是说大额的广告预算不会成为问题。
  • 0:02:06 第二步,广告数据埋点。如果你已经有一个GA账号,可以点击开始按钮,一键将GA代码部署在你的网站中。 如果还没有,你可以登录analytics.google.com网站,注册一个属于你的账号,方法很简单,使用你的谷歌账号登录这个网站,点击管理,然后点击创建账号,输入相应的名称、时区、网站交易币种等信息即可。
  • 0:02:39 第三步,就是关联我们的GMC。GMC是Google merchant center的缩写,可以翻译为商家中心。你可以把它看做一个自己的仓库,里面储存着你网站中所有商品的信息。谷歌购物广告,就是靠着这间仓库中的信息,才能对消费者介绍你的商品。如果你已经拥有一个GMC账号,同样的,只需要点击两下,就可以将它绑定到你的网站后台,十分简便。如果你还没有GMC账号,我会专门用一节课程来为你解答。
  • 0:03:13 第四步,也是重要的一步,通过预检。很多商家上传了自己的商品信息后,会出现被封禁,或者广告效果不佳的情况,这都是因为你的商品信息需要优化。Shoplazza为您提供了这项服务,当你的店铺筹备完毕,准备上传商品信息时,只需点击一键预检,系统将会根据谷歌政策的要求和merchant center的规范对你的店铺网站进行店铺设置与店铺装修中条款进行扫描诊断。数秒之后你就可以清晰地看到网站还有哪些东西需要调整,只有网站店铺健康分数达到了100分后,才能进行下一步操作。如果不符合规范,贸然提交,很可能会导致GMC被封,复杂的解封工作一定不是你想要的。Shoplazza的这项功能十分强大,根据我们的测试,满分的店铺,最终通过谷歌审核的概率在90%以上,赶快把它利用起来吧。
  • 0:04:11 最后一步,就是开启“非付费商品详情”,你可以把它理解为“免费的展示机会”。除了你的付费广告之外,广告系统会分配一些流量来满足真实的用户需求。所以这一项也是必须完成的工作。
课程评论

看看学员怎么说

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