Sunday, January 27, 2013

Disable Last view in SugarCRM


There is two way to disable lastview.

1) you can write logic hook in custom/modules/Users/logic_hook.php
after_retrive
AND delete all data write in tracker table.
2) if You want to disable for perticular Module,
for e.g. Disable for Account module
go to modules/Accounts/account.php
find get_summary_text() function
comment (//) return value.
Best of Luck…


Tuesday, January 1, 2013

Remove Navigation Warning MSG from Every Page

Steps =>

1=> Just goto sugarcrm/includes/javascript/Sugar_grp1.js

2=> find WARN_UNSAVED_CHANGES

3=> after change code will look like,



if(dataHasChanged==true){

//return SUGAR.language.get('app_strings','WARN_UNSAVED_CHANGES');


}else{return;}}

Ad