Fed up of not being able to find important clients? Tag them! This plugin allows you to tag your records to identify them instantly. Color coded tags make it even simpler to catch them. Through Tag Management for SuiteCRM, the user can handle large amounts of records with similar attributes or types. The user can also easily find any contents, important customer, important notes etc. through appropriate tagging.
#1159 - Contacts not in global search
If i search for a tag or part of a tag in global search (for example i search "test" and i have the tags "test1" and "test2") i only get the tags test1 and 2 as results, but i want to see the users/entities being tagged with test1 or test2. I can search for parts of tags via the contact_list filter, but it would be easier to include this in the global search. Can this be done?
6 years ago
Hello viktorsohm,
You can add the TagMe field into Global Search as follows.
(1) Open this file >> custom/Extension/modules//Ext/Vardefs/.php and add following line into it. $dictionary['Contact']['fields']['YOUR_FIELDNAME']['query_type']='default';
(2) Open this file >> custom/modules//metadata/SearchFields.php and add the following code into it.
'YOUR_FIELDNAME' => array ( 'query_type' => 'default', ),
After doing above changes, please do "Quick Repair & Rebuild" from admin.
You might be need to 'Edit'/'Save' the affected records to have them show up in Search! Hope this help.
Thanks & Regards, Team Urdhva Tech.
6 years ago
Hello viktorsohm,
You can add the TagMe field into Global Search as follows.
(1) Open this file >> custom/Extension/modules/YOUR_MODULE/Ext/Vardefs/YOUR_FIELDNAME.php and add following line into it. $dictionary['Contact']['fields']['YOUR_FIELDNAME']['query_type']='default';
(2) Open this file >> custom/modules/YOUR_MODULE/metadata/SearchFields.php and add the following code into it.
'YOUR_FIELDNAME' => array ( 'query_type' => 'default', ),
After doing above changes, please do "Quick Repair & Rebuild" from admin.
You might be need to 'Edit'/'Save' the affected records to have them show up in Search! Hope this help.
Thanks & Regards, Team Urdhva Tech.
6 years ago
thank you for your support, i will look into it as soon as i have time :)