7.11.7 version, Can't search custom field in global search
search spec value in custom field by global search
Can't search customer filed.
@cekowu when you say "customer filed" you mean "custom field", right?
@pgorod yes ,it is "custom field"
Hi @cekowu,
Did you enable Quotes module in search modules? if not please go to admin->Search Modules under Search Settings.
@pavithra-selvam yes we enable Quotes module in search modules, but don't provide functions to add "custom field"
Hi @cekowu ,
Can you please add this line " 'unified_search' => true," in the below mention file.
File path: modules/AOS_Quotes/vardefs.php
paste the above mentioned line before "'fields' => array(" start line. I hope its working fine.
@pavithra-selvam ok, i will test it, thanks!
Hi @cekowu ,
Can you please add this line " 'unified_search' => true," in the below mention file.
File path: modules/AOS_Quotes/vardefs.php
paste the above mentioned line before "'fields' => array(" start line. I hope its working fine.
Hello
I have the same problem
I can enable my custom modules for Global Search by paste 'unified_search' => true,' in modules/myModule/vardefs.php
But when I searching, the keywords are not searched, but all the items in the module are displayed.
This method has failed for SuiteCRM 7.11.15
Any tips how I can fix it now?
I've fixed
so thank @suitecrm_developer from suitecrm forum
He help me find fix
Fixed if go to custom/modules/my_module/metadata/SearchFields.php
and little change code to
‘name’ =>
array (
’force_unifiedsearch’=>true,
‘query_type’ => ‘default’,
),
Hi @cekowu ,
Can you please add this line " 'unified_search' => true," in the below mention file.
File path: modules/AOS_Quotes/vardefs.php
paste the above mentioned line before "'fields' => array(" start line. I hope its working fine.Hello
I have the same problem
I can enable my custom modules for Global Search by paste'unified_search' => true,'in modules/myModule/vardefs.php
But when I searching, the keywords are not searched, but all the items in the module are displayed.This method has failed for SuiteCRM 7.11.15
Any tips how I can fix it now?
I've fixed
so thank @suitecrm_developer from suitecrm forum
He help me find fix
Fixed if go to custom/modules/my_module/metadata/SearchFields.php
and little change code to
‘name’ =>
array (
’force_unifiedsearch’=>true,
‘query_type’ => ‘default’,
),
Thanks! Yes , it is ok now.