So I made a plugin/hook
<?php
ob_start();
include $_SERVER['DOCUMENT_ROOT'] . "/delta/pack_files/other/login.php";
$loginphpp = ob_get_contents();
ob_end_clean();
?>
I enabled hooks/plugins in the settings, and i set this plugin to be at global_start
the folder directory is correct and I called this with $loginphpp, but nothing shows.
Any ideas why?