Home Forums Trusted Pro Search bar Reply To: Search bar

#8175
Andy
Keymaster

You could change the trusted_tel_login_cart() function in a child theme to output a search form instead.

e.g. add this PHP function to the functions.php file of a child theme:

function trusted_tel_login_cart() {
    echo '<div id="top-info">';
    get_search_form();
    echo '</div>';
}