i have a website in typo3 and i want to add a search form (typo3's search form). how can i customize the search? i want to search only in page's bodytext. I want to exlude fields such as meta title, keywords etc. thank you! I found this on a website, but I don't know where to modify
$TCA['tx_yourext_table'] = array(
'ctrl' => array(
'title' => 'Title of your table',
'label' => 'title',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
// etc...
'searchFields' => 'title, other_field, yet_other_field',
),
);