<?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>social buttons &#8211; Content Views Pro</title>
	<atom:link href="https://contentviewspro.com/documentation/tags/social-buttons/feed/" rel="self" type="application/rss+xml" />
	<link>https://contentviewspro.com/documentation</link>
	<description>Most Popular Filter &#38; Grid Plugin For WordPress</description>
	<lastBuildDate>Mon, 28 Oct 2024 09:47:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Add new social share buttons (WhatsApp, Tumblr, Parler, Email)</title>
		<link>https://contentviewspro.com/documentation/article/add-new-social-share-buttons-whatsapp-tumblr/</link>
		
		<dc:creator><![CDATA[CVP]]></dc:creator>
		<pubDate>Mon, 10 Apr 2017 02:19:27 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=2017</guid>

					<description><![CDATA[Content Views Pro helps you to show social share buttons easily. By default, you show sharing buttons of Facebook, Twitter, Google +, Linkedin, Pinterest. To add more social share buttons, please: enable &#8220;Social Sharing&#8221; in the &#8220;Display Settings&#8221; tab of the View add this code to file functions.php of your active theme: // Content Views &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/add-new-social-share-buttons-whatsapp-tumblr/"> <span class="screen-reader-text">Add new social share buttons (WhatsApp, Tumblr, Parler, Email)</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>Content Views Pro helps you to show social share buttons easily. By default, you show sharing buttons of Facebook, Twitter, Google +, Linkedin, Pinterest.<br />
To add more social share buttons, please:</p>
<ul>
<li>enable &#8220;Social Sharing&#8221; in the &#8220;Display Settings&#8221; tab of the View<br />
<img fetchpriority="high" decoding="async" src="https://contentviewspro.com/documentation/wp-content/uploads/2017/10/social-sharing.png" alt="Content Views Pro - social sharing" width="348" height="194" class="alignnone size-full wp-image-2334" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2017/10/social-sharing.png 348w, https://contentviewspro.com/documentation/wp-content/uploads/2017/10/social-sharing-300x167.png 300w" sizes="(max-width: 348px) 100vw, 348px" />
</li>
<li>add this code to file <strong>functions.php</strong> of your active theme:
<pre style="font-size:13px">
// Content Views Pro - Add new social buttons
add_filter( 'pt_cv_social_links', 'cvp_theme_social_links', 100, 3 );
function cvp_theme_social_links( $buttons_html, $url, $title ) {
	### whatsapp ###
	$social_link	 = sprintf( 'whatsapp://send?text=%s', $url );
	$buttons_html[]	 = sprintf( '&lt;a href=&quot;%s&quot; class=&quot;%s&quot; target=&quot;_blank&quot;&gt;&lt;/a&gt;', $social_link, esc_attr( 'pt-cv-social-whatsapp' ) );

	### tumblr ###
	$social_link	 = sprintf( 'http://www.tumblr.com/share/link?url=%s', $url );
	$buttons_html[]	 = sprintf( '&lt;a href=&quot;%s&quot; class=&quot;%s&quot; target=&quot;_blank&quot;&gt;&lt;/a&gt;', $social_link, esc_attr( 'pt-cv-social-tumblr' ) );

	### parler ###
	$social_link	 = sprintf( 'https://parler.com/new-post?message=%s&amp;url=%s', 'Check%20this%20out', $url );
	$buttons_html[]	 = sprintf( '&lt;a href=&quot;%s&quot; class=&quot;%s&quot; target=&quot;_blank&quot;&gt;&lt;/a&gt;', $social_link, esc_attr( 'pt-cv-social-parler' ) );

	### email ###
	$email_link	 = sprintf( 'mailto:?subject=%s&body=%s', 'Hello, check this post', str_replace( array( ' ', '+' ), '%20', $title ) . ": $url" );
	$buttons_html[]	 = sprintf( '&lt;a href=&quot;%s&quot; class=&quot;%s&quot; target=&quot;_blank&quot;&gt;&lt;/a&gt;', $email_link, esc_attr( 'pt-cv-social-email' ) );

	return $buttons_html;
}
</pre>
</li>
<li>add this code to <strong>Custom CSS</strong> field in Content Views >> Settings page:
<pre style="font-size:13px">
.pt-cv-social-whatsapp {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAZlBMVEVWuGFXumFXuWNWuWJXumP////t+O5fvmv6/vva8N2EzY11xn/P7NPM6s+/5cS6479rw3ZbvGfE58mz4Lma1qGr3bGQ0piJz5L0+vXw+fHj9OXV7tjH6Muj2qp7yYSp3K+f16aV1J0/49wtAAAABHRSTlP7+IB8OxNwCAAAANtJREFUOMvNk90SgiAQhak4C6SigD9ZavX+L5nUMNMg2kxXcrUDH+zZsws7HfjGYkcWn8cE4z/W/oDzvdTNeRV4Ei5K9aA6CRiLYfJBZlGIBDDINoSdzJdAjfZLCx4xYMhyXlJ4uryICOiQ8Qrh4hy2EeBoVge48PK1jAB787uoAlDkETB4YJK5WQMcfUpR2USNCCkikd5MCQnUCZGm1x/5jnATiTK5kyG98EaNCydV8WVkwuoK91HZt45Mp5o1ArIg9EpRut257nzuRs8DY/Y91X98TsaOmwQ7vQBKsRaFijPuWgAAAABJRU5ErkJggg==) no-repeat !important;
}

.pt-cv-social-tumblr {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAATlBMVEU5WXb///9adY7u8fPq7fC8x9FYc4v5+vva3+XJ0tpzip9HZYD4+frw8/Xe4+jS2eDN1d24w86frrySo7OPobKClql2jKBVcIlOa4U/XnoLzaiKAAAAXklEQVQ4y+XKNxKAMAxEUclBTuTM/S+KXVBKVIwL/2pn9kGTLT7IYEAj/hFFkHYnA3yzvwE68tkrRRcwqQx0GZVBJwHCXAQ4OXC7IrxB4AqIJR6Q/gCQVjtO8wbN9QDT4gH/kQUgiwAAAABJRU5ErkJggg==) no-repeat !important;
}

.pt-cv-social-email {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAllBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8oKCjExMTc3NzY2Nj8/PyYmJg8PDwrKyv4+PjV1dWmpqaFhYVqampiYmJXV1dFRUUvLy8FBQXx8fHt7e3b29vFxcWpqamSkpKJiYl2dnZnZ2cdHR0LCwv09PTi4uLg4ODHx8fDw8O4uLizs7Orq6uLi4t7e3tubm5NTU0lJSUn0fMjAAAABnRSTlP6+/iAfXyEjkPGAAAAs0lEQVQ4y93Sxw6CQBSF4VF0DsLQe6/2/v4vp8YQGSCwMjH+2/NtbnLJYk5HmgmE2/sRQif6KxCIvQIOaBd0KjQOyI6ro5XuOgYHJFhq9Nkj1YLcATArqdljLUUfYE937z0REwwBxNUJz1JfwjCAQs9AThVgGFiqodqlZ/j5IGCvS5ltM6xvJeuD0CvQxK5e2AVbX0GrTNvwwLwfwHWsTQ7UyqpTFvzcR30VzCZ2IpDRffkA0EEfRcjCR6IAAAAASUVORK5CYII=) no-repeat !important;
}

.pt-cv-social-parler {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAflBMVEW/Hi3///++GirAHy7FMj/BJTPruLvnq67RW2Tz1NXkn6TAIjHmqKzLSVT89PTjnKLeiZHz1tjpsLTlo6jilpzcgIfWbXbDKzjCJjT02Nvwy87vx8nsv8Hei5LTZG3QWmPPVF/ELjv67+/56uv34uT24uPy09TdiZHTZm/HO0c6oKDXAAAAtElEQVQ4y+XRWRaDIAwF0CQ4UEWt86y1c/e/waLl+EO6Au8vjxc4gYMRi2PUgriAq9LT5tmrqWECTY+7WDnMiEjOs9SmsUNUTAftHB9jSUwCxAbo02IClvCd+ysVkfDRC637VYw/FUGAg2sVZHjzAy3RDRnT4HqYCFMWPbAAJvAiIE1EA14vxATOBLIsy/yOmITABvTwVRws8CdQtGna5dJ8gRlRm23ygdEc8MKqsF5u7eLAvh4nCLfcRZZNAAAAAElFTkSuQmCC) no-repeat !important;
}
</pre>
</li>
</ul>
<p><strong>Notice:</strong><br />
If you are using another plugin to add social buttons to your site, you might integrate that plugin to grid/list View using the code here (<a href="https://contentviewspro.com/documentation/article/add-custom-text-html-end-post/">see document</a>).<br />
The code for <code>// Put the text, HTML or PHP code here</code> is <strong>the PHP function (or shortcode) to shows social buttons for a post</strong> of the social plugin (you might contact their support to know that function).</p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Show social share buttons</title>
		<link>https://contentviewspro.com/documentation/article/show-social-share-buttons/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Sat, 01 Oct 2016 04:39:49 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=2333</guid>

					<description><![CDATA[Content Views Pro helps you to show social share buttons easily on single click. In Display Settings tab, please select the Enable checkbox for &#8220;Social Sharing&#8221; setting, then select the social networks you want to show. You can add more share buttons with this document. Best regards,]]></description>
										<content:encoded><![CDATA[<p>Content Views Pro helps you to show social share buttons easily on single click.<br />
In Display Settings tab, please select the <strong>Enable</strong> checkbox for &#8220;Social Sharing&#8221; setting, then select the social networks you want to show.</p>
<p><img decoding="async" src="https://contentviewspro.com/documentation/wp-content/uploads/2017/10/social-sharing.png" alt="Content Views Pro - social sharing" width="348" height="194" class="alignnone size-full wp-image-2334" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2017/10/social-sharing.png 348w, https://contentviewspro.com/documentation/wp-content/uploads/2017/10/social-sharing-300x167.png 300w" sizes="(max-width: 348px) 100vw, 348px" /></p>
<p>You can add more share buttons with <a href="http://contentviewspro.com/documentation/article/add-new-social-share-buttons-whatsapp-tumblr/">this document</a>.</p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Social buttons &#8211; use custom icon</title>
		<link>https://contentviewspro.com/documentation/article/social-buttons-use-custom-icon/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Wed, 13 Jul 2016 09:39:27 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=887</guid>

					<description><![CDATA[Content Views Pro uses a set of icons for social networks. To use your own icons, please add this code to Custom CSS field in Content Views >> Settings page: .pt-cv-social-buttons a {background-repeat: no-repeat !important; background-size: contain !important; background-position: unset !important;} .pt-cv-social-facebook {background: url(YOUR_FACEBOOK_IMAGE_URL) !important} .pt-cv-social-twitter {background: url(YOUR_TWITTER_IMAGE_URL) !important} .pt-cv-social-googleplus {background: url(YOUR_GOOGLEPLUS_IMAGE_URL) !important} .pt-cv-social-linkedin {background: &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/social-buttons-use-custom-icon/"> <span class="screen-reader-text">Social buttons &#8211; use custom icon</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>Content Views Pro uses a set of icons for social networks. To use your own icons, please add this code to <strong>Custom CSS</strong> field in Content Views >> Settings page:</p>
<pre style="font-size:13px">
.pt-cv-social-buttons a {background-repeat: no-repeat !important; background-size: contain !important; background-position: unset !important;}
.pt-cv-social-facebook {background: url(YOUR_FACEBOOK_IMAGE_URL) !important}
.pt-cv-social-twitter {background: url(YOUR_TWITTER_IMAGE_URL) !important}
.pt-cv-social-googleplus {background: url(YOUR_GOOGLEPLUS_IMAGE_URL) !important}
.pt-cv-social-linkedin {background: url(YOUR_LINKEDIN_IMAGE_URL) !important}
.pt-cv-social-pinterest {background: url(YOUR_PINTEREST_IMAGE_URL) !important}
</pre>
<p>then <strong>replace above uppercase texts with the URL of your icons</strong>.</p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Social buttons – custom size</title>
		<link>https://contentviewspro.com/documentation/article/custom-size-for-social-buttons/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Tue, 12 Jul 2016 08:37:07 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=876</guid>

					<description><![CDATA[By default, size of social buttons is 32 x 32 pixels. You can change it as you want, for example: 20 x 20. Please add this code to Custom CSS field in Content Views >> Settings page: .pt-cv-social-buttons a{width:20px!important;height:20px!important;background-size:100px!important} .pt-cv-social-buttons .pt-cv-social-twitter{background-position:-20px 0!important} .pt-cv-social-buttons .pt-cv-social-linkedin{background-position:-60px 0!important} .pt-cv-social-buttons .pt-cv-social-pinterest{background-position:-80px 0!important} .pt-cv-social-buttons .pt-cv-social-googleplus {background-position: -40px 0;}]]></description>
										<content:encoded><![CDATA[<p>By default, size of social buttons is 32 x 32 pixels.<br />
You can change it as you want, for example: 20 x 20.</p>
<p>Please add this code to <strong>Custom CSS</strong> field in Content Views >> Settings page:</p>
<pre style="font-size:13px">
.pt-cv-social-buttons a{width:20px!important;height:20px!important;background-size:100px!important}
.pt-cv-social-buttons .pt-cv-social-twitter{background-position:-20px 0!important}
.pt-cv-social-buttons .pt-cv-social-linkedin{background-position:-60px 0!important}
.pt-cv-social-buttons .pt-cv-social-pinterest{background-position:-80px 0!important}
.pt-cv-social-buttons .pt-cv-social-googleplus {background-position: -40px 0;}
</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Social buttons – monochrome color (black &#038; white)</title>
		<link>https://contentviewspro.com/documentation/article/gray-social-buttons/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Tue, 12 Jul 2016 08:31:17 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=872</guid>

					<description><![CDATA[Please add this code to Custom CSS field in Content Views &#62;&#62; Settings page: .pt-cv-social-buttons a{-webkit-filter:grayscale(1);filter:gray;filter:grayscale(1)}.pt-cv-social-buttons a:hover{-webkit-filter:grayscale(0);filter:gray;filter:grayscale(0)}]]></description>
										<content:encoded><![CDATA[<p>Please add this code to <strong>Custom CSS</strong> field in Content Views &gt;&gt; Settings page:</p>
<pre style="font-size: 13px;">.pt-cv-social-buttons a{-webkit-filter:grayscale(1);filter:gray;filter:grayscale(1)}.pt-cv-social-buttons a:hover{-webkit-filter:grayscale(0);filter:gray;filter:grayscale(0)}
</pre>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
