Social Sharing Toolkit - Version 2.1.3

Version Description

Please update to version 2.1.3 to fix an issue with the loading of stylesheets.

Download this release

Release Info

Developer MarijnRongen
Plugin Icon wp plugin Social Sharing Toolkit
Version 2.1.3
Comparing to
See all releases

Code changes from version 2.1.2 to 2.1.3

Files changed (2) hide show
  1. readme.txt +8 -1
  2. social_sharing_toolkit.php +3 -3
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=P8ZVN
4
  Tags: Facebook, Like, LinkedIn, Share, Google, Plus, +1, Pinterest, Google+, Twitter, Tweet, Buffer, Follow, StumbleUpon, Stumble, Tumblr, Delicious, Digg, Reddit, Myspace, Hyves, YouTube, Flickr, 500px, Picasa, deaviantART, App.net, mail, RSS, feed, connect, recommend, social, sharing, widget, shortcode, page, post, button, counter, icon, bitly, Open Graph
5
  Requires at least: 3.0
6
  Tested up to: 3.5.1
7
- Stable tag: 2.1.2
8
  License: GPLv2 or later
9
 
10
  Easy sharing and connecting on social networks. Display on posts or use widgets or shortcode. Also Twitter name/hashtag to link converter.
@@ -170,6 +170,10 @@ Upload the Social Sharing Toolkit plugin to the `/wp-content/plugins/` folder on
170
 
171
  == Upgrade Notice ==
172
 
 
 
 
 
173
  = 2.1.2 =
174
 
175
  Please update to version 2.1.2 immediately for several crucial fixes.
@@ -239,6 +243,9 @@ Please update to version 1.0.1 to prevent an unexpected printing of the page tit
239
 
240
  == Changelog ==
241
 
 
 
 
242
  = 2.1.2 =
243
  * Several minor fixes
244
  * Added url and title attribute to shortcode function
4
  Tags: Facebook, Like, LinkedIn, Share, Google, Plus, +1, Pinterest, Google+, Twitter, Tweet, Buffer, Follow, StumbleUpon, Stumble, Tumblr, Delicious, Digg, Reddit, Myspace, Hyves, YouTube, Flickr, 500px, Picasa, deaviantART, App.net, mail, RSS, feed, connect, recommend, social, sharing, widget, shortcode, page, post, button, counter, icon, bitly, Open Graph
5
  Requires at least: 3.0
6
  Tested up to: 3.5.1
7
+ Stable tag: 2.1.3
8
  License: GPLv2 or later
9
 
10
  Easy sharing and connecting on social networks. Display on posts or use widgets or shortcode. Also Twitter name/hashtag to link converter.
170
 
171
  == Upgrade Notice ==
172
 
173
+ = 2.1.3 =
174
+
175
+ Please update to version 2.1.3 to fix an issue with the loading of stylesheets.
176
+
177
  = 2.1.2 =
178
 
179
  Please update to version 2.1.2 immediately for several crucial fixes.
243
 
244
  == Changelog ==
245
 
246
+ = 2.1.3 =
247
+ * Minor fix involving the correct loading of stylesheets
248
+
249
  = 2.1.2 =
250
  * Several minor fixes
251
  * Added url and title attribute to shortcode function
social_sharing_toolkit.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Social Sharing Toolkit
4
  Plugin URI: http://www.active-bits.nl/support/social-sharing-toolkit/
5
  Description: This plugin enables sharing of your content via popular social networks and can also convert Twitter names and hashtags to links. Easy & configurable.
6
- Version: 2.1.2
7
  Author: Marijn Rongen
8
  Author URI: http://www.active-bits.nl
9
  */
@@ -932,8 +932,8 @@ if ($MR_Social_Sharing_Toolkit->should_share_content()) {
932
  add_filter('the_content', array($MR_Social_Sharing_Toolkit, 'share'));
933
  }
934
  add_shortcode('social_share', array($MR_Social_Sharing_Toolkit, 'share_shortcode'), 15);
935
- add_action('wp_enqueue_styles', array($MR_Social_Sharing_Toolkit, 'prepare_styles'), 50);
936
- add_action('wp_enqueue_scripts', array($MR_Social_Sharing_Toolkit, 'prepare_scripts'), 50);
937
  include 'includes/share.widget.php';
938
  include 'includes/follow.widget.php';
939
  ?>
3
  Plugin Name: Social Sharing Toolkit
4
  Plugin URI: http://www.active-bits.nl/support/social-sharing-toolkit/
5
  Description: This plugin enables sharing of your content via popular social networks and can also convert Twitter names and hashtags to links. Easy & configurable.
6
+ Version: 2.1.3
7
  Author: Marijn Rongen
8
  Author URI: http://www.active-bits.nl
9
  */
932
  add_filter('the_content', array($MR_Social_Sharing_Toolkit, 'share'));
933
  }
934
  add_shortcode('social_share', array($MR_Social_Sharing_Toolkit, 'share_shortcode'), 15);
935
+ add_action('wp_print_styles', array($MR_Social_Sharing_Toolkit, 'prepare_styles'), 50);
936
+ add_action('wp_print_scripts', array($MR_Social_Sharing_Toolkit, 'prepare_scripts'), 50);
937
  include 'includes/share.widget.php';
938
  include 'includes/follow.widget.php';
939
  ?>