Been using a useful wordpress plugin called “Header and Footerscripts” to add javascript to adjust the behaviour of content on page load. Re the query above a piece of javascript (once referenced) – would find and make any web link active on page load (borrowed from discussions on stackoverflow).
Thankful for the work of the whole team keeping tens of thousands of 12 steppers uptodate with meeting info btw.
function rep(text) {
// Put the URL to variable $1 and Domain name
// to $3 after visiting the URL
var Rexp =
/(\b(https?|ftp):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/gim;
// Replacing the RegExp content by HTML element
return text.replace(Rexp,
“<span class=\”color-accent\”>$1</span><br>”);
}
-
This reply was modified 4 years, 2 months ago by k8fisher9.
-
This reply was modified 4 years, 2 months ago by k8fisher9.