[Resolved] woocommerce checkout page buy now button translation
This thread is resolved. Here is a description of the problem and solution.
Problem: If you're trying to translate the 'buy now' button on the WooCommerce checkout page and it's not translating, even after trying solutions from other forum topics. Solution: We recommend taking a backup of your site and then applying the workaround provided in our errata page. You can find the necessary steps and details here: WooCommerce Multilingual Cart Page Strings Not Translated When Using Blocks. Additionally, for more information on WooCommerce shortcodes, please visit: WooCommerce Shortcodes Documentation.
If this solution does not apply to your case, or if it seems outdated, we highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If you still need assistance, please do not hesitate to open a new support ticket at WPML Support Forum.
This is the technical support forum for WPML - the multilingual WordPress plugin.
Everyone can read, but only WPML clients can post here. WPML team is replying on the forum 6 days per week, 22 hours per day.
Background of the issue:
I am trying to translate the 'buy now' button on the WooCommerce checkout page. The issue can be seen at hidden link. I expected to see the 'buy now' button translated when adding a product to the cart and going to the checkout page.
If that text was not added by a template made by you and can't be customized in any way, then please try to search for it in WPML > String Translation and see if you can find it there (there could be many strings like this, so try to check that the "domain" column has any reference to the theme, at this point).
Thanks for trying the shortcode method. Could you please try the below steps:
1. Take a backup of your site first for safety reasons.
2. We have recently released WPML 4.7.2, please update it to the latest version. You can update it from Plugins >> Add New Plugin page, click the Commercial tab, and then click the “Check for updates” button. Here is the screenshot for more details: https://wpml.org/wp-content/uploads/2020/04/wpml-force-plugin-update-1.png
3. If the issue persists, please provide temporary access (WP-Admin and FTP Login info) to your site (preferably staging site), so that I can look into your setup and debug the issue.
Your next answer will be private, meaning only you and I can access it.
=== Please backup your database and website ===
✙ I would additionally need your permission to deactivate and reactivate Plugins and the Theme and to change configurations on the site. This is also a reason the backup is essential.
ok I decided to code a javascript to solve this issue it is so annoying
like you said it is realtime rendering components and it is updating time to time as well realtime changing sometimes must be new woocommrece change
here I solved it like this with custom code checking url lang and chnaging text depending on lang
(function () {
const translations = {
'': 'Jetzt kaufen', // Default: German (no lang prefix)
'en': 'Buy Now',
'fr': 'Acheter',
'it': 'Acquista ora',
'es': 'Comprar ahora'
};
// Get current language from the URL
function getLangFromUrl() {
const path = window.location.pathname;
const langCode = path.split('/')[1];
return translations.hasOwnProperty(langCode) ? langCode : '';
}
// Function to update all matching buttons (in case multiple or re-rendered)
function updateAllButtons() {
const buttons = document.querySelectorAll('.wc-block-components-checkout-place-order-button__text');
buttons.forEach((btn) => {
if (btn.textContent !== translatedText) {
btn.textContent = translatedText;
}
});
}
// Start observing for DOM changes
function startObserver() {
const observer = new MutationObserver(() => {
updateAllButtons(); // Check and update buttons every time DOM changes
});