shopify

How to Add noindex for specific page in Shopify store

给你一囗甜甜゛ 提交于 2020-01-17 01:41:08
问题 I have a Shopify store and I want to block search engines to index some products pages, I found this solution https://help.shopify.com/en/manual/promoting-marketing/seo/hide-a-page-from-search-engines?utm_source=gurucopy&utm_medium=link&utm_campaign=Gurus#undefined {% if handle contains 'page-handle-you-want-to-exclude' %} <meta name="robots" content="noindex"> {% endif %} but I don't how I should make changes to block my pages below my page link mysite.com/products/product-26 mysite.com

Do customer uploaded files count towards merchant storage limit?

一曲冷凌霜 提交于 2020-01-16 19:05:51
问题 With Line Item Properties, it's possible to allow customers to include file attachments to product orders (http://wiki.shopify.com/Line_Item_Properties#File_attachments). These files are uploaded to http://static.shopify.com/s/files... Do these uploaded files count towards a store's storage limit? Is there a way to list/get/delete these items either manually or through the api? Do the files persist or are they cleaned up periodically? If the customer removes the item with the file upload from

Do customer uploaded files count towards merchant storage limit?

孤人 提交于 2020-01-16 19:04:28
问题 With Line Item Properties, it's possible to allow customers to include file attachments to product orders (http://wiki.shopify.com/Line_Item_Properties#File_attachments). These files are uploaded to http://static.shopify.com/s/files... Do these uploaded files count towards a store's storage limit? Is there a way to list/get/delete these items either manually or through the api? Do the files persist or are they cleaned up periodically? If the customer removes the item with the file upload from

Do customer uploaded files count towards merchant storage limit?

纵饮孤独 提交于 2020-01-16 19:04:12
问题 With Line Item Properties, it's possible to allow customers to include file attachments to product orders (http://wiki.shopify.com/Line_Item_Properties#File_attachments). These files are uploaded to http://static.shopify.com/s/files... Do these uploaded files count towards a store's storage limit? Is there a way to list/get/delete these items either manually or through the api? Do the files persist or are they cleaned up periodically? If the customer removes the item with the file upload from

Shopify Carousels, Owl, slider, ResponsiveSlides

倾然丶 夕夏残阳落幕 提交于 2020-01-14 06:47:42
问题 Please can someone help I have tried to implement 3 kinds of carousels and nothing is working: http://owlgraphic.com/owlcarousel/ http://slidesjs.com/ http://responsiveslides.com/ Nothing works, I have added the JS and CSS like this: <!-- CSS ================================================== --> {{ 'timber.scss.css' | asset_url | stylesheet_tag }} {{ 'theme.scss.css' | asset_url | stylesheet_tag }} {{ 'index.css' | asset_url | stylesheet_tag }} {{ 'owl.css' | asset_url | stylesheet_tag }} {{

Shopify Carousels, Owl, slider, ResponsiveSlides

冷暖自知 提交于 2020-01-14 06:47:10
问题 Please can someone help I have tried to implement 3 kinds of carousels and nothing is working: http://owlgraphic.com/owlcarousel/ http://slidesjs.com/ http://responsiveslides.com/ Nothing works, I have added the JS and CSS like this: <!-- CSS ================================================== --> {{ 'timber.scss.css' | asset_url | stylesheet_tag }} {{ 'theme.scss.css' | asset_url | stylesheet_tag }} {{ 'index.css' | asset_url | stylesheet_tag }} {{ 'owl.css' | asset_url | stylesheet_tag }} {{

Login/Signup API implementation in iOS Shopify

跟風遠走 提交于 2020-01-13 20:41:05
问题 I am developing an Mobile app using shopify SDK, however I am not able to find anything to implement Login/Signup into my app. I have done shopping cart/products but unable to implement customer login. Is there any solution to implement login/signup using Shopify in app or any bridge I can create between shopify and custom PHP services. Thanks. 回答1: You can use Shopify's customer object from the API. 回答2: You can use Shopify API which is given in tutorial, I have give code for Login and Sign

[跨境工具通]SHOPIFY有哪些好用的流量推广工具?10款免费工具了解一下~

被刻印的时光 ゝ 提交于 2020-01-12 10:11:05
对于Shopify店铺而言,最重要的肯定是流量了。而Shopify由于本身不带流量,需要卖家自己推广,这时候一些Shopify工具,就能起到很好地提高卖家推广效果的作用了。 这里Xel整理了10个可以免费使用的Shopify推广工具,一起看下: Instagram shop by Snapppt 帮助Shopify卖家利用instagram平台开展产品宣传。对于instagram,通常顾客无法通过直接点击图片进入产品页面。Instagram shop by Snapppt可以将Instagram动态变成可购买图片,顾客只要点击图片上的图标,就会进入产品购买页面,方面顾客购买,提高成交率 免费 Kit Kit是一款适用于Shopify的基于AI的自动化营销工具,它可用作你的虚拟营销助理,主要功能包括: ✓ 社媒内容发帖管理 ✓ 投放社交媒体广告,包括Facebook和Instagram广告 ✓ 建立相似的广告受众群体,确保您的广告实现了最佳定位 ✓ 电子邮件营销 ✓ 发布Facebook更新 ✓ 发送个性化的“谢谢”电子邮件给客户 ✓ 创建和推广折扣券,以获取和留住客户 ✓ 客户管理CRM ✓ 销售跟踪与数据统计 免费 WhatsApp Chat + Abandoned Cart WhatsApp Chat + Abandoned Cart插件主要有2大作用

How to pass Javascript api request result variables to shopify liquid variable

▼魔方 西西 提交于 2020-01-06 07:45:28
问题 I have a javascript that makes a api call and gets a json response. I need to pass this to my liquid template and iterate over it. How do i pass the result variable on get request to a shopify liquid variable.? Thanks..! 回答1: You cannot do that. Liquid is rendered Server Side... whereas your Javascript is considered to be client side coding. When you are rendering your Liquid, you can transfer Liquid into Javascript for use later, but not vice versa. Also, if you are getting JSON via an API

How to pass Javascript api request result variables to shopify liquid variable

Deadly 提交于 2020-01-06 07:44:10
问题 I have a javascript that makes a api call and gets a json response. I need to pass this to my liquid template and iterate over it. How do i pass the result variable on get request to a shopify liquid variable.? Thanks..! 回答1: You cannot do that. Liquid is rendered Server Side... whereas your Javascript is considered to be client side coding. When you are rendering your Liquid, you can transfer Liquid into Javascript for use later, but not vice versa. Also, if you are getting JSON via an API