Home › Forums › Trusted Pro › Search bar › Reply To: Search bar
October 20, 2019 at 9:38 am
#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>';
}