<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>replace layout &#8211; Content Views Pro</title>
	<atom:link href="https://contentviewspro.com/documentation/tags/replace-layout/feed/" rel="self" type="application/rss+xml" />
	<link>https://contentviewspro.com/documentation</link>
	<description>Most Popular Filter &#38; Grid Plugin For WordPress</description>
	<lastBuildDate>Tue, 14 Jan 2025 10:56:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Replace layout in RocketTheme themes (use the Gantry framework)</title>
		<link>https://contentviewspro.com/documentation/article/replace-layout-in-themes-use-the-gantry-framework/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Wed, 10 May 2017 10:25:27 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=2367</guid>

					<description><![CDATA[The Replace Layout feature of Content Views Pro doesn&#8217;t work automatically with RocketTheme themes (which use the Gantry framework). To replace layout of archive pages (category, tag, taxonomy, author) and search results page in RocketTheme themes, please add this code to file functions.php in the theme&#8217;s folder: // Content Views Pro - replace layout of &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/replace-layout-in-themes-use-the-gantry-framework/"> <span class="screen-reader-text">Replace layout in RocketTheme themes (use the Gantry framework)</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>The Replace Layout feature of Content Views Pro doesn&#8217;t work automatically with RocketTheme themes (which use the Gantry framework).</p>
<p>To replace layout of archive pages (category, tag, taxonomy, author) and search results page in RocketTheme themes, please add this code to file <strong>functions.php</strong> in the theme&#8217;s folder:</p>
<pre style="font-size:13px">
// Content Views Pro - replace layout of archive pages, search results page
add_filter( 'timber_compile_result', 'cvp_theme_replace_archive_layout' );
function cvp_theme_replace_archive_layout( $args ) {
	if ( (is_search() || is_archive()) &amp;&amp; shortcode_exists( 'pt_view' ) ) :
		$pids = array();
		foreach ( Timber::get_posts() as $post ) {
			$pids[] = $post->ID;
		}
		$view = do_shortcode( '&#91;pt_view id="VIEW_ID" post_id="' . implode( ',', $pids ) . '"&#93;' );

		$html	 = '&lt;section class=&quot;entries&quot;&gt;' . $view;
		$args	 = preg_replace( '/&lt;section\sclass=&quot;entries&quot;.*&lt;\/article&gt;/s', $html, $args );
	endif;

	return $args;
}
</pre>
<p>Please replace <strong>VIEW_ID</strong> with ID of the View (which you want to use to replace layout of pages).</p>
<blockquote><p>Notice: When replacing layout of RocketTheme themes, the <code>Filter Settings</code> and <code>Pagination</code> setting of the View will NOT be supported.</p></blockquote>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Replace Woocommerce related products layout</title>
		<link>https://contentviewspro.com/documentation/article/replace-woocommerce-related-products-layout-by-cvpro-layout/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Tue, 21 Feb 2017 15:08:30 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=1390</guid>

					<description><![CDATA[Replacing layout of Woocommerce related products is super easy. Here is all what you have to do: &#8211; create new folder woocommerce (if not exist) in folder of active theme wp-content/themes/active_theme/ &#8211; create new sub-folder single-product (if not exist) in above folder &#8211; create new file related.php in the sub-folder &#8211; copy below code to &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/replace-woocommerce-related-products-layout-by-cvpro-layout/"> <span class="screen-reader-text">Replace Woocommerce related products layout</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>Replacing layout of Woocommerce related products is super easy.<br />
Here is all what you have to do:<br />
&#8211; create new folder <code>woocommerce</code> (if not exist) in folder of active theme <code>wp-content/themes/active_theme/</code><br />
&#8211; create new sub-folder <code>single-product</code> (if not exist) in above folder<br />
&#8211; create new file <code>related.php</code> in the sub-folder<br />
&#8211; copy below code to above file (replace <code>VIEW_ID</code> with <a href="http://contentviewspro.com/documentation/article/what-is-id-of-a-view/" target="_blank" rel="noopener noreferrer">ID of View</a>)</p>
<p>Here is the code:<br />
<a target="_blank" href="https://gist.githubusercontent.com/ptguy/6b60c0aaed3dab966ee9e6585e2a982f/raw/" rel="noopener">click here to open</a>.</p>
<p><script src="https://gist.github.com/ptguy/6b60c0aaed3dab966ee9e6585e2a982f.js"></script></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Replace Woocommerce layout in the Shop, Category&#8230; page</title>
		<link>https://contentviewspro.com/documentation/article/replace-woocommerce-layout-in-shop-page-category-page-by-cvpro-layout/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Tue, 21 Feb 2017 14:43:11 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=1382</guid>

					<description><![CDATA[Since Content Views Pro 4.0, you can do it as same as replacing layout in Blog, Category, Search&#8230; page. Please check this document for complete tutorial. In Content Views >> Replace layout page: For Woocommerce Category page, please enable option Taxonomy Archives >> Product Category. For Woocommerce Shop page, please enable option Post Type Archives &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/replace-woocommerce-layout-in-shop-page-category-page-by-cvpro-layout/"> <span class="screen-reader-text">Replace Woocommerce layout in the Shop, Category&#8230; page</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>Since Content Views Pro 4.0, you can do it as same as replacing layout in Blog, Category, Search&#8230; page. Please check <a href="http://contentviewspro.com/documentation/article/completely-replace-wordpress-layout-by-content-views-pro-layout/" target="_blank" rel="noopener noreferrer">this document</a> for complete tutorial.</p>
<p>In <strong>Content Views >> Replace layout</strong> page:<br />
For Woocommerce Category page, please enable option <code>Taxonomy Archives >> Product Category</code>.<br />
For Woocommerce Shop page, please enable option <code>Post Type Archives >> Product</code>.</p>
<p><img fetchpriority="high" decoding="async" src="https://contentviewspro.com/documentation/wp-content/uploads/2015/09/Replace-Layout-by-CVPro.png" alt="replace-layout-by-cvpro" width="730" height="334" class="aligncenter size-full wp-image-1049" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2015/09/Replace-Layout-by-CVPro.png 730w, https://contentviewspro.com/documentation/wp-content/uploads/2015/09/Replace-Layout-by-CVPro-300x137.png 300w" sizes="(max-width: 730px) 100vw, 730px" /></p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Replace Layout &#8211; show Grid layout on Blog, Category, Search&#8230; pages</title>
		<link>https://contentviewspro.com/documentation/article/completely-replace-wordpress-layout-by-content-views-pro-layout/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Sun, 17 Aug 2014 10:07:35 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com//?p=114</guid>

					<description><![CDATA[This feature is only available in the Pro version. TABLE OF CONTENTS: Introduction How to do? Customize sort order Overwrite the result Which pages can I replace the posts layout? How to use a different layout for each category? How to replace layout for only a specific category? How to show sub-categories on the parent &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/completely-replace-wordpress-layout-by-content-views-pro-layout/"> <span class="screen-reader-text">Replace Layout &#8211; show Grid layout on Blog, Category, Search&#8230; pages</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<style>.entry-content ul.nav-tabs{margin-left:0}h2{margin-top:1.2em!important}h3{margin:10px 0!important}p{margin-bottom:1em}.step{font-size:1.1em}blockquote{margin-left:0;margin-bottom:20px;}blockquote p,blockquote pre{margin-bottom:0;font-size:.9em}ul{margin-bottom:5px;}#collapse_f6ee-47a8 .panel-title{margin:10px}h4{margin: 0 0 20px !important;}.tableofcontent{line-height: 16px; text-transform: capitalize;}mark{background:yellow!important}</style>
<blockquote><p>This feature is only available in the <a href="https://www.contentviewspro.com/#buynow" target="_blank" rel="noopener noreferrer">Pro version</a>.</p></blockquote>
<div>
<h4>TABLE OF CONTENTS:</h4>
<ul class="tableofcontent">
<li><a href="#intro">Introduction</a></li>
<li><a href="#howto">How to do?</a></li>
<li><a href="#sorting">Customize sort order</a></li>
<li><a href="#overwrite">Overwrite the result</a></li>
<li><a href="#which">Which pages can I replace the posts layout?</a></li>
<li><a href="#custom">How to use a different layout for each category?</a></li>
<li><a href="#specific">How to replace layout for only a specific category?</a></li>
<li><a href="#subcategories">How to show sub-categories on the parent category page?</a></li>
<li><a href="#notwork">Notices</a></li>
</ul>
</div>
<h2 id="intro">Introduction</h2>
<p>Content Views Pro helps you to display WordPress content anywhere easily. But it can help you to do even more things.</p>
<p>The Blog, Category, Search results, Archives… are special pages of each WordPress site. The posts layout in these pages is managed by the active theme. To show Grid in these pages, you will need to modify theme&#8217;s files. That is a complicated task, requires coding skills and knowledge about HTML, PHP and WordPress.</p>
<p>The <strong>Replace Layout</strong> feature of Content Views Pro will help you to show Grid (or another layout) in Blog, Category, Search results, Archives… pages easily, without any line of code. You will save a lot of time, effort and hassle.</p>
<p style="text-align: center;"><img decoding="async" class="align-center" src="https://d1s48tdzk2qtjc.cloudfront.net/20161202/7-replace-layout-min.png" alt="Replace layout - Content Views Pro for WordPress" /></p>
<hr />
<h2 id="howto">How to do?</h2>
<p>There are only 2 simple steps to show Grid in your Blog, Category&#8230; pages:</p>
<ol>
<li><strong>Create View to design the layout (Grid, Pinterest&#8230;)</strong><br />
This step is <mark>creating a view</mark> to set the layout you want to show your posts (<em>start at 0:30 in below video</em>).</p>
<p><mark>If you already created the view, you can skip this step.</mark> It is about selecting layout (Grid, Pinterest, Timeline&#8230;), set number of columns, customize font &amp; color, setup pagination&#8230; You have complete control over the layout to design it in your desired way.</p>
<p>Normally, you <mark style="font-size: revert;">don&#8217;t need to change any settings in &#8220;Filter Settings&#8221;</mark><span style="font-size: revert; color: var(--ast-global-color-3); background-color: var(--ast-global-color-5);"> of this View (</span><mark style="font-size: revert;">leave &#8220;Filter Settings&#8221; as default</mark><span style="font-size: revert; color: var(--ast-global-color-3); background-color: var(--ast-global-color-5);">), because Content Views Pro will get the posts of current page automatically.<br />
</span>For example: when replacing layout of a category page, Content Views Pro will get the posts list of that current category automatically.</li>
<li id="step2" style="margin-top: 30px;"><strong>Use the View on archive pages</strong><br />
In Admin dashboard, click <em>Content Views &gt;&gt; Replace Layout</em>.<br />
<img decoding="async" class="alignnone size-full wp-image-6014" src="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Replace-Layout-Menu.png" alt="" width="196" height="225" /></p>
<p>In the Replace Layout page:</p>
<ul>
<li>select checkbox of the WordPress page you want to replace layout</li>
<li>select the View (that you created in Step 1 above) in the dropdown</li>
</ul>
<p><img decoding="async" class="alignnone size-full wp-image-1758" src="https://contentviewspro.com/documentation/wp-content/uploads/2020/12/Content-Views-Pro-Grid-layout-for-Category.png" alt="Content Views Pro - Grid layout for Category" width="633" height="374" /></li>
<li id="create-view">
<blockquote><p>For Categories (or Tags, custom taxonomies), you can select a different layout for each category (<a href="https://contentviewspro.com/documentation/article/completely-replace-wordpress-layout-by-content-views-pro-layout/#custom">read more</a>).</p></blockquote>
</li>
</ol>
<p>That&#8217;s done. You now have beautiful Grid layout in your Category pages effortlessly.</p>
<p>To disable this feature for any page, please uncheck the checkbox of that page.</p>
<hr />
<p>This video will demonstrate how to use the Replace Layout feature to show Grid in your WordPress category page:</p>
<p><iframe loading="lazy" src="//www.youtube.com/embed/MMsdHaxaLUI?hd=1&amp;vq=hd720&amp;cc_load_policy=1&amp;autohide=1&amp;showinfo=0&amp;modestbranding=1&amp;iv_load_policy=3&amp;rel=0&amp;theme=light
" width="640" height="360" frameborder="0" allowfullscreen="allowfullscreen"></iframe></p>
<hr />
<h2 id="sorting">Customize sort order</h2>
<p>The default sort order of page will be used, to use your custom sort order, please:</p>
<ul>
<li>configure the “Sort by” of the View as you want (<a href="https://contentviewspro.com/documentation/article/how-to-sort-wordpress-posts-in-view/" target="_blank" rel="noopener noreferrer">see document</a>)</li>
<li>then select the option <strong>Use &#8220;Sort by&#8221; setting of View</strong> in the third column:<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-2855" src="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Replace-Layout-change-posts-order.png" alt="Replace Layout - change posts order" width="708" height="122" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Replace-Layout-change-posts-order.png 708w, https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Replace-Layout-change-posts-order-300x52.png 300w" sizes="auto, (max-width: 708px) 100vw, 708px" /></li>
</ul>
<hr />
<h2 id="overwrite">Overwrite the result</h2>
<p>By default, the returned result by WordPress for a page will be used, for example the Blog page will display posts from all categories.<br />
To overwrite this result (query posts in your custom way), please:</p>
<ul>
<li>configure the &#8220;Filter Settings&#8221; of the View as you want</li>
<li>then select the option <strong>Use &#8220;Filter Settings&#8221; of View</strong> in the third column:<img loading="lazy" decoding="async" class="alignnone size-full wp-image-3045" src="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Replace-Layout-overwrite-result.png" alt="Replace-Layout-overwrite-result" width="695" height="116" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Replace-Layout-overwrite-result.png 695w, https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Replace-Layout-overwrite-result-300x50.png 300w" sizes="auto, (max-width: 695px) 100vw, 695px" /></li>
</ul>
<hr />
<h2 id="which">Which pages can I replace the posts layout?</h2>
<p>You can replace layout in many WordPress pages:</p>
<ul>
<li>Blog page: is the default latest posts page, or the <strong><em>Posts page</em></strong> page which you selected in WordPress admin <strong><em>Settings &gt; Reading</em></strong>:<img loading="lazy" decoding="async" class="alignnone size-full wp-image-2655" src="https://contentviewspro.com/documentation/wp-content/uploads/2017/12/CVP-select-Blog-page-for-WordPress.png" alt="CVP - select Blog page for WordPress" width="695" height="251" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2017/12/CVP-select-Blog-page-for-WordPress.png 695w, https://contentviewspro.com/documentation/wp-content/uploads/2017/12/CVP-select-Blog-page-for-WordPress-300x108.png 300w" sizes="auto, (max-width: 695px) 100vw, 695px" /></li>
<li>Search results page</li>
<li>Category archive</li>
<li>Tag archive</li>
<li>Custom taxonomy archive (WooCommerce shop page, WooCommerce product categories, EDD download categories, event categories&#8230;)</li>
<li>Other archives (author, date, month, year)</li>
<li>Post type archives</li>
<li>Single post, single page, single product, single event&#8230; page</li>
</ul>
<hr />
<h2 id="custom">How to use a different layout for each category?</h2>
<p>To use a different layout for each category, please:</p>
<ul>
<li>in the <i>Content Views &gt;&gt; Replace Layout</i> page, select the Category checkbox, and select the View which you created to replace layout of most categories:<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-2961" src="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/CVP-replace-layout-of-Category-common.png" alt="CVP - replace layout of Category common View" width="651" height="84" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/CVP-replace-layout-of-Category-common.png 651w, https://contentviewspro.com/documentation/wp-content/uploads/2014/08/CVP-replace-layout-of-Category-common-300x39.png 300w" sizes="auto, (max-width: 651px) 100vw, 651px" /></li>
<li>edit the category which you want different layout (<em>click Posts &gt; Categories, mouse over the category and click <strong>Edit</strong></em>), then select the View you created for this category in the <strong>Content Views</strong> setting:<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-2958" src="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Content-Views-Pro-specific-View-for-replace-category-layout.png" alt="Content Views Pro - specific View for replace category layout" width="656" height="570" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Content-Views-Pro-specific-View-for-replace-category-layout.png 656w, https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Content-Views-Pro-specific-View-for-replace-category-layout-300x261.png 300w" sizes="auto, (max-width: 656px) 100vw, 656px" /></li>
</ul>
<p>You can use different layouts for different tags, custom taxonomies too.</p>
<h2 id="specific">How to replace layout for only a specific category?</h2>
<p>If you don&#8217;t want to replace layout of all category pages but only a specific category, please:</p>
<ul>
<li>in the <i>Content Views &gt;&gt; Replace Layout</i> page, select the Category checkbox, but <strong>do not select any View</strong> (use the default option &#8220;(Select View)&#8221;)<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-2955" src="https://contentviewspro.com/documentation/wp-content/uploads/2018/03/CVP-replace-layout-of-Category-default.png" alt="CVP - replace layout of Category default" width="651" height="84" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2018/03/CVP-replace-layout-of-Category-default.png 651w, https://contentviewspro.com/documentation/wp-content/uploads/2018/03/CVP-replace-layout-of-Category-default-300x39.png 300w" sizes="auto, (max-width: 651px) 100vw, 651px" /></li>
<li>edit the category which you want to replace layout, then select the View you created for this category in the <strong>Content Views</strong> setting:<br />
<img loading="lazy" decoding="async" id="select-view-for-a-term" class="alignnone size-full wp-image-2958" src="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Content-Views-Pro-specific-View-for-replace-category-layout.png" alt="Content Views Pro - specific View for replace category layout" width="656" height="570" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Content-Views-Pro-specific-View-for-replace-category-layout.png 656w, https://contentviewspro.com/documentation/wp-content/uploads/2014/08/Content-Views-Pro-specific-View-for-replace-category-layout-300x261.png 300w" sizes="auto, (max-width: 656px) 100vw, 656px" /></li>
</ul>
<p>You can replace layout for only a specific tag, custom taxonomy too.</p>
<h2 id="subcategories">How to show sub-categories on the parent category page?</h2>
<p>By default, WordPress will display posts on any category page.<br />
How to display sub-categories on the parent category page? Content Views Pro (since version 5.3.0) will help you to do it easily in 3 simple steps:</p>
<ol>
<li>First, in the <i>Content Views &gt;&gt; Replace Layout</i> page:
<ul>
<li>if you do not want to replace layout in sub-categories pages, please select the Category checkbox, but <strong>do not select any View</strong> (use the default option &#8220;(Select View)&#8221;):<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-2955" src="https://contentviewspro.com/documentation/wp-content/uploads/2018/03/CVP-replace-layout-of-Category-default.png" alt="CVP - replace layout of Category default" width="651" height="84" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2018/03/CVP-replace-layout-of-Category-default.png 651w, https://contentviewspro.com/documentation/wp-content/uploads/2018/03/CVP-replace-layout-of-Category-default-300x39.png 300w" sizes="auto, (max-width: 651px) 100vw, 651px" /></li>
<li>if you want to replace layout in sub-categories pages, select the Category checkbox, and select the View which you created to replace layout of sub-categories:<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-2961" src="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/CVP-replace-layout-of-Category-common.png" alt="CVP - replace layout of Category common View" width="651" height="84" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/CVP-replace-layout-of-Category-common.png 651w, https://contentviewspro.com/documentation/wp-content/uploads/2014/08/CVP-replace-layout-of-Category-common-300x39.png 300w" sizes="auto, (max-width: 651px) 100vw, 651px" /></li>
</ul>
</li>
<li>Secondly, <strong>let&#8217;s create a View to show sub-categories</strong>.<br />
In that View, select the <strong>Taxonomy</strong> checkbox in Filter Settings &gt; Advance. Then select options like this:<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-3120" src="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/CVP-show-subcategories-on-category-archive-page.png" alt="CVP - show subcategories on category archive page" width="679" height="396" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/CVP-show-subcategories-on-category-archive-page.png 679w, https://contentviewspro.com/documentation/wp-content/uploads/2014/08/CVP-show-subcategories-on-category-archive-page-300x175.png 300w" sizes="auto, (max-width: 679px) 100vw, 679px" /></li>
<li>Finally, <strong>edit each of parent categories</strong>,<br />
then <strong>select the created View in step 2 above</strong> for the <em>Content Views</em> setting:<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-3129" src="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/cvp-select-view-for-parent-category.png" alt="cvp-select-view-for-parent-category" width="636" height="327" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2014/08/cvp-select-view-for-parent-category.png 636w, https://contentviewspro.com/documentation/wp-content/uploads/2014/08/cvp-select-view-for-parent-category-300x154.png 300w" sizes="auto, (max-width: 636px) 100vw, 636px" /></li>
</ol>
<p>These steps can be applied to category, or any custom taxonomy.</p>
<hr />
<h2 id="notwork">Notices</h2>
<blockquote><p>Above settings will not work with the themes of <code>RocketTheme</code>, please <a href="http://contentviewspro.com/documentation/article/replace-layout-in-themes-use-the-gantry-framework/">click here for the solution</a>.</p></blockquote>
<p>Thank you,</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
