Búsquedas recientes


No hay búsquedas recientes

Nick Sturrock's Avatar

Nick Sturrock

Incorporación 13 may 2021

·

Última actividad 16 oct 2021

Seguimientos

0

Seguidores

0

Actividad total

1

Votos

0

Suscripciones

0

RESUMEN DE LA ACTIVIDAD

Última actividad de Nick Sturrock

Nick Sturrock hizo un comentario,

ComentarioCustomer portal

I found the simplest approach to change all instances of elements with text 'Submit a request' (in this case hyperlinks, page titles and breadcrumbs) in the Copenhagen theme was using the following Javascript, placed at the top of the script.js function inside the document.addEventListener('DOMContentLoaded', function():

  // translate 'submit a request' to 'contact us'
Array.prototype.forEach.call(document.querySelectorAll('a,h1,li'), function(a) {
if (a.textContent.includes("Submit a request")) {
a.textContent = 'Contact Us';
}
});

Ver comentario · Publicado 24 mar 2021 · Nick Sturrock

0

Seguidores

3

Votos

0

Comentarios