I want to implement app progress functionality on my app dashboard.
Where user will be able to see these things:
Is there any api to get these details from shopify themes settings.
I want to implement app progress functionality on my app dashboard.
Where user will be able to see these things:
Is there any api to get these details from shopify themes settings.
Hello @hassanrazabigfo
I’ve implemented a similar feature in another app. Instead of relying on Shopify theme settings, I designed a custom progress tracking system. When the app loads and the user clicks on Step 1, I call an API to update the progress status in the database (e.g., marking Step 1 as completed).
Alternatively, you can store progress data in cookies to track user activity without a database update. Let me know if you need more details on implementation!