Custom Text on Edit Page

Hi

Using PHP Maker 2020

On my edit page I have a enabled the upload of a picture and it all works well, I would like to add some custom text on this page, pointers appreciated


Regards
John B

you can add text to the top and bottom portions of the page

use these events:

// Page Data Rendering event
function Page_DataRendering(&$header) {
// Example:
//$header = “your header”;
}

// Page Data Rendered event
function Page_DataRendered(&$footer) {
// Example:
//$footer = “your footer”;
}