Thanks spigeo! I got the same problem on my result’s search pages..Now it’s working 😀
Ok, I solved this little problem, also thank to a kind guy on Google+.
I post it, if anyone (newbies like me) need something like this.
Basically, I follow suggestion of this site: http://www.rob-barrett.com/2009/05/multiple-search-results-pages-within-one-wordpress-site/
I added a new line into search form, see the example (from the linked site): <input name=”site_section” type=”hidden” value=”blog” />
<form id="searchform" action="<?php bloginfo('home'); ?>/" method="get">
<input id="s" maxlength="96" name="s" size="18" type="text" value="Search" />
<input name="site_section" type="hidden" value="blog" />
<input id="searchsubmit" class="hidden" type="submit" value="Search" />
</form>
Then I put an IF to take only english template parts, so i modify header.php, sidebar.php, footer.php and also search.php.
I use this code to call the value in the top of these files:
$search_refer = $_GET["site_section"];
Then i add some If just when it needed.
if ($search_refer == 'blog')