Currently, in VTiger, when you open any module, then go to related list and from there try to add a related module, it opens a quick create popup, instead of going to the full form. Some users prefer to see all fields. Sometimes popup form not convinient for some custom modules. So how to disable quick create functionality and open full form by default?
The aim is to remove a specific module from the Quick Create list as well as when adding as a new related record to another module.
Go to this file: modules/Vtiger/models/Module.php
and edit following function:
public function isQuickCreateSupported(){
return false;
}
This way disables quick create functionality globally.
But how to remove Quick Create feature for a CUSTOM module? The aim is to remove a specific custom module from the Quick Create list as well as when adding as a new related record to another module.
Add following function to your custom_module/Models/Module.php
public function isQuickCreateSupported(){
return false;
}