Version Description
- Removal of the twitter share count as twitter depreceate the url share count.
Download this release
Release Info
Developer | Access Keys |
Plugin | Social Share WordPress Plugin – AccessPress Social Share |
Version | 4.0.1 |
Comparing to | |
See all releases |
Code changes from version 4.0.0 to 4.0.1
- accesspress-social-share.php +2 -2
- inc/frontend/content-filter.php +2 -2
- inc/frontend/shortcode.php +2 -2
- readme.txt +4 -1
accesspress-social-share.php
CHANGED
@@ -4,7 +4,7 @@ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
|
|
4 |
Plugin name: AccessPress Social Share
|
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.0.
|
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.0.
|
34 |
}
|
35 |
|
36 |
if ( !defined( 'APSS_TEXT_DOMAIN' ) ) {
|
4 |
Plugin name: AccessPress Social Share
|
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.0.1
|
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.0.1' );
|
34 |
}
|
35 |
|
36 |
if ( !defined( 'APSS_TEXT_DOMAIN' ) ) {
|
inc/frontend/content-filter.php
CHANGED
@@ -63,9 +63,9 @@ foreach ( $options['social_networks'] as $key => $value ) {
|
|
63 |
<i class='fa fa-twitter'></i>
|
64 |
<span class='apss-social-text'><?php _e( 'Share on Twitter', 'accesspress-social-share' ); ?></span><span class='apss-share'><?php _e( 'Tweet', 'accesspress-social-share' ); ?></span>
|
65 |
</div>
|
66 |
-
<?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
|
67 |
<div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
|
68 |
-
<?php } ?>
|
69 |
</a>
|
70 |
</div>
|
71 |
<?php
|
63 |
<i class='fa fa-twitter'></i>
|
64 |
<span class='apss-social-text'><?php _e( 'Share on Twitter', 'accesspress-social-share' ); ?></span><span class='apss-share'><?php _e( 'Tweet', 'accesspress-social-share' ); ?></span>
|
65 |
</div>
|
66 |
+
<?php /* if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
|
67 |
<div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
|
68 |
+
<?php } */ ?>
|
69 |
</a>
|
70 |
</div>
|
71 |
<?php
|
inc/frontend/shortcode.php
CHANGED
@@ -90,9 +90,9 @@ if ( strlen( $content ) >= 100 ) {
|
|
90 |
<i class='fa fa-twitter'></i>
|
91 |
<span class='apss-social-text'><?php _e( 'Share on Twitter', 'accesspress-social-share' ); ?></span><span class='apss-share'><?php _e( 'Tweet', 'accesspress-social-share' ); ?></span>
|
92 |
</div>
|
93 |
-
<?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
|
94 |
<div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
|
95 |
-
<?php } ?>
|
96 |
</a>
|
97 |
</div>
|
98 |
<?php
|
90 |
<i class='fa fa-twitter'></i>
|
91 |
<span class='apss-social-text'><?php _e( 'Share on Twitter', 'accesspress-social-share' ); ?></span><span class='apss-share'><?php _e( 'Tweet', 'accesspress-social-share' ); ?></span>
|
92 |
</div>
|
93 |
+
<?php /* if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
|
94 |
<div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
|
95 |
+
<?php } */ ?>
|
96 |
</a>
|
97 |
</div>
|
98 |
<?php
|
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: 4.3
|
7 |
-
Stable tag: 4.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -131,6 +131,9 @@ Yes. You can use the AccessPress social share by using shortcode anywhere you wa
|
|
131 |
6. Backend Miscellaneous Settings Section
|
132 |
|
133 |
== Changelog ==
|
|
|
|
|
|
|
134 |
= 4.0.0 =
|
135 |
* Changed the priority level of the_content filter to make the plugin compactible with Visual Composer.
|
136 |
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 4.0.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
131 |
6. Backend Miscellaneous Settings Section
|
132 |
|
133 |
== Changelog ==
|
134 |
+
= 4.0.1 =
|
135 |
+
* Removal of the twitter share count as twitter depreceate the url share count.
|
136 |
+
|
137 |
= 4.0.0 =
|
138 |
* Changed the priority level of the_content filter to make the plugin compactible with Visual Composer.
|
139 |
|