Skip Navigation

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.

Tagged: 

This topic contains 5 replies, has 1 voice.

Last updated by christianS-199 1 week, 2 days ago.

Assisted by: Noman.

Author Posts
March 24, 2025 at 4:57 pm #16853404

christianS-199

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.

Symptoms:
The 'buy now' button translation is not possible. I tried the solutions from https://wpml.org/forums/topic/partial-translation-of-check-out-page/ but they didn't work.

Questions:
Why is the 'buy now' button not translating on the checkout page?
What steps can I take to successfully translate the 'buy now' button?

March 25, 2025 at 4:22 pm #16859025

Alejandro
Supporter

Languages: English (English ) Spanish (Español ) Italian (Italiano )

Timezone: Europe/Rome (GMT+02:00)

Hello,

I'll try to help you out while a supporter takes your case.

Please make sure you try this with WPML 4.7.2 and the latest versions of our plugins you see here: https://wpml.org/account/downloads/

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).

Let us know how it goes.

March 25, 2025 at 4:31 pm #16859056

christianS-199

wpml plugins are latest and here you can see all the buy now buttons are translated

I checked each of them and translations are seems correct as well

any other suggestions?

image-14940.jpg
image-42202.jpg
March 26, 2025 at 7:22 am #16860702

Noman
Supporter

Languages: English (English )

Timezone: Asia/Karachi (GMT+05:00)

Hi,

Thank you for contacting WPML Support. It seems you are facing the known issue which is already reported to our developers and the workaround is also given. Could you please take a backup of your site and follow the suggested workaround from this errata: https://wpml.org/errata/woocommerce-multilingual-cart-page-strings-not-translated-when-using-blocks/ and see if this resolves the issue.

Here is a doc for more details: https://woocommerce.com/document/woocommerce-shortcodes/#woocommerce-shortcodes

Thank you

March 27, 2025 at 8:57 am #16866927

christianS-199

tried the shortcode sadly problem still persisting

new string didnt showup I checked the strings and scanned again same buy now buttons showed on string list.

image-51385.png
March 27, 2025 at 9:42 am #16867196

Noman
Supporter

Languages: English (English )

Timezone: Asia/Karachi (GMT+05:00)

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.

Thank you

March 28, 2025 at 10:52 am #16872212

christianS-199

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 : '';
}

const currentLang = getLangFromUrl();
const translatedText = translations[currentLang];

// 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
});

observer.observe(document.body, {
childList: true,
subtree: true
});

updateAllButtons(); // Also run initially
}

// Wait for DOM ready
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', startObserver);
} else {
startObserver();
}
})();