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
: Navigate to Customize > Post Types > Search Page . Under the General tab, you can enable/disable the heading and edit the text in the Heading field. 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 Copied to clipboard : Navigate to Customize >
: To dynamically change the entire string, add this filter to your functions.php : We couldn\'t find any matches
: 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
If "proper text" refers to the or size of the search results:
: Most placeholder adjustments for the newer Header Builder are managed directly within the Header Builder Search element settings . 3. Change "Nothing Found" Text