Reputation: 1711
How to remove the "Save and Continue" and the pagination button(marked in image) from edit view of all the modules in sugarcrm 7?
Upvotes: 3
Views: 1148
Reputation: 1711
To remove only in Edit View of all modules
Override the file "include\EditView\SugarVCR.tpl"
by copy and paste at "custom\include\EditView\SugarVCR.tpl"
and change the logic.
I added {if empty($list_link)}
as per my need.
To hide from all the view of all the modules
Add a new configuration $sugar_config['disable_vcr'] = true;
in config_override.php
file
Upvotes: 3