Viewing 1 replies (of 1 total)
  • Hi, you can try to add this custom function in your theme’s functions.php file:

    add_filter(‘elementor/utils/get_the_archive_title’,’archive_callback’); function archive_callback( $title ) { if ( is_search() ) { return ‘Your Custom Message Here: ‘ . get_search_query() ; } return $title; }

    You can change the “Your Custom Message Here: ” text for the message that you want to display instead of “Search Results for”.

    Learn more here:
    How to Change the Language of Elementor and Elementor Pro

    Hope it helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Change Search Form Results page’ is closed to new replies.