Reply To: Translation for Search results and no results
January 5, 2018 at 4:21 pm
#7295
Grace Themes
Member
Hi
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 Themes