Ricerche recenti


Nessuna ricerca recente

Nick Sturrock's Avatar

Nick Sturrock

Data ingresso 13 mag 2021

·

Ultima attività 16 ott 2021

Seguiti

0

Follower

0

Attività totali

1

Voti

0

Abbonamenti

0

PANORAMICA ATTIVITÀ

Ultima attività di Nick Sturrock

Nick Sturrock ha commentato,

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

Visualizza commento · Data ultimo post: 24 mar 2021 · Nick Sturrock

0

Follower

3

Voti

0

Commenti