Vor Kurzem aufgerufene Suchen


Keine vor kurzem aufgerufene Suchen

Nick Sturrock's Avatar

Nick Sturrock

Beigetreten 13. Mai 2021

·

Letzte Aktivität 16. Okt. 2021

Folge ich

0

Follower

0

Gesamtaktivitäten

1

Stimmen

0

Abonnements

0

AKTIVITÄTSÜBERSICHT

Neueste Aktivität von Nick Sturrock

Nick Sturrock hat einen Kommentar hinterlassen

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

Kommentar anzeigen · Gepostet 24. März 2021 · Nick Sturrock

0

Follower

3

Stimmen

0

Kommentare