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.
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025