Translation for Search results and no results
- This topic has 7 replies, 2 voices, and was last updated 2 years, 5 months ago by Grace Support.
-
AuthorPosts
-
January 5, 2018 at 10:19 am #7293GiancarloParticipant
I need to translate the message “Seraching result for: …” and the no results page changing “Nothing found” title and the message below.
I find in search.php and noresult.php but after editing i experience a php parse error.
Thanks
GJanuary 5, 2018 at 4:21 pm #7295Grace ThemesMemberHi
You can change the text “Search Results for” in search.php file at line no. 15
The default code of search.php file is
<?php /** * The template for displaying Search Results pages. * * @package study-circle-pro */ get_header(); ?> <div class="container content-area"> <div class="middle-align content_sidebar"> <div class="site-main" id="sitemain"> <?php if ( have_posts() ) : ?> <header> <h1 class="entry-title"><?php printf( __( 'Search Results for: %s', 'study-circle-pro' ), '<span>' . get_search_query() . '</span>' ); ?></h1> </header> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'search' ); ?> <?php endwhile; ?> <?php study_circle_pro_pagination(); ?> <?php else : ?> <?php get_template_part( 'no-results', 'search' ); ?> <?php endif; ?> </div> <?php get_sidebar();?> <div class="clear"></div> </div> </div> <?php get_footer(); ?>
Regards
Grace ThemesJanuary 5, 2018 at 5:16 pm #7297GiancarloParticipantthanks but if i replace the string between ”, php error occur
i have tried to replace:
<h1 class=”entry-title”><?php printf( __( ‘Search Results for: %s’, ‘study-circle-pro’ ), ‘<span>’ . get_search_query() . ‘</span>’ ); ?></h1>with this:
<h1 class=”entry-title”><?php printf( __( ‘Risultati: %s’, ‘study-circle-pro’ ), ‘<span>’ . get_search_query() . ‘</span>’ ); ?></h1>And a php error occur.
The same for noresult.phpThanks.
January 6, 2018 at 4:47 pm #7300Grace ThemesMemberHi Giancarlo,
Please send your website URL and WordPress admin login details for temporary at [email protected] so we can check and assist you quickly.
Regards
Grace ThemesJanuary 3, 2022 at 10:54 am #34170Sven OlthoffParticipantHi there,
no problem of changing language, but of apperance. How can I change to a display of results without sidebar but just plain “full-width”?
Thx for your support in advance.
Regards
SvenJanuary 4, 2022 at 5:30 am #34187Grace SupportKeymasterHi Sven Olthoff,
To remove the sidebar from search result page, we will need to change the code.
Please send your website URL and WordPress admin login details for temporary at [email protected] so we can check and assist you quickly.Regards
Grace ThemesJanuary 5, 2022 at 10:05 am #34205Sven OlthoffParticipantDone.
January 5, 2022 at 11:09 am #34206Grace SupportKeymasterHi Sven Olthoff,
The changes have been completed. I have changed the code in search.php file to display the search results page without a sidebar.
Please check your website and let me know if you have any questions.Regards
Grace Themes -
AuthorPosts
- You must be logged in to reply to this topic.