Recherches récentes


Pas de recherche récente

Nick Sturrock's Avatar

Nick Sturrock

Adhésion le 13 mai 2021

·

Dernière activité le 16 oct. 2021

Suivis

0

Abonnés

0

Activité totale

1

Votes

0

Abonnements

0

APERÇU DES ACTIVITÉS

Dernière activité effectuée par Nick Sturrock

Nick Sturrock a ajouté un commentaire,

CommentaireCustomer 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';
}
});

Afficher le commentaire · Publication le 24 mars 2021 · Nick Sturrock

0

Abonnés

3

Votes

0

Commentaire