How to make paid app in shopify?
I have created app in shopify and now I want to make that app paid. Please let me know what to do to make that app paid. I want monthly charge for the app. I have already set price in…
I have created app in shopify and now I want to make that app paid. Please let me know what to do to make that app paid. I want monthly charge for the app. I have already set price in…
Here is working demo. Its working well on js fiddle and on my localhost as well but when i executing it on shopify store it is not working. showing me following error... Uncaught TypeError: $(...).translate is not a function For…
import shopify from base64 import b64encode #omitted the shopify key shopify.ShopifyResource.set_site(shop_url) path = "product.jpg" new_product = shopify.Product() new_product.title = "title" new_product.body_html = "This is a test" image = shopify.Image() with open(path, "rb") as f: filename = path.split("/")[-1:][0] #encoded = b64encode(f.read())…
I'm using Shopify and want to hook into customer tags, however they are case sensitive. So {% if customer.tags contains "wholesale" %} is not the same as {% if customer.tags contains "Wholesale" %}. My client may or may not stick…
Is is possible to create a customer in Shopify via their API? To elaborate, I want to use Shopify to manage my customers and orders and so on. But my website registration page, for a particular reason, isn't on Shopify…
On my Shopify page I have a bunch of products that have weird characters in their description that I assume got there from importing from a CSV. It would be too much work to go through each one and remove…
I was recently asked to change a script that is on this shopify website but I am unable to find it in either the backend settings or the actual code for the template. Could someone please point me in the…
What is The difference between settings_data.json and settings_schema.json file in shopify, i can set theme settings by both, but i will use which one for when exactly? I am giving an example in below where is displayed Setting_schema.json file and…
How can I remove ?v=2222dddhh4 from img srouce in shopify ? Main source: I want: <img src="https://cdn.shopify.com/s/files/1/1608/4177/files/Size_Guide.png>
I am using Django with the shopify_auth package to connect with Shopify. Does anyone have any examples of how to handle multi store sessions/connections? So far, I am thinking of modifying shopify_auth's @login_required decorator with the following, but am unsure…