Chat service is now available between 9AM ET to 8PM ET (Monday-Friday).

Astra — Search Results For

: Go to Customize > Global > Typography to set site-wide fonts, which will affect the search results.

To modify the text that appears on your Astra theme search results page or within the search box itself, you can use the built-in WordPress Customizer or add custom code to your child theme's functions.php file. 1. Change "Search Results For:" Heading Search Results for astra

function change_nothing_found_text( $strings ) { $strings['string-search-nothing-found'] = __( 'Oops! We couldn\'t find any matches.', 'astra' ); return $strings; } add_filter( 'astra_default_strings', 'change_nothing_found_text', 10 ); Use code with caution. Copied to clipboard : Go to Customize > Global > Typography

add_filter( 'astra_the_search_page_title', 'my_custom_search_title', 10 ); function my_custom_search_title() { return sprintf( __( 'Your Custom Text Here: %s', 'astra' ), ' ' . get_search_query() . ' ' ); } Use code with caution. Copied to clipboard get_search_query()

: In the same Search Page menu (Customize > Post Types > Search Page), click the Design tab to adjust the font size, color, and weight specifically for the search title. How to Change the "Search Results For" String

This method allows you to replace the default label with something like "You looked for:". 2. Change Search Bar Placeholder Text

Chat Now