How to add custom fields in the SearchBy Box ?

Hello Team,

Please see below screen shot, I want to add more fields on "Search By" box and I don't want to create filter for that.

Thanks,

Shyam

  • Hi Team,

    I found the solution, I have updated below file & code

    Path : custom\modules\Accounts\clients\base\filters\default\default.php

    $viewdefs['Accounts']['base']['filter']['default'] = array (
    .
    .
    .


    'quicksearch_field' =>
    array (
    0 => 'name',
    1 => 'billing_address_city', //Added extra field
    2 => 'billing_address_country',  //Added extra field
    ),
    'quicksearch_priority' => 1,


    .
    .

    .
    );