Version Description
- Done the bug fixing for the backend options.
Download this release
Release Info
Developer | Access Keys |
Plugin | Social Share WordPress Plugin – AccessPress Social Share |
Version | 4.0.9 |
Comparing to | |
See all releases |
Code changes from version 4.0.8 to 4.0.9
- accesspress-social-share.php +2 -2
- inc/backend/activation.php +1 -1
- inc/backend/save-settings.php +3 -3
- readme.txt +5 -2
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.9
|
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.9' );
|
34 |
}
|
35 |
|
36 |
if ( !defined( 'APSS_TEXT_DOMAIN' ) ) {
|
inc/backend/activation.php
CHANGED
@@ -28,7 +28,7 @@ $apss_share_settings['total_counter_enable_options'] = '0';
|
|
28 |
$apss_share_settings['cache_period'] = '24';
|
29 |
$apss_share_settings['apss_social_counts_transients'] = array();
|
30 |
$apss_share_settings['dialog_box_options'] = '1';
|
31 |
-
$apss_share_settings['footer_javascript'] = '1';
|
32 |
$apss_share_settings['apss_email_subject'] = 'Please visit this link %%url%%';
|
33 |
$apss_share_settings['apss_email_body'] = 'Hey Buddy!, I found this information for you: "%%title%%". Here is the website link: %%permalink%%. Thank you.';
|
34 |
update_option( APSS_SETTING_NAME, $apss_share_settings );
|
28 |
$apss_share_settings['cache_period'] = '24';
|
29 |
$apss_share_settings['apss_social_counts_transients'] = array();
|
30 |
$apss_share_settings['dialog_box_options'] = '1';
|
31 |
+
// $apss_share_settings['footer_javascript'] = '1';
|
32 |
$apss_share_settings['apss_email_subject'] = 'Please visit this link %%url%%';
|
33 |
$apss_share_settings['apss_email_body'] = 'Hey Buddy!, I found this information for you: "%%title%%". Here is the website link: %%permalink%%. Thank you.';
|
34 |
update_option( APSS_SETTING_NAME, $apss_share_settings );
|
inc/backend/save-settings.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
$apss_share_settings = array();
|
4 |
$share_options = array();
|
5 |
if ( isset( $_POST['apss_share_settings']['share_options'] ) ) {
|
@@ -27,7 +27,7 @@ $apss_share_settings['twitter_counter_api'] = $_POST['apss_share_settings']['
|
|
27 |
$apss_share_settings['total_counter_enable_options'] = $_POST['apss_share_settings']['total_counter_enable_options'];
|
28 |
$apss_share_settings['cache_period'] = is_numeric( $_POST['apss_share_settings']['cache_settings'] ) ? $_POST['apss_share_settings']['cache_settings'] : '24';
|
29 |
$apss_share_settings['dialog_box_options'] = $_POST['apss_share_settings']['dialog_box_options'];
|
30 |
-
$apss_share_settings['footer_javascript'] = $_POST['apss_share_settings']['footer_javascript'];
|
31 |
$apss_share_settings['apss_email_subject'] = stripslashes_deep( $_POST['apss_share_settings']['apss_email_subject'] );
|
32 |
$apss_share_settings['apss_email_body'] = stripslashes_deep( $_POST['apss_share_settings']['apss_email_body'] );
|
33 |
if ( !isset( $apss_share_settings['apss_social_counts_transients'] ) ) {
|
1 |
+
<?php
|
2 |
+
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
|
3 |
$apss_share_settings = array();
|
4 |
$share_options = array();
|
5 |
if ( isset( $_POST['apss_share_settings']['share_options'] ) ) {
|
27 |
$apss_share_settings['total_counter_enable_options'] = $_POST['apss_share_settings']['total_counter_enable_options'];
|
28 |
$apss_share_settings['cache_period'] = is_numeric( $_POST['apss_share_settings']['cache_settings'] ) ? $_POST['apss_share_settings']['cache_settings'] : '24';
|
29 |
$apss_share_settings['dialog_box_options'] = $_POST['apss_share_settings']['dialog_box_options'];
|
30 |
+
// $apss_share_settings['footer_javascript'] = $_POST['apss_share_settings']['footer_javascript'];
|
31 |
$apss_share_settings['apss_email_subject'] = stripslashes_deep( $_POST['apss_share_settings']['apss_email_subject'] );
|
32 |
$apss_share_settings['apss_email_body'] = stripslashes_deep( $_POST['apss_share_settings']['apss_email_body'] );
|
33 |
if ( !isset( $apss_share_settings['apss_social_counts_transients'] ) ) {
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Access Keys
|
|
3 |
Tags: social share counter, social share, social media share, social network share, social media, social network, share counter, social share count, social url share, social icons
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.
|
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.8 =
|
135 |
* Done the bug fixing for the issue related to the_content filter hook for Yoast SEO plugin.
|
136 |
|
3 |
Tags: social share counter, social share, social media share, social network share, social media, social network, share counter, social share count, social url share, social icons
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.5
|
7 |
+
Stable tag: 4.0.9
|
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.9 =
|
135 |
+
* Done the bug fixing for the backend options.
|
136 |
+
|
137 |
= 4.0.8 =
|
138 |
* Done the bug fixing for the issue related to the_content filter hook for Yoast SEO plugin.
|
139 |
|