WordPress Social Sharing Plugin – Sassy Social Share - Version 3.3.30

Version Description

[16 November 2021] = * [Bugfix] PHP warning was being displayed on updating the plugin if custom logo color was being used in the Theme Selection section at the plugin configuration page

Download this release

Release Info

Developer Heateor
Plugin Icon 128x128 WordPress Social Sharing Plugin – Sassy Social Share
Version 3.3.30
Comparing to
See all releases

Code changes from version 3.3.29 to 3.3.30

admin/class-sassy-social-share-admin.php CHANGED
@@ -748,19 +748,6 @@ class Sassy_Social_Share_Admin {
748
 
749
  $current_version = get_option( 'heateor_sss_version' );
750
  if ( $current_version != $this->version ) {
751
- if ( $this->options['horizontal_font_color_default'] ) {
752
- heateor_sss_update_svg_css( $this->options['horizontal_font_color_default'], 'sassy-social-share-default-svg-horizontal' );
753
- }
754
- if ( $this->options['horizontal_font_color_hover'] ) {
755
- heateor_sss_update_svg_css( $this->options['horizontal_font_color_hover'], 'sassy-social-share-hover-svg-horizontal' );
756
- }
757
- if ( $this->options['vertical_font_color_default'] ) {
758
- heateor_sss_update_svg_css( $this->options['vertical_font_color_default'], 'sassy-social-share-default-svg-vertical' );
759
- }
760
- if ( $this->options['vertical_font_color_hover'] ) {
761
- heateor_sss_update_svg_css( $this->options['vertical_font_color_hover'], 'sassy-social-share-hover-svg-vertical' );
762
- }
763
-
764
  if ( version_compare( '3.3.9', $current_version ) > 0 ) {
765
  $this->options['bitly_access_token'] = '';
766
  update_option( 'heateor_sss', $this->options );
748
 
749
  $current_version = get_option( 'heateor_sss_version' );
750
  if ( $current_version != $this->version ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
751
  if ( version_compare( '3.3.9', $current_version ) > 0 ) {
752
  $this->options['bitly_access_token'] = '';
753
  update_option( 'heateor_sss', $this->options );
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
4
  Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, whatsapp share, line share, gab share, gab, parler share, gettr, gettr share, mewe share, mewe
5
  Requires at least: 2.5.0
6
  Tested up to: 5.8.2
7
- Stable tag: 3.3.29
8
  License: GPLv2 or later
9
 
10
  Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, Whatsapp, Parler, Gab, Gettr and over 100 more.
@@ -123,6 +123,9 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
123
  4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
124
 
125
  == Changelog ==
 
 
 
126
  = 3.3.29 [16 November 2021] =
127
  * [Bugfix] Fixed Gmail social share icon
128
  * [Bugfix] Background color of Instagram in the social media follow widget was not changing to multi-colored after changing from the Miscellaneous section
@@ -1093,4 +1096,7 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
1093
  * [Bugfix] Fixed Gmail social share icon
1094
  * [Bugfix] Background color of Instagram in the social media follow widget was not changing to multi-colored after changing from the Miscellaneous section
1095
  * [Improvement] Improved logo of WordPress social share icon
1096
- * [Improvement] Performance improvement
 
 
 
4
  Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, whatsapp share, line share, gab share, gab, parler share, gettr, gettr share, mewe share, mewe
5
  Requires at least: 2.5.0
6
  Tested up to: 5.8.2
7
+ Stable tag: 3.3.30
8
  License: GPLv2 or later
9
 
10
  Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, Whatsapp, Parler, Gab, Gettr and over 100 more.
123
  4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
124
 
125
  == Changelog ==
126
+ = 3.3.30 [16 November 2021] =
127
+ * [Bugfix] PHP warning was being displayed on updating the plugin if custom logo color was being used in the Theme Selection section at the plugin configuration page
128
+
129
  = 3.3.29 [16 November 2021] =
130
  * [Bugfix] Fixed Gmail social share icon
131
  * [Bugfix] Background color of Instagram in the social media follow widget was not changing to multi-colored after changing from the Miscellaneous section
1096
  * [Bugfix] Fixed Gmail social share icon
1097
  * [Bugfix] Background color of Instagram in the social media follow widget was not changing to multi-colored after changing from the Miscellaneous section
1098
  * [Improvement] Improved logo of WordPress social share icon
1099
+ * [Improvement] Performance improvement
1100
+
1101
+ = 3.3.30 [16 November 2021] =
1102
+ * [Bugfix] PHP warning was being displayed on updating the plugin if custom logo color was being used in the Theme Selection section at the plugin configuration page
sassy-social-share.php CHANGED
@@ -6,7 +6,7 @@
6
  * Plugin Name: Sassy Social Share
7
  * Plugin URI: https://www.heateor.com
8
  * Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more
9
- * Version: 3.3.29
10
  * Author: Team Heateor
11
  * Author URI: https://www.heateor.com
12
  * Text Domain: sassy-social-share
@@ -20,31 +20,12 @@ if ( ! defined( 'WPINC' ) ) {
20
  die;
21
  }
22
 
23
- define( 'HEATEOR_SSS_VERSION', '3.3.29' );
24
  define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
25
 
26
  // plugin core class object
27
  $heateor_sss = null;
28
 
29
- /**
30
- * Updates SVG CSS file according to chosen logo color
31
- */
32
- function heateor_sss_update_svg_css( $color_to_be_replaced, $css_file ) {
33
- $path = plugin_dir_url( __FILE__ ) . 'admin/css/' . $css_file . '.css';
34
- try {
35
- $content = file( $path );
36
- if ( $content !== false ) {
37
- $handle = fopen( dirname( __FILE__ ) . '/admin/css/' . $css_file . '.css', 'w' );
38
- if ( $handle !== false ) {
39
- foreach ( $content as $value ) {
40
- fwrite( $handle, str_replace( '%23fff', str_replace( '#', '%23', $color_to_be_replaced ), $value ) );
41
- }
42
- fclose( $handle );
43
- }
44
- }
45
- } catch ( Exception $e ) { }
46
- }
47
-
48
  /**
49
  * Save default plugin options
50
  */
6
  * Plugin Name: Sassy Social Share
7
  * Plugin URI: https://www.heateor.com
8
  * Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more
9
+ * Version: 3.3.30
10
  * Author: Team Heateor
11
  * Author URI: https://www.heateor.com
12
  * Text Domain: sassy-social-share
20
  die;
21
  }
22
 
23
+ define( 'HEATEOR_SSS_VERSION', '3.3.30' );
24
  define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
25
 
26
  // plugin core class object
27
  $heateor_sss = null;
28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  /**
30
  * Save default plugin options
31
  */