최근 검색


최근 검색 없음

Nick Sturrock's Avatar

Nick Sturrock

가입한 날짜: 2021년 5월 13일

·

마지막 활동: 2021년 10월 16일

팔로잉

0

팔로워

0

총 활동 수

1

투표 수

0

플랜 수

0

활동 개요

님의 최근 활동 Nick Sturrock

Nick Sturrock님이 에 댓글을 입력함

댓글Customer 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';
}
});

댓글 보기 · 2021년 3월 24일에 게시됨 · Nick Sturrock

0

팔로워

3

투표 수

0

댓글