No content to show
User Activity
Out of curiosity, in the past I've noticed that in some cases Shopify can't process an order quickly enough to generate an order ID, instead they generate a confirmation ID. I wonder if the missing event is due to this issue within Shopify? The event...
When a user lands on the Checkout, I would like to make an external API call to fetch some data and store this data in cookies. Very simple stuff, I don't even want to modify any business logic in the Checkout. Do I use a Checkout UI function even t...
I've recently migrated my store to Checkout Extensibility. I have a custom web pixel app installed in Settings > Customer Events > {My Pixel App} In there I'm listening to checkout events like "checkout_started" or "checkout_completed". These events...
I'm having a similar issue. In my case I'm just trying to test local changes (not production) but I get the same warning
05-23-2024
Hello, I have tried to do what you suggested by I get nothing in my console.log I have deployed the app to my local development store too (not just preview mode) Does the user need to be logged in? Thanks
05-13-2024
In our case we use Segment script. We also had an issue with "window not defined" so we had to wrap our code whenever we want to use the window. Perhaps try this:if (window.dataLayer) { window.dataLayer.push({ event: "page_viewed", id: event.id...
05-13-2024
Hello, I am migrating my store to Checkout Extensibility. I need a way to fire analytics events depending on the checkout/ customer data. For example, if a user opted-in to Email or SMS marketing I would like to fire a custom event with some propert...
02-15-2024
I was having this same issue, what worked for me was clearing my cookies. Once I refreshed I was able to interact with parts of the admin. In my case, as a developer, I was trying to use the Shopify GraphiQL App Hope it helps!
In our store we have some custom discount logic that does the following: Applies a discount code (changes line item price) "Buy X for Z" based on this Shopify Scripts example: https://help.shopify.com/en/manual/checkout-settings/script-editor/example...
For us the temporary solution was to check wether order.id exists in the data, if it doesn't we then force a page reload and it then fixes the issue. I contacted Shopify and they don't have a solution for this problem. It seems that for some customer...
Hello, We use the Checkout thank you page to send some analytics events which contain the order name and order ID. Can this new confirmation ID be accessed via liquid? the same way we can access {{ order.id }} or {{ order.name }} ?
Hello, We want to build a product recommendation API that allows us to recommend products of the same "product_type" in our cart page. We already have automatic discounts setup with Shopify's Script Editor that allows discounts to be applied when a u...