Hi, hoping someone can help me. I'm using 2.4.5 and trying to get htmleditor to insert absolute addresses for images. I used the following code which worked successfully in page.php
protected function onBeforeWrite() {
parent::onBeforeWrite();
$this->Content = str_replace(' src="assets/', ' src="http://mysite.com/assets/', $this->Content);
}
but I cannot make the same work for a dataobject. Is it possible? or is there some other way to do it?
Thanks!