Social Media Widget - Version 3.0.3

Version Description

  • Various bug fixes
Download this release

Release Info

Developer bmwebproperties
Plugin Icon 128x128 Social Media Widget
Version 3.0.3
Comparing to
See all releases

Code changes from version 3.0.2 to 3.0.3

Files changed (2) hide show
  1. readme.txt +5 -1
  2. social-widget.php +5 -6
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: bmwebproperties
3
  Tags: social media, twitter, facebook, google+, googleplus, myspace, digg, email, rss, reddit, linkedin, orkut, youtube, buzz, social, icons, links, subscribe, follow, follow me, friendfeed, flickr, stumbleupon, vimeo, delicious, meetup, lastfm, foursquare, skype, blogger, wordpress, yelp, soundcloud, digital tunes, tumblr, hyves, etsy, tungle, plancast, slideshare, deviantart, better business bureau, merchant circle, asmallworld, live365, ping, itunes, picasa, steam, google talk, pandora, hulu, ebay, flixster, imdb, bandcamp, ustream, pinterest
4
  Requires at least: 2.9.2
5
  Tested up to: 3.5
6
- Stable tag: 3.0.2
7
 
8
  Adds links to all of your social media and sharing site profiles. Tons of icons come in 3 sizes, 4 icon styles, and 4 animations.
9
 
@@ -169,6 +169,10 @@ Please add a post on the Wordpress.org support forums with the plugin tagged.
169
 
170
  == Changelog ==
171
 
 
 
 
 
172
  = 3.0.2 =
173
 
174
  * Bug fixes
3
  Tags: social media, twitter, facebook, google+, googleplus, myspace, digg, email, rss, reddit, linkedin, orkut, youtube, buzz, social, icons, links, subscribe, follow, follow me, friendfeed, flickr, stumbleupon, vimeo, delicious, meetup, lastfm, foursquare, skype, blogger, wordpress, yelp, soundcloud, digital tunes, tumblr, hyves, etsy, tungle, plancast, slideshare, deviantart, better business bureau, merchant circle, asmallworld, live365, ping, itunes, picasa, steam, google talk, pandora, hulu, ebay, flixster, imdb, bandcamp, ustream, pinterest
4
  Requires at least: 2.9.2
5
  Tested up to: 3.5
6
+ Stable tag: 3.0.3
7
 
8
  Adds links to all of your social media and sharing site profiles. Tons of icons come in 3 sizes, 4 icon styles, and 4 animations.
9
 
169
 
170
  == Changelog ==
171
 
172
+ = 3.0.3 =
173
+
174
+ * Various bug fixes
175
+
176
  = 3.0.2 =
177
 
178
  * Bug fixes
social-widget.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Social Media Widget
4
  * Plugin URI: http://wordpress.org/extend/plugins/social-media-widget/
5
  * Description: Adds links to all of your social media and sharing site profiles. Tons of icons come in 3 sizes, 4 icon styles, and 4 animations.
6
- * Version: 3.0.2
7
  * Author: Blink Web Effects
8
  * Author URI: http://blinkwebeffects.com/
9
  **/
@@ -406,7 +406,7 @@ class Social_Widget extends WP_Widget {
406
  }
407
  */
408
  $html .= '<a href="' . $slug . '" ' . $this->nofollow . ' ' . $this->newtab.'>';
409
- $html .= '<img width="' . $this->icon_size .'" height="' . $this->icon_size . '" src="' . $img . '" alt="' . $this->imgcaption . ' ' . $title . '" title="' . $this->imgcaption .' ' . $title . '" ' . ($this->animation == 'fade' || $this->animation == 'combo' ? 'style="opacity: ' . $this->icon_opacity . '; -moz-opacity: ' . $this->icon_opacity . ';"' : '') . 'class="' . $this->animation . '" />';
410
  $html .= '</a>';
411
  /*
412
  if ($this->display_titles == 'right') {
@@ -486,7 +486,7 @@ class Social_Widget extends WP_Widget {
486
  'alignment' => 'left',
487
  // 'display_titles' => 'no',
488
  'icons_per_row' => 'auto',
489
- 'customiconsurl' => __('http://wwww.yoursite.com/wordpress/wp-content/your-icons', 'smw'),
490
  'customiconspath' => __('/path/to/your-icons', 'smw'),
491
  );
492
  foreach ($this->networks as $slug => $ndata) {
@@ -505,8 +505,7 @@ class Social_Widget extends WP_Widget {
505
 
506
  $instance = wp_parse_args( (array) $instance, $defaults ); ?>
507
  <p>
508
- <b><span style="background-color: #ffff00"><em>Note:</span> Make sure you include FULL URL (i.e. http://www.example.com)<br />
509
- If you do not want an icon to be visible, simply leave the input box blank.</em></b>
510
  </p>
511
 
512
  <div>
@@ -882,7 +881,7 @@ class Social_Widget extends WP_Widget {
882
 
883
  </div>
884
 
885
- <p><em>If you selected "Custom Icon Pack" from the beginning of this form, input the URL and path to those icons in the following boxes. See the README.txt for more information on how to use this.</em><br />
886
  </p>
887
 
888
  <!-- Custom Icon Pack URL: Text Input -->
3
  * Plugin Name: Social Media Widget
4
  * Plugin URI: http://wordpress.org/extend/plugins/social-media-widget/
5
  * Description: Adds links to all of your social media and sharing site profiles. Tons of icons come in 3 sizes, 4 icon styles, and 4 animations.
6
+ * Version: 3.0.3
7
  * Author: Blink Web Effects
8
  * Author URI: http://blinkwebeffects.com/
9
  **/
406
  }
407
  */
408
  $html .= '<a href="' . $slug . '" ' . $this->nofollow . ' ' . $this->newtab.'>';
409
+ $html .= '<img width="' . $this->icon_size .'" height="' . $this->icon_size . '" src="' . $img . '" alt="' . $this->imgcaption . ' ' . $title . '" title="' . $this->imgcaption .' ' . $title . '" ' . ($this->animation == 'fade' || $this->animation == 'combo' ? 'style="opacity: ' . $this->icon_opacity . '; -moz-opacity: ' . $this->icon_opacity . ';"' : '') . ' class="' . $this->animation . '" />';
410
  $html .= '</a>';
411
  /*
412
  if ($this->display_titles == 'right') {
486
  'alignment' => 'left',
487
  // 'display_titles' => 'no',
488
  'icons_per_row' => 'auto',
489
+ 'customiconsurl' => __('http://www.yoursite.com/wordpress/wp-content/your-icons', 'smw'),
490
  'customiconspath' => __('/path/to/your-icons', 'smw'),
491
  );
492
  foreach ($this->networks as $slug => $ndata) {
505
 
506
  $instance = wp_parse_args( (array) $instance, $defaults ); ?>
507
  <p>
508
+ <em>Note: Make sure you include FULL URL (i.e. http://www.example.com) </em>
 
509
  </p>
510
 
511
  <div>
881
 
882
  </div>
883
 
884
+ <p><em>If you selected "Custom Icon Pack" in 'General Settings', input the URL and path to those icons in the following boxes. See the README.txt for more information on how to use this.</em><br />
885
  </p>
886
 
887
  <!-- Custom Icon Pack URL: Text Input -->