No content to show
User Activity
10-22-2023
Is there any way to get the timestamp for when the customer account has been created via API?We use classic accounts.
use the `state` propertyhttps://shopify.dev/docs/api/admin-rest/2023-04/resources/customer#resource-object:~:text=Show%20sms_marketing_consent%20properties-,state,-read%2Donly
resolved: my form was not sending the country parameter. apparently shopify sends a 302 response even if the form is invalid, and just silently ignores the error
05-05-2023
I am writing my own code to implement the "add new address form" on my theme. I followed the docs here, but my form is not adding a new record upon submit.https://shopify.dev/docs/themes/architecture/templates/customers-addresses#add-a-new-address Do...
managed to fix this by adding config/settings_schema.json from an existing theme. detailed steps below 1) open the preview link (https://<my-store-domain>?preview_theme_id=xxx)2) an error message stating "Theme cannot be previewed because it's missin...
even after running `shopify auth logout` I am still facing the same issue
I am developing a new theme for my existing store.Previously, I was running `shopify theme dev --store <my-production-store>` which was running fine. Now I have opened a new development store, and I want to switch the target store to this store.Howev...
import requestsaccess_token = "xxx"
headers = {
"X-Shopify-Access-Token": access_token,
"Content-Type": "application/json",
}
url = "https://xxx.com/admin/api/2023-01/orders/xxx.json"
res = requests.put(
url,
json={"order": {"id": xxx...
I'm working on a custom app which requires write_orders and read_orders scope.To make sure my access token is working, I ran this command: curl -X GET "https://your-development-store.myshopify.com/admin/api/2023-04/orders.json?status=any" \-H "X-Shop...
I am developing a Shopify theme, and I would like to add a completely new page.I understand we can add new pages from "Online Store > Pages" on the admin console, but I believe we cannot edit the liquid code for such pages.Is it possible to add a new...
12-11-2022
I am trying to use ShopifyQL so we can analyze data on our endFollowing the documentation, I executed the code on my Shopify GraphiQL apphttps://shopify.dev/api/admin-graphql/2023-01/queries/shopifyqlQuery#examples-Get_a_table_data_response_by_using_...
09-23-2022
Thank you Ketan, I have emailed you my shop URL.
I want to customize the /account page on my shop.Is there a way to access the account page after login in local development environment? i.e. `shopify theme serve` When I try to login on my localhost, I am redirected to /challenge on production, whic...
I am facing an issue with my manual payment method, where even after clicking on "Mark as paid" on the admin page, my liquid code `{{ transactions[0].status }}` remains at `pending`. Background:To address our local customer needs, we have added bank ...
09-20-2022
Setup: On my store theme files, I have a conditional code which shows a "coming soon" button in place of a "sold out" or "add to cart" button for certain products. To achieve this, I am using Metafields Guru app.The condition to show "coming soon" is...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
1561 | 04-27-2023 07:28 AM |