Hi @mikejolley,
Thank you for answering. I’ve tried the JS snippet in my browser without any luck. We have the checkout in Spanish so the messages we need to translate are:
- “A?ade una dirección de envío para ver las opciones de envío.”
- “No hay opciones de envío disponibles“
I’ve tried any string but nothing changes in the frontend:
function myPluginGettextFilter( translation, text, domain ) {
if ( text === 'No hay opciones de envío disponibles' ) {
return 'Some different text';
}
return translation;
}
// Adding the filter
wp.hooks.addFilter(
'i18n.gettext',
'my-plugin/override-add-to-reusable-blocks-label',
myPluginGettextFilter
);
Any ideas?
Thank you again.