Social Share Icons & Social Share Buttons - Version 3.2.2

Version Description

  • Update: Feedback system updated
Download this release

Release Info

Developer socialdude
Plugin Icon 128x128 Social Share Icons & Social Share Buttons
Version 3.2.2
Comparing to
See all releases

Code changes from version 3.2.1 to 3.2.2

analyst/sdk_resolver.php CHANGED
@@ -24,7 +24,7 @@ if (!function_exists('analyst_resolve_sdk')) {
24
  array_push($plugins, plugin_basename($thisPluginPath));
25
  }
26
 
27
- $pluginsFolder = ABSPATH . 'wp-content/plugins';
28
 
29
  $possibleSDKs = array_map(function ($path) use ($pluginsFolder) {
30
  $sdkFolder = sprintf('%s/%s/analyst/', $pluginsFolder, dirname($path));
24
  array_push($plugins, plugin_basename($thisPluginPath));
25
  }
26
 
27
+ $pluginsFolder = WP_PLUGIN_DIR;
28
 
29
  $possibleSDKs = array_map(function ($path) use ($pluginsFolder) {
30
  $sdkFolder = sprintf('%s/%s/analyst/', $pluginsFolder, dirname($path));
analyst/src/Account/Account.php CHANGED
@@ -232,8 +232,6 @@ class Account implements TrackerContract
232
  $this->setIsInstalled(true);
233
 
234
  AccountDataFactory::syncData();
235
-
236
- wp_send_json_success();
237
  }
238
 
239
  /**
232
  $this->setIsInstalled(true);
233
 
234
  AccountDataFactory::syncData();
 
 
235
  }
236
 
237
  /**
analyst/src/Mutator.php CHANGED
@@ -84,8 +84,8 @@ class Mutator
84
  public function registerAssets()
85
  {
86
  add_action('admin_enqueue_scripts', function () {
87
- wp_enqueue_style('custom', analyst_assets_url('/css/customize.css'));
88
- wp_enqueue_script('custom', analyst_assets_url('/js/customize.js'));
89
  });
90
  }
91
 
84
  public function registerAssets()
85
  {
86
  add_action('admin_enqueue_scripts', function () {
87
+ wp_enqueue_style('analyst_custom', analyst_assets_url('/css/customize.css'));
88
+ wp_enqueue_script('analyst_custom', analyst_assets_url('/js/customize.js'));
89
  });
90
  }
91
 
analyst/version.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  return array(
4
  // The sdk version
5
- 'sdk' => '1.3.23',
6
 
7
  // Minimum supported WordPress version
8
  'wp' => '4.7',
2
 
3
  return array(
4
  // The sdk version
5
+ 'sdk' => '1.3.26',
6
 
7
  // Minimum supported WordPress version
8
  'wp' => '4.7',
libs/sfsi_install_uninstall.php CHANGED
@@ -12,7 +12,7 @@ function sfsi_plus_update_plugin()
12
  }
13
 
14
  //Install version
15
- update_option("sfsi_plus_pluginVersion", "3.21");
16
 
17
  if(!get_option('sfsi_plus_serverphpVersionnotification'))
18
  {
12
  }
13
 
14
  //Install version
15
+ update_option("sfsi_plus_pluginVersion", "3.22");
16
 
17
  if(!get_option('sfsi_plus_serverphpVersionnotification'))
18
  {
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: socialsharepro
3
  Tags: Share, sharing, share buttons, share button, share social media, share icons, social buttons, sharing buttons, sharing icons, social media icons, social share, social sharing
4
  Requires at least: 3.0
5
  Tested up to: 5.2
6
- Stable tag: 3.2.1
7
  License: GPLv2
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -446,6 +446,9 @@ The premium plugin offrs many more social buttons from other social media platfo
446
 
447
 
448
  == Changelog ==
 
 
 
449
  = 3.2.1 =
450
  * Update: Feedback system updated
451
 
@@ -901,5 +904,5 @@ The premium plugin offrs many more social buttons from other social media platfo
901
 
902
  == Upgrade Notice ==
903
 
904
- = 3.2.1 =
905
  * Please update
3
  Tags: Share, sharing, share buttons, share button, share social media, share icons, social buttons, sharing buttons, sharing icons, social media icons, social share, social sharing
4
  Requires at least: 3.0
5
  Tested up to: 5.2
6
+ Stable tag: 3.2.2
7
  License: GPLv2
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
446
 
447
 
448
  == Changelog ==
449
+ = 3.2.2 =
450
+ * Update: Feedback system updated
451
+
452
  = 3.2.1 =
453
  * Update: Feedback system updated
454
 
904
 
905
  == Upgrade Notice ==
906
 
907
+ = 3.2.2 =
908
  * Please update
ultimate_social_media_icons.php CHANGED
@@ -7,7 +7,7 @@ Author: social share pro
7
  Text Domain: ultimate-social-media-plus
8
  Domain Path: /languages
9
  Author URI: http://socialshare.pro/
10
- Version: 3.2.1
11
  License: GPLv2
12
  */
13
 
@@ -111,7 +111,7 @@ register_deactivation_hook(__FILE__, 'sfsi_plus_deactivate_plugin');
111
  //register_uninstall_hook(__FILE__, 'sfsi_plus_Unistall_plugin');
112
 
113
  /*Plugin version setup*/
114
- if (!get_option('sfsi_plus_pluginVersion') || get_option('sfsi_plus_pluginVersion') < 3.21) {
115
  add_action("init", "sfsi_plus_update_plugin");
116
  }
117
 
7
  Text Domain: ultimate-social-media-plus
8
  Domain Path: /languages
9
  Author URI: http://socialshare.pro/
10
+ Version: 3.2.2
11
  License: GPLv2
12
  */
13
 
111
  //register_uninstall_hook(__FILE__, 'sfsi_plus_Unistall_plugin');
112
 
113
  /*Plugin version setup*/
114
+ if (!get_option('sfsi_plus_pluginVersion') || get_option('sfsi_plus_pluginVersion') < 3.22) {
115
  add_action("init", "sfsi_plus_update_plugin");
116
  }
117