Cant seem to locate this, universal way to change the URL used in the signup here link of login/index page. Should be something added in site.inc.php. David
Got it. Am_Di::getInstance()->hook->add(Am_Event::AFTER_RENDER, 'addTextAbove'); function addTextAbove(Am_Event_AfterRender $event) { if (preg_match('#^/access/login/index.*#i', $_SERVER['REQUEST_URI'])) //do it only for specific url { $event->replace('#(/access/signup/index/c/)#i', 'http://www.newurl.com'); } }