Currently, in VTiger, when you open any module and try to add a related module, it opens a quick create popup, instead of going to the full form. Some of the companies/users do not prefer that outcome and want to move to full form straight.
We’ve been asked this question several times and therefore tried to give a quick solution as follow:
Question: How to remove Quick Create feature for any module? 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.
Answer:  Go to add this: modules/YOUR_MODULE/models/Module.php
<br /> public function isQuickCreateSupported(){<br /> return false;<br /> }<br />
Question: 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.
Answer: Add following function to your custom_module/Models/Module.php
<br /> public function isQuickCreateSupported(){<br /> return false;<br /> }<br />
To learn more about VTiger, customizations, or configuration, please send us an email at help@vtexperts.com or visit www.vtexperts.com for live chat – we usually respond within 24 hours to emails or offline messages.
Please note that we design our customizations and extensions to be as flexible & configurable as possible, so if you feel uncertain if this would work – email us and we’ll be pointing you to the right direction. Also, we can add features or can customize vtiger as well as our extensions to meet your needs and make sure you will be up and running in no time. If something in VTiger is “almost” what you need – we can work with you to make necessary changes so it is “exactly” what you need.