Step 1
Go to _assets/local/wcms.js
and edit.
Go to _assets/local/wcms.js
and edit.
Add the following code at the top before any existing code:
$(document).ready(function() {
$('.global-css').each(function () {
var $this = $(this);
$.get($this.attr('data-url'), function(data) {
$this.replaceWith(data);
});
})
});
Submit to save changes.