-
Enable Dev Mode in Wix
-
Click Site tab in the editor
-
Copy entirety of function into the onready function and call it like below
$w.onReady(function () {
// <-- copy entirety of function from relevant file here
const replaceCompanyName = () => {
// ...
// ...
};
// <--- then call it
replaceCompanyName();
});