<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>How do I modify the page that displays the search results? &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 11 Oct 2025 10:11:38 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-36904</guid>
					<title><![CDATA[How do I modify the page that displays the search results?]]></title>
					<link>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-36904</link>
					<pubDate>Thu, 24 Apr 2014 20:46:26 +0000</pubDate>
					<dc:creator>Ray R</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>I&#8217;m new to working in WordPress so I&#8217;ll have to apologize in advance if this is a silly question. I&#8217;m trying to modify the page that displays the search results. It is currently displaying as single column, full width, and I want to change it so that it displays the search results with two columns. I&#8217;ve tried researching this and I gather that I need to modify some sort of template file, but I looked at the templates and all I saw was a searchform.php file. Any help would be greatly appreciated.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-37003</guid>
					<title><![CDATA[Reply To: How do I modify the page that displays the search results?]]></title>
					<link>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-37003</link>
					<pubDate>Fri, 25 Apr 2014 03:16:57 +0000</pubDate>
					<dc:creator>Support</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Ray!</p>
<p>Thank you for using the theme!</p>
<p>The search results page use the <strong>_index.php</strong> template located on the <strong>framework &gt; views &gt; global</strong> folder. Regretfully, this particular customization request is outside the scope of our support as this is not related to an issue with the theme and instead has to do with your customization of it. As such, you will need to investigate this particular issue on your own or look to a service such as Microlancer or Tweaky for assistance should you not feel comfortable making these changes yourself. If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries.</p>
<p>Thank you for your understanding.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-46159</guid>
					<title><![CDATA[Reply To: How do I modify the page that displays the search results?]]></title>
					<link>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-46159</link>
					<pubDate>Mon, 19 May 2014 22:07:19 +0000</pubDate>
					<dc:creator>viablethought</dc:creator>

					<description>
						<![CDATA[
						<p>Hello &#8211;</p>
<p>I am looking for the same thing, however I can code a bit but I have a question about the &#8220;_index.php&#8221; file. I see it loops through with:</p>
<pre><code>&lt;?php if ( have_posts() ) : ?&gt;
    &lt;?php while ( have_posts() ) : the_post(); ?&gt;
      &lt;?php x_get_view( x_get_stack(), &#039;content&#039;, get_post_format() ); ?&gt;
    &lt;?php endwhile; ?&gt;
  &lt;?php else : ?&gt;
    &lt;?php x_get_view( &#039;global&#039;, &#039;_content-none&#039; ); ?&gt;
  &lt;?php endif; ?&gt;</code></pre>
<p>And if there isn&#8217;t any content, it uses the _content-none file in the Views-&gt;Global. My question is if it loops through and finds posts during a search query, where &amp; what file is being used for the output of the search results? i.e. If I wanted to change the HTML structure of what is being outputted? Couldn&#8217;t I just create my own search.php file and drop that in the theme directory and and it would use that to output the search results?</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-46449</guid>
					<title><![CDATA[Reply To: How do I modify the page that displays the search results?]]></title>
					<link>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-46449</link>
					<pubDate>Tue, 20 May 2014 14:55:27 +0000</pubDate>
					<dc:creator>Alexander</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>It&#8217;s using the exact same templates that it would use to output the posts. <code>get_post_format()</code> finds out what format is being used, then that template is rendered.</p>
<p>You could modify search.php, but I wouldn&#8217;t advise this as you&#8217;d still need the code to build the page, and query for results.</p>
<p>What are you trying to change? There are better ways to go about it.</p>
<p>For example, if you want to change the post meta, you could make a copy of the <code>x_integrity_entry_meta</code> function in functions.php of your child theme. Then you could use <code>is_search()</code> to check if the search page is being displayed.</p>
<p>If you let us know what you&#8217;re looking to change, we might me able to give you a better idea of how to get started.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-47148</guid>
					<title><![CDATA[Reply To: How do I modify the page that displays the search results?]]></title>
					<link>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-47148</link>
					<pubDate>Thu, 22 May 2014 02:38:24 +0000</pubDate>
					<dc:creator>viablethought</dc:creator>

					<description>
						<![CDATA[
						<p>Well, I have integrated the Pods Framework and I have built out a Custom Post Type called &#8220;Inventory&#8221; with several fields related to a products. (non-ecommerce site) I am also using Ultimate WP Query Search Form to be able to search these custom fields in my pod. Since there is limitations to the plugin and it uses WP&#8217;s default search results, I had to customize the loop to search my custom meta fields and return them in a very specific output.</p>
<p>That being said, I am Hijacking the site-wide search and using Ultimate WPQSF has my search forms to search my Custom Post Types, it is probably not the best route but I am just a beginner at PHP.</p>
<p>So I moved the search loop from _index.php to wp-search.php and customized my search results as needed with my own loop for searching my Pod. </p>
<p>Not crazy about hacking apart the theme but this is working for now. If you have suggestions to do it differently I am all ears.</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-47462</guid>
					<title><![CDATA[Reply To: How do I modify the page that displays the search results?]]></title>
					<link>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-47462</link>
					<pubDate>Thu, 22 May 2014 20:02:06 +0000</pubDate>
					<dc:creator>Alexander</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>That works, it just might be difficult to maintain on updates. I&#8217;m still not sure I understand the changes you need to make. What are the specific HTML changes that need to happen? Knowing more about what the end result should be will help us recommend something.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-98249</guid>
					<title><![CDATA[Reply To: How do I modify the page that displays the search results?]]></title>
					<link>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-98249</link>
					<pubDate>Thu, 04 Sep 2014 09:54:25 +0000</pubDate>
					<dc:creator>rogeradvana</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;m also looking for an &#8216;easy&#8217; way to modify the search results page template if anyone has any pointers?<br />
Isn&#8217;t there a plugin that does this?<br />
Why don&#8217;t themes include a modified search results page, I mean who wants the Meta Widget on any of their pages anyway?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-98253</guid>
					<title><![CDATA[Reply To: How do I modify the page that displays the search results?]]></title>
					<link>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-98253</link>
					<pubDate>Thu, 04 Sep 2014 10:00:17 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks for writing in<br />
We let our developers to know about it.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-104746</guid>
					<title><![CDATA[Reply To: How do I modify the page that displays the search results?]]></title>
					<link>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-104746</link>
					<pubDate>Mon, 15 Sep 2014 01:53:53 +0000</pubDate>
					<dc:creator>Jin L</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;m also looking for a way to &#8216;change the search result template&#8217;. By this I mean:<br />
    1. I can choose my page layout for my whole website in &#8216;Customizer -&gt; Integrity -&gt; Content Layout&#8217;. Here I choose &#8216;Sidebar Left, Content Right&#8217;;<br />
    2. For some pages I don&#8217;t want to use this &#8216;site-wide default layout&#8217; I can choose the layout for a specific page in &#8216;Pages -&gt; My Page -&gt; Template&#8217;. For example, here I choose &#8216;Blank &#8211; No Container | Header, Footer;<br />
    3. I cannot find a way to choose the layout separately for my &#8216;Search Results&#8217; page. It uses the &#8216;site-wide default layout&#8217; I choose in &#8216;Customizer&#8217;.</p>
<p>My question is: is there a place I can make this choice? Even the coding itself is out of the scope of your support, could you please tell us which file or files we should look into and code in?</p>
<p>Thanks,</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-104765</guid>
					<title><![CDATA[Reply To: How do I modify the page that displays the search results?]]></title>
					<link>https://theme.co/archive/forums/topic/how-do-i-modify-the-page-that-displays-the-search-results/#post-104765</link>
					<pubDate>Mon, 15 Sep 2014 02:39:12 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Jin,</p>
<p>The search result is using the same template as blog home page template, the index.php. Although, you can see different looks because display is controlled per template part.</p>
<p>For example, the blog page and search page uses the same landmark template, but inside the landmark template there is a logic of which to show if the caller is search page or not. </p>
<p>In short, all files connected to index.php is related to search view too. You may duplicate index.php  and its sub template parts to create dedicated template for search result.</p>
<p>This is not related to X theme, but may explain it much further <a href="http://themeshaper.com/2012/11/06/the-wordpress-theme-search-template-and-page-template/" rel="nofollow">http://themeshaper.com/2012/11/06/the-wordpress-theme-search-template-and-page-template/</a> It&#8217;s common standard on all theme.</p>
<p>And check this <a href="http://theme.co/x/member/kb/customization-best-practices/" rel="nofollow">http://theme.co/x/member/kb/customization-best-practices/</a> how template parts can be called from your own search template.</p>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

