Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Mobile menu search placeholder customization and a list of filters and hooks

Home / Forums / Ascend Theme / Mobile menu search placeholder customization and a list of filters and hooks

This topic is: Resolved
[Resolved]
Posted in: Ascend Theme
February 16, 2020 at 8:45 pm

Hi awesome people of Kadence!

1. Do you have a list of filters and hooks for the Ascend theme?

2. Is there a filter I can use in functions.php to replace the placeholder “Search Products” for the mobile menu? In Language Settings: Search Placeholder Text changes the WP search placeholder only

In Theme Setting > Mobile Header > Mobile Menu Options

Show Search in mobile menu: is ON
Search only Products? is ON

Thank you. Ady

Edit: I used this function to update the WP search placeholder

function wpforo_search_form( $html ) {

$html = str_replace( ‘placeholder=”Search ‘, ‘placeholder=”Search Services ‘, $html );

return $html;
}
add_filter( ‘get_search_form’, ‘wpforo_search_form’ );

  • This topic was modified 6 years, 2 months ago by Ady.
  • The forum ‘Ascend Theme’ is closed to new topics and replies.