What's your biggest current challenge? Have your say in Community Polls along the right column.

Check if Post-purchase extension is enabled.

Check if Post-purchase extension is enabled.

Marc_Mayr
Shopify Partner
76 1 14

Hi, we created an app with a post-purchase extension, but the post-purchase extension has to be enabled in the checkout settings. Is there any way we can tell if a store has it enabled or not?..

Replies 6 (6)

Olivia
Shopify Staff (Retired)
1725 148 317

Hi, @Marc_Mayr!

 

Thanks for sharing your question with our network. 

 

Typically when a store installs a post-purchase extension app, they will find additional settings become available in their Shopify Admin. A post-purchase page only displays in your store's checkout if you've completed the configuration in the app settings.

Steps:

  1. From your Shopify admin, click Settings.
  2. Click Checkout.
  3. In the Post-purchase page section, select the checkout app that you want to use.

We also offer in-depth documentation on post-purchase apps you can review to view the full installation process and anticipated experience. 

 

I trust that answers your question, but please let me know if I have missed or misunderstood anything.


Warm regards,

Olivia | Social Care @ Shopify 
 - Was my reply helpful? Click Like to let me know! 
 - Was your question answered? Mark it as an Accepted Solution
 - To learn more visit the Shopify Help Center or the Shopify Blog

Danh11
Shopify Partner
87 2 40

I think you might have misinterpreted Marc's question.

 

I'm wondering the same thing. It is possible for a merchant to have multiple post-purchase apps installed on a store. Only one can be active at a time. I have noticed that post-purchase apps are able to check if they're currently activated. I believe Marc is wondering how this is performed, as am I.

 

This is the context of the app developer, not a store merchant. And also, this is in relation to the checkout settings, and not enabling the app block within the theme.

Marc_Mayr
Shopify Partner
76 1 14

Thanks for clarifying. Still no solution to this

rohit720
Shopify Partner
11 1 5

Did you find ?

rohit720
Shopify Partner
11 1 5

Use this graphql query : 

query CheckPostPurchaseApp {
      app {
        isPostPurchaseAppInUse
      }
    }
Danh11
Shopify Partner
87 2 40

This works! Not sure how I missed this in all the time I spent looking. Thank you!