How to change logic screen ?

How to change logic screen ?

Parents
  • Dear Bhavin,

    Please try this,

    Copy your_instance_name/modules/Users/Login.php file to your_instance_name/custom/modules/Users/Login.php 

    Edit Login.php file you just copied at your_instance_name/custom/modules/Users/Login.php and

    Find the last line

    $sugar_smarty->display('modules/Users/login.tpl');

    Comment this line and place new line

    //$sugar_smarty->display('modules/Users/login.tpl');

    $sugar_smarty->display('custom/include/your_new_folder/tpls/login.tpl');

    //above line showing login.tpl which can be customized as per your need.

Reply
  • Dear Bhavin,

    Please try this,

    Copy your_instance_name/modules/Users/Login.php file to your_instance_name/custom/modules/Users/Login.php 

    Edit Login.php file you just copied at your_instance_name/custom/modules/Users/Login.php and

    Find the last line

    $sugar_smarty->display('modules/Users/login.tpl');

    Comment this line and place new line

    //$sugar_smarty->display('modules/Users/login.tpl');

    $sugar_smarty->display('custom/include/your_new_folder/tpls/login.tpl');

    //above line showing login.tpl which can be customized as per your need.

Children