Global expansion, localizing content, and selling in multiple currencies and languages
I'm building a website for a client using the Shopify Storefront Api, it seems to work well with the Translate & Adapt app, so far so good.
However, the first product we tried, we made a little copy error in the translation. When adjusting it, the api would not send the updated copy to the front-end. Weirdly enough, for another product where we changed the translated description, it does seem to update. It's not cache on my end, it has something to do with the Translate & Adapt app.
For testing now; I'm using postman and see the old translated product description still coming through as a response, even though I've completely emptied that description in Shopify Translate & Adapt app.
Hi @BramK
I see what’s happening here. You’re working with Shopify’s Storefront API alongside the Translate & Adapt app, and you’re running into an issue where product translations aren’t consistently updating on the front end. It’s odd that one product updates fine, but another one still shows the old translation even after clearing it out.
This sounds like a sync or indexing issue between the Translate & Adapt app and Shopify’s API. Even if you’ve updated the translation in the app, Shopify might still be holding onto cached or stale data in its API responses.
Here’s what I recommend trying:
1-Force a Translation Sync
Manually Trigger an API Update
Since you’re using the Storefront API, try making a POST request to the Admin API to force an update to the translated content. Example using Postman:
POST https://{your-store}.myshopify.com/admin/api/2024-01/translations.json
Headers:
- X-Shopify-Access-Token: {your-access-token}
- Content-Type: application/json
Body:
{
"translation": {
"locale": "fr",
"key": "product.description.{product_id}",
"value": "Your updated translated description"
}
}
2-If you get a 200 OK response, Shopify has received the update and should process it.
3-Check the API Response Headers
4-Wait for Shopify’s Background Sync
5-Clear Shopify’s Cache (if applicable)
Let me know if you need more details or if you run into any roadblocks.
Best regards,
Daisy.
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025