Social Share WordPress Plugin – AccessPress Social Share - Version 1.1.9

Version Description

  • Fixed the bug for saving settings of the share options for backend.
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 Social Share WordPress Plugin – AccessPress Social Share
Version 1.1.9
Comparing to
See all releases

Code changes from version 1.1.8 to 1.1.9

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: 1.1.8
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
  Text Domain:apss-share
@@ -30,7 +30,7 @@ if( !defined( 'APSS_LANG_DIR' ) ) {
30
  }
31
 
32
  if( !defined( 'APSS_VERSION' ) ) {
33
- define( 'APSS_VERSION', '1.1.8' );
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: 1.1.9
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
  Text Domain:apss-share
30
  }
31
 
32
  if( !defined( 'APSS_VERSION' ) ) {
33
+ define( 'APSS_VERSION', '1.1.9' );
34
  }
35
 
36
  if(!defined('APSS_TEXT_DOMAIN')){
css/frontend.css CHANGED
@@ -52,6 +52,7 @@ text-align: center;
52
  ///////////////////////////////
53
  */
54
 
 
55
  /***********************************theme1 css********************************************************/
56
 
57
  .apss-theme-1 .apss-social-share {
@@ -1004,6 +1005,8 @@ text-align: center;
1004
 
1005
 
1006
  /************************************************responsive*************************************************************/
 
 
1007
  @media screen and (max-width:768px){
1008
 
1009
  .apss-theme-3 .apss-single-icon {
@@ -1019,6 +1022,8 @@ text-align: center;
1019
  width: 100%;
1020
  clear: both;
1021
  }
 
1022
  }
1023
 
1024
 
 
52
  ///////////////////////////////
53
  */
54
 
55
+
56
  /***********************************theme1 css********************************************************/
57
 
58
  .apss-theme-1 .apss-social-share {
1005
 
1006
 
1007
  /************************************************responsive*************************************************************/
1008
+
1009
+
1010
  @media screen and (max-width:768px){
1011
 
1012
  .apss-theme-3 .apss-single-icon {
1022
  width: 100%;
1023
  clear: both;
1024
  }
1025
+
1026
  }
1027
 
1028
 
1029
+
images/Thumbs.db CHANGED
Binary file
inc/backend/save-settings.php CHANGED
@@ -3,8 +3,11 @@
3
  $apss_share_settings=array();
4
  if( $_POST['action']=='apss_save_options' ){
5
  $share_options = array();
6
- foreach ( $_POST['apss_share_settings']['share_options'] as $key=>$value ){
7
- $share_options[]=$value;
 
 
 
8
  }
9
 
10
  $apss_share_settings['share_options']=$share_options;
3
  $apss_share_settings=array();
4
  if( $_POST['action']=='apss_save_options' ){
5
  $share_options = array();
6
+ if(isset($_POST['apss_share_settings'])){
7
+
8
+ foreach ( $_POST['apss_share_settings']['share_options'] as $key=>$value ){
9
+ $share_options[]=$value;
10
+ }
11
  }
12
 
13
  $apss_share_settings['share_options']=$share_options;
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.1
7
- Stable tag: 1.1.8
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
  = 1.1.8 =
135
  * Done the bug fixing for the dispaly of the share icons for theme 3.
136
  * Done some text changes for how to use section and about section.
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.2
7
+ Stable tag: 1.1.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
+ = 1.1.9 =
135
+ * Fixed the bug for saving settings of the share options for backend.
136
+
137
  = 1.1.8 =
138
  * Done the bug fixing for the dispaly of the share icons for theme 3.
139
  * Done some text changes for how to use section and about section.