how to change login screen logo?

how to change login screen logo?

Parents
  • Hey 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.

    you can add logo, tag lines as per your need.

    Just remember do not remove copyright sugar crm links from footer.

Reply
  • Hey 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.

    you can add logo, tag lines as per your need.

    Just remember do not remove copyright sugar crm links from footer.

Children