<?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>Need category post to display full content not excerpt &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 11 Oct 2025 23:59:01 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-142647</guid>
					<title><![CDATA[Need category post to display full content not excerpt]]></title>
					<link>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-142647</link>
					<pubDate>Tue, 11 Nov 2014 18:26:59 +0000</pubDate>
					<dc:creator>Michelle D</dc:creator>

					<description>
						<![CDATA[
						<p>Hi, I&#8217;m having an issue with category posts.  I have a category link in my menu that takes you to a category post page and it&#8217;s only displaying an excerpt of the post, with no images and I need it to display the full post.  I&#8217;ve been looking through all the fixes on google and the forum and none of them seem to apply.  ie. changing category.php or archive.php from excerpt to full content.  </p>
<p>Is there some easy fix for this that I&#8217;m overlooking?  Doesn&#8217;t seem like it should be so difficult.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-143117</guid>
					<title><![CDATA[Reply To: Need category post to display full content not excerpt]]></title>
					<link>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-143117</link>
					<pubDate>Wed, 12 Nov 2014 08:50:02 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Michelle,</p>
<p>Thanks for writing in!</p>
<p>You can set it under <strong>Blog &gt; Content</strong> in the customizer.</p>
<p><a href="http://screencast.com/t/MZa3FdBaTv" rel="nofollow">http://screencast.com/t/MZa3FdBaTv</a></p>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-143603</guid>
					<title><![CDATA[Reply To: Need category post to display full content not excerpt]]></title>
					<link>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-143603</link>
					<pubDate>Wed, 12 Nov 2014 19:27:53 +0000</pubDate>
					<dc:creator>Michelle D</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-144004</guid>
					<title><![CDATA[Reply To: Need category post to display full content not excerpt]]></title>
					<link>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-144004</link>
					<pubDate>Thu, 13 Nov 2014 05:54:27 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Michelle,</p>
<p>Because this requires a template change, I’d advise that you setup a <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" rel="nofollow">child theme</a>. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in <a href="http://theme.co/x/member/kb/customization-best-practices/" rel="nofollow">Customization Best Practices</a>.</p>
<p>Then create file _content.php in wp-content\themes\x-child-renew\framework\views\global<br />
then copy the code below into that file.</p>
<pre><code>
&lt;?php

// =============================================================================
// VIEWS/GLOBAL/_CONTENT.PHP
// -----------------------------------------------------------------------------
// Display of the_excerpt() or the_content() for various entries.
// =============================================================================

$stack                     = x_get_stack();
$is_full_post_content_blog = (is_home() || is_archive()) &amp;&amp; x_get_option( &#039;x_blog_enable_full_post_content&#039;, &#039;&#039; ) == &#039;1&#039;;

?&gt;

&lt;?php

if ( is_singular() || $is_full_post_content_blog ) :
  x_get_view( &#039;global&#039;, &#039;_content&#039;, &#039;the-content&#039; );
  if ( $stack == &#039;renew&#039; ) :
    x_get_view( &#039;renew&#039;, &#039;_content&#039;, &#039;post-footer&#039; );
  endif;
else :
  x_get_view( &#039;global&#039;, &#039;_content&#039;, &#039;the-excerpt&#039; );
endif;

?&gt;
</code></pre>
<p>Hope that helps. 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-144466</guid>
					<title><![CDATA[Reply To: Need category post to display full content not excerpt]]></title>
					<link>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-144466</link>
					<pubDate>Thu, 13 Nov 2014 18:01:50 +0000</pubDate>
					<dc:creator>Michelle D</dc:creator>

					<description>
						<![CDATA[
						<p>Got it!  Worked perfectly.  Thanks very much!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-144833</guid>
					<title><![CDATA[Reply To: Need category post to display full content not excerpt]]></title>
					<link>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-144833</link>
					<pubDate>Fri, 14 Nov 2014 03:29:39 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Cool, that&#8217;s great! You&#8217;re so much welcome Michelle!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-291919</guid>
					<title><![CDATA[Reply To: Need category post to display full content not excerpt]]></title>
					<link>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-291919</link>
					<pubDate>Thu, 04 Jun 2015 01:40:49 +0000</pubDate>
					<dc:creator>kirk74</dc:creator>

					<description>
						<![CDATA[
						<p>Hello &#8211; I need to do this for just a certain category &#8211; so that that category archive page will display full posts. I understanding need to create a specific category page &#8211; such as category-134.php<br />
But I need to know what code I use in this page.. and does this page go in the root of my child theme folder? Or in &#8220;global&#8221; folder?</p>
<p>Also &#8211; if I do this, can I turn on pagination for this page. EG &#8211; it shows 4 posts per page and then paginates beyond that?</p>
<p>Thanks so much </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-292250</guid>
					<title><![CDATA[Reply To: Need category post to display full content not excerpt]]></title>
					<link>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-292250</link>
					<pubDate>Thu, 04 Jun 2015 07:58:20 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Thanks for updating the thread! You can set the category archive page in your customizer, <strong>Appearance &gt; Customize &gt; Blog &gt; Archives &gt; Layout</strong>. The default number of post per page can be set in the settings, <strong>Settings &gt; Reading Settings &gt; Blog pages show at most</strong>.</p>
<p>To assist you with this issue, we&#8217;ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-293007</guid>
					<title><![CDATA[Reply To: Need category post to display full content not excerpt]]></title>
					<link>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-293007</link>
					<pubDate>Fri, 05 Jun 2015 00:53:11 +0000</pubDate>
					<dc:creator>kirk74</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks! I don&#8217;t think I was quite clear though sorry.. I realise we can make global changes in those two places.. but what I am needing is to make changes to just a certain specific category &#8211; I understand  can make a category page by making file: category-ID.php &#8211; BUT I am not sure what to code to use in this file.</p>
<p>For example  this is the site  here: <a href="http://27.121.66.4/~abab6919/wordpress/" rel="nofollow">http://27.121.66.4/~abab6919/wordpress/</a><br />
 the main section is SERVICES &#8211; I am using MASONRY layout to display the archive pages for the various service categories- and have manually added code to add the EXCERPT below each featured image.. this all works fine .. BUT what about when we need to make just a specific category behave differently .. EG, I have a category TESTIMONIALS &#8211;  and for this section it is just small tet entries, sometimes a pic., but no featured image required &#8230; so  I want its category archive page to display all the posts at once, as full posts, ideally with a set number of posts at a time, say 6, and then pagination to activate.</p>
<p>I realise I can do this kind of thing with a plugin on a specific page and I am able to successfully do this (except for a pagination issue as described below)  BUT since I have the &#8220;Select Category&#8221; category list widget on the sidebar &#8211; users are still going to be able to access this category through that method and it needs to look correct when they do this. .  </p>
<p>SO &#8211; My optiomsm are:</p>
<p>1.<br />
to manually make that category template page display differently to the standard MASONRY that I have set globally  &#8211; please advise how to do this .. I realise I need to make the category-ID,php page- but not sure what code to use.</p>
<p>OR</p>
<p>2.<br />
to remove &#8220;Testimonials&#8221; from the &#8220;Select Category&#8221; list widget- it is not possible to remove a category from this list in the WIDGET settings or the customiser &#8211; but is but is there another way through code to do this? &#8211; please advise how to do this.</p>
<p>(Because for future reference and other clients  I need to know how to achieve both these solutions)</p>
<p>PLUGIN PAGINATION ISSUE &#8211; In terms of displaying all the posts of a certain category into page I realise that plugins can do this .. and I have been able to almost achieve a great result using the plugin &#8216;List Category Posts&#8217; pls see example page here: <a href="http://27.121.66.4/~abab6919/wordpress/?page_id=7493" rel="nofollow">http://27.121.66.4/~abab6919/wordpress/?page_id=7493</a><br />
It is working except that X THEME seems to break the pagination at I am not sure why &#8211; but it is detecting the right umber of pagination page icons required &#8211; but when they are clicked on they don&#8217;t  go anywhere ..  I know that you are not able to do plugin support &#8211; but since the plugin does work except for the pagination I thought I would ask in case you had any ideas of a setting I can change to fix this..  </p>
<p>Thanks so much, you support is amazing &#8211; I think most if not all  of my future sites for clients will be built on X  </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-293086</guid>
					<title><![CDATA[Reply To: Need category post to display full content not excerpt]]></title>
					<link>https://theme.co/archive/forums/topic/need-category-post-to-display-full-content-not-excerpt/#post-293086</link>
					<pubDate>Fri, 05 Jun 2015 02:29:30 +0000</pubDate>
					<dc:creator>kirk74</dc:creator>

					<description>
						<![CDATA[
						<p>UPDATED: Using CSS I was able to control what I can show/hide in the Categories list sidebar  .. I used this:</p>
<p>#cat.postform option.level-0 {<br />
     display:none !important;<br />
}</p>
<p>level-0 being the top level categories &#8211; so it only shows my categories in the list of they are subcategories &#8211; this is a workaround and useful to be abel to do .. BUT, I was trying to use CSS to control just one specific category in the list, and make that disappear and I tried to do it but using [value=&#8221;134&#8243;], IE:</p>
<p>#cat.postform option [value=&#8221;134&#8243;] {<br />
     display:none !important;<br />
}</p>
<p>but it didn&#8217;t work, I was only able to control it usiing CLASS level-o &#8230; I suspect I SHOULD be abel to do this, but i was using [value=&#8221;134&#8243;] wrong .. can you please advise what I did wrong here?<br />
Thx </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

