Version Description
- Removed Google+ from the plugin
Download this release
Release Info
Developer | Access Keys |
Plugin | Social Share WordPress Plugin – AccessPress Social Share |
Version | 4.4.6 |
Comparing to | |
See all releases |
Code changes from version 4.4.5 to 4.4.6
- accesspress-social-share.php +3 -55
- inc/backend/about-apss.php +1 -1
- inc/backend/activation.php +0 -1
- inc/backend/how-to-use.php +2 -2
- inc/backend/main-page.php +1 -2
- inc/frontend/content-filter.php +0 -36
- inc/frontend/shortcode.php +0 -39
- readme.txt +9 -6
accesspress-social-share.php
CHANGED
@@ -4,7 +4,7 @@ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
|
|
4 |
Plugin name: Social Share WordPress Plugin - AccessPress Social Share (Tester)
|
5 |
Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-share/
|
6 |
Description: A plugin to add various social media shares to a site with dynamic configuration options.
|
7 |
-
Version: 4.4.
|
8 |
Author: AccessPress Themes
|
9 |
Author URI: http://accesspressthemes.com
|
10 |
Text Domain: accesspress-social-share
|
@@ -30,7 +30,7 @@ if ( ! defined( 'APSS_LANG_DIR' ) ) {
|
|
30 |
}
|
31 |
|
32 |
if ( ! defined( 'APSS_VERSION' ) ) {
|
33 |
-
define( 'APSS_VERSION', '4.4.
|
34 |
}
|
35 |
|
36 |
if ( ! defined( 'APSS_TEXT_DOMAIN' ) ) {
|
@@ -251,7 +251,7 @@ if ( ! class_exists( 'APSS_Class' ) ) {
|
|
251 |
delete_transient( $transient );
|
252 |
}
|
253 |
update_option( APSS_COUNT_TRANSIENTS, array() );
|
254 |
-
$transient_array = array( 'apss_tweets_count', 'apss_linkedin_count', 'apss_fb_count', 'apss_pin_count'
|
255 |
foreach ( $transient_array as $transient ) {
|
256 |
delete_transient( $transient );
|
257 |
}
|
@@ -586,54 +586,6 @@ if ( ! class_exists( 'APSS_Class' ) ) {
|
|
586 |
return $tweet_count;
|
587 |
}
|
588 |
|
589 |
-
//for google plus url share count
|
590 |
-
function get_plusones( $url ){
|
591 |
-
$apss_settings = $this -> apss_settings;
|
592 |
-
if ( ! isset( $apss_settings[ 'enable_cache' ] ) || $apss_settings[ 'enable_cache' ] == '1' ) {
|
593 |
-
$cache_period = $apss_settings[ 'cache_period' ];
|
594 |
-
$googlePlus_transient = 'gp_' . md5( $url );
|
595 |
-
$googlePlus_transient_count = get_transient( $googlePlus_transient );
|
596 |
-
|
597 |
-
//for setting the counter transient in separate options value
|
598 |
-
$apss_social_counts_transients = get_option( APSS_COUNT_TRANSIENTS );
|
599 |
-
if ( false === $googlePlus_transient_count ) {
|
600 |
-
$curl = curl_init();
|
601 |
-
curl_setopt( $curl, CURLOPT_URL, "https://clients6.google.com/rpc" );
|
602 |
-
curl_setopt( $curl, CURLOPT_POST, true );
|
603 |
-
curl_setopt( $curl, CURLOPT_SSL_VERIFYPEER, false );
|
604 |
-
curl_setopt( $curl, CURLOPT_POSTFIELDS, '[{"method":"pos.plusones.get","id":"p","params":{"nolog":true,"id":"' . rawurldecode( $url ) . '","source":"widget","userId":"@viewer","groupId":"@self"},"jsonrpc":"2.0","key":"p","apiVersion":"v1"}]' );
|
605 |
-
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, true );
|
606 |
-
curl_setopt( $curl, CURLOPT_HTTPHEADER, array( 'Content-type: application/json' ) );
|
607 |
-
$curl_results = curl_exec( $curl );
|
608 |
-
curl_close( $curl );
|
609 |
-
unset( $curl );
|
610 |
-
$json = json_decode( $curl_results, true );
|
611 |
-
$plusones_count = isset( $json[ 0 ][ 'result' ][ 'metadata' ][ 'globalCounts' ][ 'count' ] ) ? intval( $json[ 0 ][ 'result' ][ 'metadata' ][ 'globalCounts' ][ 'count' ] ) : 0;
|
612 |
-
set_transient( $googlePlus_transient, $plusones_count, $cache_period * HOUR_IN_SECONDS );
|
613 |
-
if ( ! in_array( $googlePlus_transient, $apss_social_counts_transients ) ) {
|
614 |
-
$apss_social_counts_transients[] = $googlePlus_transient;
|
615 |
-
update_option( APSS_COUNT_TRANSIENTS, $apss_social_counts_transients );
|
616 |
-
}
|
617 |
-
} else {
|
618 |
-
$plusones_count = $googlePlus_transient_count;
|
619 |
-
}
|
620 |
-
} else {
|
621 |
-
$curl = curl_init();
|
622 |
-
curl_setopt( $curl, CURLOPT_URL, "https://clients6.google.com/rpc" );
|
623 |
-
curl_setopt( $curl, CURLOPT_POST, true );
|
624 |
-
curl_setopt( $curl, CURLOPT_SSL_VERIFYPEER, false );
|
625 |
-
curl_setopt( $curl, CURLOPT_POSTFIELDS, '[{"method":"pos.plusones.get","id":"p","params":{"nolog":true,"id":"' . rawurldecode( $url ) . '","source":"widget","userId":"@viewer","groupId":"@self"},"jsonrpc":"2.0","key":"p","apiVersion":"v1"}]' );
|
626 |
-
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, true );
|
627 |
-
curl_setopt( $curl, CURLOPT_HTTPHEADER, array( 'Content-type: application/json' ) );
|
628 |
-
$curl_results = curl_exec( $curl );
|
629 |
-
curl_close( $curl );
|
630 |
-
unset( $curl );
|
631 |
-
$json = json_decode( $curl_results, true );
|
632 |
-
$plusones_count = isset( $json[ 0 ][ 'result' ][ 'metadata' ][ 'globalCounts' ][ 'count' ] ) ? intval( $json[ 0 ][ 'result' ][ 'metadata' ][ 'globalCounts' ][ 'count' ] ) : 0;
|
633 |
-
}
|
634 |
-
return $plusones_count;
|
635 |
-
}
|
636 |
-
|
637 |
//for pinterest url share count
|
638 |
function get_pinterest( $url ){
|
639 |
$apss_settings = $this -> apss_settings;
|
@@ -720,10 +672,6 @@ if ( ! class_exists( 'APSS_Class' ) ) {
|
|
720 |
$count = $this -> get_tweets( $url );
|
721 |
break;
|
722 |
|
723 |
-
case 'google-plus':
|
724 |
-
$count = $this -> get_plusones( $url );
|
725 |
-
break;
|
726 |
-
|
727 |
case 'linkedin':
|
728 |
$count = $this -> get_linkedin( $url );
|
729 |
break;
|
4 |
Plugin name: Social Share WordPress Plugin - AccessPress Social Share (Tester)
|
5 |
Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-share/
|
6 |
Description: A plugin to add various social media shares to a site with dynamic configuration options.
|
7 |
+
Version: 4.4.6
|
8 |
Author: AccessPress Themes
|
9 |
Author URI: http://accesspressthemes.com
|
10 |
Text Domain: accesspress-social-share
|
30 |
}
|
31 |
|
32 |
if ( ! defined( 'APSS_VERSION' ) ) {
|
33 |
+
define( 'APSS_VERSION', '4.4.6' );
|
34 |
}
|
35 |
|
36 |
if ( ! defined( 'APSS_TEXT_DOMAIN' ) ) {
|
251 |
delete_transient( $transient );
|
252 |
}
|
253 |
update_option( APSS_COUNT_TRANSIENTS, array() );
|
254 |
+
$transient_array = array( 'apss_tweets_count', 'apss_linkedin_count', 'apss_fb_count', 'apss_pin_count' );
|
255 |
foreach ( $transient_array as $transient ) {
|
256 |
delete_transient( $transient );
|
257 |
}
|
586 |
return $tweet_count;
|
587 |
}
|
588 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
589 |
//for pinterest url share count
|
590 |
function get_pinterest( $url ){
|
591 |
$apss_settings = $this -> apss_settings;
|
672 |
$count = $this -> get_tweets( $url );
|
673 |
break;
|
674 |
|
|
|
|
|
|
|
|
|
675 |
case 'linkedin':
|
676 |
$count = $this -> get_linkedin( $url );
|
677 |
break;
|
inc/backend/about-apss.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
<div class="ap-tab-wrapper">
|
4 |
<p><strong><?php _e( 'AccessPress Social Share', 'accesspress-social-share' ); ?></strong> - <?php _e( 'is a FREE WordPress Plugin by AccessPress Themes.', 'accesspress-social-share' ); ?></p>
|
5 |
<p><?php _e( 'AccessPress Themes is a venture of Access Keys - who has developed hundreds of Custom WordPress themes and plugins for its clients over the years.', 'accesspress-social-share' ); ?> </p>
|
6 |
-
<p><strong>AccessPress Social Share</strong> - <?php _e( 'is plugin to allow anyone easily share website content (pages, posts) on major social media (Facebook, Twitter,
|
7 |
<div class="halfseperator"></div>
|
8 |
<p><strong><?php _e( 'Please visit our product page for more details here:', 'accesspress-social-share' ); ?></strong><br />
|
9 |
<a href="http://accesspressthemes.com/wordpress-plugins/accesspress-social-share/" target="_blank">http://accesspressthemes.com/wordpress-plugins/accesspress-social-share/</a></p>
|
3 |
<div class="ap-tab-wrapper">
|
4 |
<p><strong><?php _e( 'AccessPress Social Share', 'accesspress-social-share' ); ?></strong> - <?php _e( 'is a FREE WordPress Plugin by AccessPress Themes.', 'accesspress-social-share' ); ?></p>
|
5 |
<p><?php _e( 'AccessPress Themes is a venture of Access Keys - who has developed hundreds of Custom WordPress themes and plugins for its clients over the years.', 'accesspress-social-share' ); ?> </p>
|
6 |
+
<p><strong>AccessPress Social Share</strong> - <?php _e( 'is plugin to allow anyone easily share website content (pages, posts) on major social media (Facebook, Twitter, Pinterest, LinkedIn and Digg). A perfect plugin to make any content on your website social-share-friendly, and increase your social reach dramatically!', 'accesspress-social-share' ); ?> </p>
|
7 |
<div class="halfseperator"></div>
|
8 |
<p><strong><?php _e( 'Please visit our product page for more details here:', 'accesspress-social-share' ); ?></strong><br />
|
9 |
<a href="http://accesspressthemes.com/wordpress-plugins/accesspress-social-share/" target="_blank">http://accesspressthemes.com/wordpress-plugins/accesspress-social-share/</a></p>
|
inc/backend/activation.php
CHANGED
@@ -11,7 +11,6 @@ $apss_share_settings['share_positions'] = 'below_content';
|
|
11 |
$social_networks = array(
|
12 |
'facebook' => '1',
|
13 |
'twitter' => '1',
|
14 |
-
'google-plus' => '1',
|
15 |
'pinterest' => '1',
|
16 |
'linkedin' => '1',
|
17 |
'digg' => '1',
|
11 |
$social_networks = array(
|
12 |
'facebook' => '1',
|
13 |
'twitter' => '1',
|
|
|
14 |
'pinterest' => '1',
|
15 |
'linkedin' => '1',
|
16 |
'digg' => '1',
|
inc/backend/how-to-use.php
CHANGED
@@ -32,7 +32,7 @@
|
|
32 |
<li><?php _e( 'Available shortcode parameters', 'accesspress-social-share' ); ?></li>
|
33 |
<ul>
|
34 |
<li><i class="fa fa-check"></i><?php _e( "networks : You can define which social medias to show in the shortcode. You need to enter the networks name in string in comma separated values. If you don't want to choose which social medias to appear in shortcode, you can discard this option.", "accesspress-social-share" ); ?> </li>
|
35 |
-
<li><?php _e( 'Available network parameters are: facebook, twitter,
|
36 |
<li><i class="fa fa-check"></i><?php _e( "share_text: You can add the share text. To use share text use share_text='text to be shared'. If you don't use this parameter the share text will not appear in shortcode.", "accesspress-social-share" ); ?></li>
|
37 |
<li><i class="fa fa-check"></i><?php _e( "counter : You can enable or disable the share counter. To enable the share count use counter='1' and to disable it simply don't use counter parameter or use parameter counter = '0'.", "accesspress-social-share" ); ?></li>
|
38 |
<li><i class="fa fa-check"></i><?php _e( "total_counter : You can enable or disable the total share counter. To enable the total share count use total_counter='1' and to disable it simply don't use total_counter parameter or use parameter total_counter = '0'.", "accesspress-social-share" ); ?></li>
|
@@ -49,7 +49,7 @@
|
|
49 |
<li><?php _e( 'Available Parameters', 'accesspress-social-share' ); ?>
|
50 |
<ul>
|
51 |
<li><i class = "fa fa-check"></i><?php _e( "network : You can define which social medias to show total share counts. You need to enter the networks name in string in comma separated values. You need to enter at least one network attribute.", "accesspress-social-share" ); ?></li>
|
52 |
-
<li><?php _e( "Available network parameters are: facebook, twitter,
|
53 |
<li><?php _e( "Example 2.1:", "accesspress-social-share" ); ?> <code>[ apss_count network = 'facebook, pinterest' ]</code></li>
|
54 |
<li><?php _e( "This will show the sum of share counts from facebook and pinterest.", "accesspress-social-shares" ); ?></li>
|
55 |
</ul>
|
32 |
<li><?php _e( 'Available shortcode parameters', 'accesspress-social-share' ); ?></li>
|
33 |
<ul>
|
34 |
<li><i class="fa fa-check"></i><?php _e( "networks : You can define which social medias to show in the shortcode. You need to enter the networks name in string in comma separated values. If you don't want to choose which social medias to appear in shortcode, you can discard this option.", "accesspress-social-share" ); ?> </li>
|
35 |
+
<li><?php _e( 'Available network parameters are: facebook, twitter, pinterest, linkedin, digg, email, print', 'accesspress-social-share' ); ?></li>
|
36 |
<li><i class="fa fa-check"></i><?php _e( "share_text: You can add the share text. To use share text use share_text='text to be shared'. If you don't use this parameter the share text will not appear in shortcode.", "accesspress-social-share" ); ?></li>
|
37 |
<li><i class="fa fa-check"></i><?php _e( "counter : You can enable or disable the share counter. To enable the share count use counter='1' and to disable it simply don't use counter parameter or use parameter counter = '0'.", "accesspress-social-share" ); ?></li>
|
38 |
<li><i class="fa fa-check"></i><?php _e( "total_counter : You can enable or disable the total share counter. To enable the total share count use total_counter='1' and to disable it simply don't use total_counter parameter or use parameter total_counter = '0'.", "accesspress-social-share" ); ?></li>
|
49 |
<li><?php _e( 'Available Parameters', 'accesspress-social-share' ); ?>
|
50 |
<ul>
|
51 |
<li><i class = "fa fa-check"></i><?php _e( "network : You can define which social medias to show total share counts. You need to enter the networks name in string in comma separated values. You need to enter at least one network attribute.", "accesspress-social-share" ); ?></li>
|
52 |
+
<li><?php _e( "Available network parameters are: facebook, twitter, pinterest, linkedin", "accesspress-social-share" ); ?></li>
|
53 |
<li><?php _e( "Example 2.1:", "accesspress-social-share" ); ?> <code>[ apss_count network = 'facebook, pinterest' ]</code></li>
|
54 |
<li><?php _e( "This will show the sum of share counts from facebook and pinterest.", "accesspress-social-shares" ); ?></li>
|
55 |
</ul>
|
inc/backend/main-page.php
CHANGED
@@ -85,7 +85,6 @@
|
|
85 |
$label_array = array(
|
86 |
'facebook' => ' <span class="media-icon"><i class="fa fa-facebook"></i></span> Facebook',
|
87 |
'twitter' => ' <span class="media-icon"><i class="fa fa-twitter"></i></span> Twitter',
|
88 |
-
'google-plus' => '<span class="media-icon"><i class="fa fa-google-plus"></i></span> Google Plus',
|
89 |
'pinterest' => '<span class="media-icon"> <i class="fa fa-pinterest"></i> </span>Pinterest',
|
90 |
'linkedin' => '<span class="media-icon"><i class="fa fa-linkedin"></i></span> Linkedin',
|
91 |
'digg' => '<span class="media-icon"><i class="fa fa-digg"></i></span> Digg',
|
@@ -340,7 +339,7 @@
|
|
340 |
</div>
|
341 |
<br />
|
342 |
<div class="apss_notes_cache_settings">
|
343 |
-
<?php _e( "<b>Note:</b> Please select this option if you have moved your site from HTTP to HTTPS. For Facebook
|
344 |
</div>
|
345 |
</div>
|
346 |
<br />
|
85 |
$label_array = array(
|
86 |
'facebook' => ' <span class="media-icon"><i class="fa fa-facebook"></i></span> Facebook',
|
87 |
'twitter' => ' <span class="media-icon"><i class="fa fa-twitter"></i></span> Twitter',
|
|
|
88 |
'pinterest' => '<span class="media-icon"> <i class="fa fa-pinterest"></i> </span>Pinterest',
|
89 |
'linkedin' => '<span class="media-icon"><i class="fa fa-linkedin"></i></span> Linkedin',
|
90 |
'digg' => '<span class="media-icon"><i class="fa fa-digg"></i></span> Digg',
|
339 |
</div>
|
340 |
<br />
|
341 |
<div class="apss_notes_cache_settings">
|
342 |
+
<?php _e( "<b>Note:</b> Please select this option if you have moved your site from HTTP to HTTPS. For Facebook, The crawler still needs to be able to access the old page, so exempt the crawler's user agent from the redirect and only send an HTTP redirect to non-Facebook crawler clients. If you have done 301 redirect then the old url share counts will be lost.", 'accesspress-social-share' ); ?>
|
343 |
</div>
|
344 |
</div>
|
345 |
<br />
|
inc/frontend/content-filter.php
CHANGED
@@ -140,42 +140,6 @@ foreach ( $options['social_networks'] as $key => $value ) {
|
|
140 |
</div>
|
141 |
<?php
|
142 |
break;
|
143 |
-
|
144 |
-
case 'google-plus':
|
145 |
-
$link = 'https://plus.google.com/share?url=' . $url;
|
146 |
-
$count = $this->get_count( $key, $url );
|
147 |
-
|
148 |
-
if(isset($http_url_checked) && $http_url_checked=='1'){
|
149 |
-
$url_check = parse_url($url);
|
150 |
-
if($url_check['scheme'] == 'https'){
|
151 |
-
$flag=TRUE;
|
152 |
-
}else{
|
153 |
-
$flag=FALSE;
|
154 |
-
}
|
155 |
-
|
156 |
-
if($flag == TRUE){
|
157 |
-
$url1 = APSS_Class:: get_http_url($url);
|
158 |
-
$http_count = APSS_Class:: get_count($key, $url1);
|
159 |
-
if($count != $http_count){
|
160 |
-
$count += $http_count;
|
161 |
-
}else{
|
162 |
-
$count = $count;
|
163 |
-
}
|
164 |
-
}
|
165 |
-
}
|
166 |
-
|
167 |
-
?>
|
168 |
-
<div class='apss-google-plus apss-single-icon'>
|
169 |
-
<a rel='nofollow' <?php if($apss_link_open_option_value == 2){ ?> onclick="apss_open_in_popup_window(event, '<?php echo $link; ?>');" <?php } ?> title="<?php _e( 'Share on Google Plus', 'accesspress-social-share' ); ?>" target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
|
170 |
-
<div class='apss-icon-block clearfix'>
|
171 |
-
<i class='fa fa-google-plus'></i>
|
172 |
-
<span class='apss-social-text'><?php _e( 'Share on Google Plus', 'accesspress-social-share' ); ?></span>
|
173 |
-
<span class='apss-share'><?php _e( 'Share', 'accesspress-social-share' ); ?></span>
|
174 |
-
</div>
|
175 |
-
</a>
|
176 |
-
</div>
|
177 |
-
<?php
|
178 |
-
break;
|
179 |
|
180 |
case 'pinterest':
|
181 |
$count = $this->get_count( $key, $url );
|
140 |
</div>
|
141 |
<?php
|
142 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
|
144 |
case 'pinterest':
|
145 |
$count = $this->get_count( $key, $url );
|
inc/frontend/shortcode.php
CHANGED
@@ -184,45 +184,6 @@ if($show_shortcode_content){
|
|
184 |
<?php
|
185 |
break;
|
186 |
|
187 |
-
//counter available for google plus
|
188 |
-
case 'google-plus':
|
189 |
-
$link = 'https://plus.google.com/share?url=' . $url;
|
190 |
-
$count = $this->get_count( $key, $url );
|
191 |
-
|
192 |
-
////////////////////////////////////////
|
193 |
-
if(isset($http_url_checked) && $http_url_checked=='1'){
|
194 |
-
$url_check = parse_url($url);
|
195 |
-
if($url_check['scheme'] == 'https'){
|
196 |
-
$flag=TRUE;
|
197 |
-
}else{
|
198 |
-
$flag=FALSE;
|
199 |
-
}
|
200 |
-
|
201 |
-
if($flag == TRUE){
|
202 |
-
$url1 = APSS_Class:: get_http_url($url);
|
203 |
-
$http_count = APSS_Class:: get_count($key, $url1);
|
204 |
-
if($count != $http_count){
|
205 |
-
$count += $http_count;
|
206 |
-
}else{
|
207 |
-
$count = $count;
|
208 |
-
}
|
209 |
-
}
|
210 |
-
}
|
211 |
-
|
212 |
-
|
213 |
-
?>
|
214 |
-
<div class='apss-google-plus apss-single-icon'>
|
215 |
-
<a rel='nofollow' <?php if($apss_link_open_option_value == 2){ ?> onclick="apss_open_in_popup_window(event, '<?php echo $link; ?>');" <?php } ?> title='<?php _e( 'Share on Google Plus', 'accesspress-social-share' ); ?>' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
|
216 |
-
<div class='apss-icon-block clearfix'>
|
217 |
-
<i class='fa fa-google-plus'></i>
|
218 |
-
<span class='apss-social-text'><?php _e( 'Share on Google Plus', 'accesspress-social-share' ); ?> </span>
|
219 |
-
<span class='apss-share'><?php _e( 'Share', 'accesspress-social-share' ); ?></span>
|
220 |
-
</div>
|
221 |
-
</a>
|
222 |
-
</div>
|
223 |
-
<?php
|
224 |
-
break;
|
225 |
-
|
226 |
//counter available for pinterest
|
227 |
case 'pinterest':
|
228 |
$count = $this->get_count( $key, $url );
|
184 |
<?php
|
185 |
break;
|
186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
//counter available for pinterest
|
188 |
case 'pinterest':
|
189 |
$count = $this->get_count( $key, $url );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: social share counter, social share, social media share, social network sha
|
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 5.2.1
|
7 |
-
Stable tag: 4.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -13,13 +13,13 @@ Share your site urls in most popular social medias and show share counts on your
|
|
13 |
== Description ==
|
14 |
[Homepage](https://accesspressthemes.com/) | [Documentation](https://accesspressthemes.com/documentation/documentation-plugin-instruction-accesspress-social-share/) | [Support](https://accesspressthemes.com/support) | [Demo](http://demo.accesspressthemes.com/wordpress-plugins/accesspress-social-share/) | [Premium Version](https://accesspressthemes.com/wordpress-plugins/accesspress-social-pro/)
|
15 |
|
16 |
-
<strong>AccessPress Social Share</strong> is a <strong>Free WordPress plugin</strong> to allow anyone easily share website content (page, posts, image, media) on major social media (Facebook, Twitter,
|
17 |
|
18 |
A perfect plugin to make any content on your website social-share-friendly, and increase your social reach dramatically!
|
19 |
|
20 |
You can select the social media profiles you want to activate and select one of the designs from beautifully designed 5 pre available themes.
|
21 |
|
22 |
-
The available social media are: Facebook, Twitter,
|
23 |
|
24 |
Just get it done in a few minutes!
|
25 |
|
@@ -37,7 +37,7 @@ facebook share counts may reset</strong>
|
|
37 |
= Free Features: =
|
38 |
|
39 |
* <strong>Beautifully designed 5 themes to select from.</strong> More available in Pro versoin.
|
40 |
-
* <strong>Major 6 social media included </strong>(Facebook, Twitter,
|
41 |
* <strong>Latest use of APIs to fetch data</strong>
|
42 |
* <strong>Auto updates on all APIs</strong>
|
43 |
* <strong>Option to select which social media profile to show</strong>
|
@@ -60,7 +60,7 @@ facebook share counts may reset</strong>
|
|
60 |
|
61 |
★ Beautifully designed 10 themes to select from.
|
62 |
|
63 |
-
★ Major
|
64 |
LinkedIn, Digg, Delicious, Stumbleupon, Tumblr, Vkontakte, Reddit, Xing,
|
65 |
Weibo and Buffer).
|
66 |
|
@@ -133,7 +133,7 @@ Themes Compatible with the Plugin:
|
|
133 |
|
134 |
== Frequently Asked Questions ==
|
135 |
= What does this plugin do? =
|
136 |
-
This plugin provides the ability to allow anyone easily share website content (page, posts, image, media) on major social media (Facebook, Twitter,
|
137 |
|
138 |
= Will it effect my site's speed? =
|
139 |
No , because we have provided the caching option to store the share count in the database and update within certain period kept in the plugin cache settings section.
|
@@ -157,6 +157,9 @@ Yes. You can use the AccessPress social share by using shortcode anywhere you wa
|
|
157 |
|
158 |
== Changelog ==
|
159 |
|
|
|
|
|
|
|
160 |
= 4.4.5 =
|
161 |
* Bug fix related to Facebook Share Count
|
162 |
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 5.2.1
|
7 |
+
Stable tag: 4.4.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
13 |
== Description ==
|
14 |
[Homepage](https://accesspressthemes.com/) | [Documentation](https://accesspressthemes.com/documentation/documentation-plugin-instruction-accesspress-social-share/) | [Support](https://accesspressthemes.com/support) | [Demo](http://demo.accesspressthemes.com/wordpress-plugins/accesspress-social-share/) | [Premium Version](https://accesspressthemes.com/wordpress-plugins/accesspress-social-pro/)
|
15 |
|
16 |
+
<strong>AccessPress Social Share</strong> is a <strong>Free WordPress plugin</strong> to allow anyone easily share website content (page, posts, image, media) on major social media (Facebook, Twitter, Pinterest, LinkedIn and Digg ) by the use of the latest APIs on your website!
|
17 |
|
18 |
A perfect plugin to make any content on your website social-share-friendly, and increase your social reach dramatically!
|
19 |
|
20 |
You can select the social media profiles you want to activate and select one of the designs from beautifully designed 5 pre available themes.
|
21 |
|
22 |
+
The available social media are: Facebook, Twitter, Pinterest, LinkedIn and Digg. Also there is an option to share it by email or print the page.
|
23 |
|
24 |
Just get it done in a few minutes!
|
25 |
|
37 |
= Free Features: =
|
38 |
|
39 |
* <strong>Beautifully designed 5 themes to select from.</strong> More available in Pro versoin.
|
40 |
+
* <strong>Major 6 social media included </strong>(Facebook, Twitter, Pinterest, LinkedIn and Digg). More available in Pro version.
|
41 |
* <strong>Latest use of APIs to fetch data</strong>
|
42 |
* <strong>Auto updates on all APIs</strong>
|
43 |
* <strong>Option to select which social media profile to show</strong>
|
60 |
|
61 |
★ Beautifully designed 10 themes to select from.
|
62 |
|
63 |
+
★ Major 13 social media included(Facebook, Twitter, Pinterest,
|
64 |
LinkedIn, Digg, Delicious, Stumbleupon, Tumblr, Vkontakte, Reddit, Xing,
|
65 |
Weibo and Buffer).
|
66 |
|
133 |
|
134 |
== Frequently Asked Questions ==
|
135 |
= What does this plugin do? =
|
136 |
+
This plugin provides the ability to allow anyone easily share website content (page, posts, image, media) on major social media (Facebook, Twitter, LinkedIn, Pinterest, Digg ) by the use of the latest APIs on your website!
|
137 |
|
138 |
= Will it effect my site's speed? =
|
139 |
No , because we have provided the caching option to store the share count in the database and update within certain period kept in the plugin cache settings section.
|
157 |
|
158 |
== Changelog ==
|
159 |
|
160 |
+
= 4.4.6 =
|
161 |
+
* Removed Google+ from the plugin
|
162 |
+
|
163 |
= 4.4.5 =
|
164 |
* Bug fix related to Facebook Share Count
|
165 |
|