<?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>Other Plugins &#8211; Content Views Pro</title>
	<atom:link href="https://contentviewspro.com/documentation/cats/other-plugins/feed/" rel="self" type="application/rss+xml" />
	<link>https://contentviewspro.com/documentation</link>
	<description>Most Popular Filter &#38; Grid Plugin For WordPress</description>
	<lastBuildDate>Fri, 29 Dec 2023 04:26:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Show results of FacetWP</title>
		<link>https://contentviewspro.com/documentation/article/show-results-facetwp-content-views-pro-layout/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Fri, 06 Jan 2017 15:41:09 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=1132</guid>

					<description><![CDATA[FacetWP plugin helps you to show facets and results for your WordPress content. The facets are shown using its shortcode &#91;facetwp facet="my_facet"&#93;, the results are shown using this shortcode &#91;facetwp template="my_template"&#93;. You can use Content Views Pro to display the results of FacetWP plugin in grid and another layout easily. Here are steps: 1/ Browse &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/show-results-facetwp-content-views-pro-layout/"> <span class="screen-reader-text">Show results of FacetWP</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>FacetWP plugin helps you to show facets and results for your WordPress content. The facets are shown using its shortcode <code>&#91;facetwp facet="my_facet"&#93;</code>, the results are shown using this shortcode <code>&#91;facetwp template="my_template"&#93;</code>.<br />
You can use Content Views Pro to <strong>display the results</strong> of FacetWP plugin in grid and another layout easily. Here are steps:</p>
<p>1/ Browse to Settings > FacetWP, click the “Templates” tab, select the template which you are using, then copy and backup the code in &#8220;Display Code&#8221; to somewhere.</p>
<p>2/ Replace &#8220;Display Code&#8221; content with this:</p>
<pre style="font-size:13px">
&lt;?php
if ( shortcode_exists( 'pt_view' ) ) :
	$pids = array();
	while ( have_posts() ) :
		the_post();
		$pids[] = get_the_ID();
	endwhile;
	echo $pids ? do_shortcode( '&#91;pt_view id="<strong>VIEW_ID</strong>" post_id="' . implode( ',', $pids ) . '"&#93;' ) : '';
else : ?&gt;
	<strong>Paste the backed up content (in step 1) here</strong>
&lt;?php endif; ?&gt;</pre>
<p>3/ replace <strong>VIEW_ID</strong> with ID of the View (<em>which will be used to show FacetWP results</em>).</p>
<blockquote><p>Notice: The results and pagination depend on the FacetWP plugin, therefore <code>Filter Settings, Pagination settings in View will not be applied</code>.</p></blockquote>
<p>Thank you,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Show all authors of Co-Authors Plus plugin</title>
		<link>https://contentviewspro.com/documentation/article/show-authors-co-authors-plus-plugin/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Thu, 20 Apr 2017 03:31:19 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=1512</guid>

					<description><![CDATA[Please add this code to file functions.php of your active theme: // Content Views Pro - Show authors by Co-Authors Plus plugin add_filter( 'pt_cv_field_meta_author_html', 'cvp_theme_field_meta_author_html_coauthor', 100, 2 ); function cvp_theme_field_meta_author_html_coauthor( $args, $post ) { // 1. To show author name and link if ( function_exists( 'coauthors_posts_links' ) ) { $args = coauthors_posts_links( null, null, null, &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/show-authors-co-authors-plus-plugin/"> <span class="screen-reader-text">Show all authors of Co-Authors Plus plugin</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>Please add this code to file <strong>functions.php</strong> of your active theme:</p>
<pre style="font-size:13px">
// Content Views Pro - Show authors by Co-Authors Plus plugin
add_filter( 'pt_cv_field_meta_author_html', 'cvp_theme_field_meta_author_html_coauthor', 100, 2 );
function cvp_theme_field_meta_author_html_coauthor( $args, $post ) {

	// 1. To show author name and link
	if ( function_exists( 'coauthors_posts_links' ) ) {
		$args = coauthors_posts_links( null, null, null, null, false );
	}
	// end 1.

	// 2. To show author avatar and link
	if ( function_exists( 'get_coauthors' ) ) {
		$arr = array();
		foreach ( get_coauthors() as $coauthor ) {
			$avatar	 = get_avatar( $coauthor-&gt;user_email, '60' );
			$link	 = get_author_posts_url( $coauthor-&gt;ID, $coauthor-&gt;user_nicename );
			$arr[]	 = sprintf( '&lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt;', esc_url( $link ), $avatar );
		}

		$args = $arr ? implode( '', $arr ) : $args;
	}
	// end 2.

	return $args;
}
</pre>
<blockquote><p>Depending on your need, please remove the 1. or 2. block in above code.</p></blockquote>
<p>Thank you,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Show entries submitted by Gravity Forms plugin</title>
		<link>https://contentviewspro.com/documentation/article/display-entries-submitted-via-gravity-form/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Fri, 07 Jul 2017 14:55:50 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=1804</guid>

					<description><![CDATA[It is easy to display entries submitted via Gravity form with Content Views Pro. In Filter Settings tab: &#8211; select Post for Content Type &#8211; select Custom Fields checkbox under Advance section. Click the Add New button, then set these values: _gform-form-id for &#8220;Field key&#8221; Number for &#8220;Value type&#8221; Equal for &#8220;Operator to compare&#8221; ID &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/display-entries-submitted-via-gravity-form/"> <span class="screen-reader-text">Show entries submitted by Gravity Forms plugin</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>It is easy to display entries submitted via Gravity form with Content Views Pro.<br />
In Filter Settings tab:<br />
&#8211; select <strong>Post</strong> for Content Type<br />
&#8211; select <strong>Custom Fields</strong> checkbox under Advance section.<br />
Click the Add New button, then set these values:</p>
<ul>
<li><code>_gform-form-id</code> for &#8220;Field key&#8221;</li>
<li><code>Number</code> for &#8220;Value type&#8221;</li>
<li><code>Equal</code> for &#8220;Operator to compare&#8221;</li>
<li><code>ID number of the Form</code> for &#8220;Value to compare&#8221;</li>
</ul>
<p><img fetchpriority="high" decoding="async" src="https://contentviewspro.com/documentation/wp-content/uploads/2017/07/Content-Views-Gravity-form.png" alt="Content Views Pro - Gravity form" width="810" height="358" class="alignnone size-full wp-image-1805" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2017/07/Content-Views-Gravity-form.png 810w, https://contentviewspro.com/documentation/wp-content/uploads/2017/07/Content-Views-Gravity-form-300x133.png 300w, https://contentviewspro.com/documentation/wp-content/uploads/2017/07/Content-Views-Gravity-form-768x339.png 768w" sizes="(max-width: 810px) 100vw, 810px" /></p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Show private bbPress forums</title>
		<link>https://contentviewspro.com/documentation/article/how-to-show-private-bbpress-forums/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Mon, 23 Oct 2017 09:49:47 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=2461</guid>

					<description><![CDATA[Content Views Pro helps you to show forums, topics, replies of the bbPress plugin easily without coding. By default, bbPress excludes private forums from all queries. To show these private forums in View output, please add this code to file functions.php in the directory of your active theme: // Content Views Pro - show private &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/how-to-show-private-bbpress-forums/"> <span class="screen-reader-text">Show private bbPress forums</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>Content Views Pro helps you to show forums, topics, replies of the bbPress plugin easily without coding.<br />
By default, bbPress excludes private forums from all queries. To show these private forums in View output, please add this code to file <strong>functions.php</strong> in the directory of your active theme:</p>
<pre style="font-size:13px">
// Content Views Pro - show private bbPress forums
add_filter( 'bbp_include_all_forums', 'cvp_bbpress_show_private_forums', 10, 2 );
function cvp_bbpress_show_private_forums( $args, $posts_query ) {
	if ( $posts_query->get( 'by_contentviews' ) ) {
		$args = true;
	}

	return $args;
}
</pre>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<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>bbPress &#8211; show reply of a topic, show topics of a forum</title>
		<link>https://contentviewspro.com/documentation/article/bbpress-show-reply-topic-show-topic-forum/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Tue, 21 Feb 2017 05:39:09 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=1305</guid>

					<description><![CDATA[With Content Views Pro, you can show replies of specific topic, or topics of specific forums easily. I/ Show reply of a topic In Filter Settings tab, select option Reply for &#8220;Content Type&#8221;. In Advance section, select Custom Fields checkbox. In &#8220;Filter by Custom Fields&#8221; section: &#8211; select _bbp_topic_id for &#8220;Field key&#8221; column &#8211; select &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/bbpress-show-reply-topic-show-topic-forum/"> <span class="screen-reader-text">bbPress &#8211; show reply of a topic, show topics of a forum</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>With Content Views Pro, you can show replies of specific topic, or topics of specific forums easily.</p>
<h2>I/ Show reply of a topic</h2>
<p>In Filter Settings tab, select option <strong>Reply</strong> for &#8220;Content Type&#8221;.<br />
In Advance section, select <strong>Custom Fields</strong> checkbox.<br />
In &#8220;Filter by Custom Fields&#8221; section:<br />
&#8211; select <strong>_bbp_topic_id</strong> for &#8220;Field key&#8221; column<br />
&#8211; select <strong>Number</strong> for &#8220;Value type&#8221; column<br />
&#8211; select <strong>Equal (=)</strong> for &#8220;Operator to compare&#8221; column<br />
&#8211; enter ID of the topic for &#8220;Value to compare&#8221; column. To get ID of topic, open edit topic page, look at the address bar of the browser, you will see a number after <strong>?post=</strong>, for example <code>https://YOUR_DOMAIN.com/wp-admin/post.php?post=1000&amp;action=edit</code>, then the ID of topic is 1000.</p>
<p><img decoding="async" class="alignnone size-full wp-image-1313" src="https://contentviewspro.com/documentation/wp-content/uploads/2017/02/CVP-show-reply-of-topic.png" alt="" width="725" height="199" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2017/02/CVP-show-reply-of-topic.png 725w, https://contentviewspro.com/documentation/wp-content/uploads/2017/02/CVP-show-reply-of-topic-300x82.png 300w" sizes="(max-width: 725px) 100vw, 725px" /></p>
<h2>II/ Show topics of a forum</h2>
<p>It is quite similar as above, but:<br />
&#8211; select <strong>Topic</strong> option for &#8220;Content Type&#8221;.<br />
&#8211; select <strong>_bbp_forum_id</strong> for &#8220;Field key&#8221; column, then insert ID of the forum.</p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Use excerpt generated by Advanced Excerpt plugin</title>
		<link>https://contentviewspro.com/documentation/article/use-excerpt-generated-advanced-excerpt-plugin/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Thu, 18 Aug 2016 02:29:27 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=934</guid>

					<description><![CDATA[There are many plugins which help you to customize excerpt of posts. Advanced Excerpt is one of them. To use excerpt generated by Advanced Excerpt plugin, please add this code to file functions.php of your active theme: // CVP - use excerpt generated by Advanced Excerpt plugin add_filter( 'pt_cv_field_content_final', 'cvp_field_content_final_ade', 10, 2 ); function cvp_field_content_final_ade( &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/use-excerpt-generated-advanced-excerpt-plugin/"> <span class="screen-reader-text">Use excerpt generated by Advanced Excerpt plugin</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>There are many plugins which help you to customize excerpt of posts. Advanced Excerpt is one of them. To use excerpt generated by Advanced Excerpt plugin, please add this code to file functions.php of your active theme:</p>
<pre style="font-size:13px">
<code>// CVP - use excerpt generated by Advanced Excerpt plugin
add_filter( 'pt_cv_field_content_final', 'cvp_field_content_final_ade', 10, 2 );
function cvp_field_content_final_ade( $content, $post ) {
	$content = get_the_excerpt();	
	return $content;
}</code>
</pre>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Show Youtube video from WP YouTube Lyte plugin</title>
		<link>https://contentviewspro.com/documentation/article/doesnt-work-with-plugin-wp-youtube-lyte/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Mon, 02 Nov 2015 03:34:40 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=610</guid>

					<description><![CDATA[If you are using this plugin WP YouTube Lyte to embed Youtube video to your post, Content Views Pro will not able to detect Youtube video url, because that plugin uses httpv as protocol for url. To solve this problem, please add this code to file functions.php of your active theme: // Content Views Pro &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/doesnt-work-with-plugin-wp-youtube-lyte/"> <span class="screen-reader-text">Show Youtube video from WP YouTube Lyte plugin</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>If you are using this plugin <strong>WP YouTube Lyte</strong> to embed Youtube video to your post, Content Views Pro will not able to detect Youtube video url, because that plugin uses <code>httpv</code> as protocol for url.</p>
<p>To solve this problem, please add this code to file functions.php of your active theme:</p>
<pre style="font-size:13px">
// Content Views Pro - Fix problem with WP YouTube Lyte
add_filter( 'pt_cv_custom_media_thumbnail', 'cvp_theme_custom_media_thumbnail_ytl', 10, 2 );
function cvp_theme_custom_media_thumbnail_ytl( $args, $post_content ) {
	preg_match_all( '|http[sv]?://[^\s"\']+|im', $post_content, $matches );
	if ( isset($matches[0][0]) ) {
		$matches[0][0] = str_replace( 'httpv', 'http', $matches[0][0] );
		$args = $matches;
	}

	return $args;
}
</pre>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
