- This topic has 1 reply, 2 voices, and was last updated 5 years, 1 month ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The topic ‘Search bar’ is closed to new replies.
Home › Forums › Trusted Pro › Search bar
Tagged: Search Bar
Hi
Is it possible to enter a search engine under the “top info” on the page. Where the phonenbr. login and cart is? By shortcode.
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>';
}