This topic is locked

How to Hide the Register Link

11/22/2017 11:45:35 AM
PHPRunner General questions
J
justmelat author

I thought this would be extremely simple, I've tried a several possible solutions, none of which are working.
How can I hide the register link/button, that appears on the login page, based on a session_var that I have created and set when first successful registration has been completed
For example:

//this would be placed in the "after application init" event

if(_session_var == true){

hide register link/button;

}