Version Description
Download this release
Release Info
Developer | brianfreytag |
Plugin | Social Media Widget |
Version | 1.2.1 |
Comparing to | |
See all releases |
Code changes from version 1.2 to 1.2.1
- images/default/32/buzz.png +0 -0
- images/default/32/digg.png +0 -0
- images/default/32/email.png +0 -0
- images/default/32/facebook.png +0 -0
- images/default/32/linkedin.png +0 -0
- images/default/32/myspace.png +0 -0
- images/default/32/orkut.png +0 -0
- images/default/32/reddit.png +0 -0
- images/default/32/rss.png +0 -0
- images/default/32/twitter.png +0 -0
- images/default/32/youtube.png +0 -0
- readme.txt +3 -1
- social-widget.php +2 -2
images/default/32/buzz.png
CHANGED
Binary file
|
images/default/32/digg.png
CHANGED
Binary file
|
images/default/32/email.png
CHANGED
Binary file
|
images/default/32/facebook.png
CHANGED
Binary file
|
images/default/32/linkedin.png
CHANGED
Binary file
|
images/default/32/myspace.png
CHANGED
Binary file
|
images/default/32/orkut.png
CHANGED
Binary file
|
images/default/32/reddit.png
CHANGED
Binary file
|
images/default/32/rss.png
CHANGED
Binary file
|
images/default/32/twitter.png
CHANGED
Binary file
|
images/default/32/youtube.png
CHANGED
Binary file
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Brian Freytag
|
|
3 |
Tags: social media, twitter, facebook, myspace, digg, email
|
4 |
Requires at least: 2.9.1
|
5 |
Tested up to: 3.0 beta 2
|
6 |
-
Stable tag: 1.2
|
7 |
|
8 |
== Description ==
|
9 |
|
@@ -54,6 +54,8 @@ Follow the steps below to install the plugin.
|
|
54 |
For help, you can send an e-mail to brifreytag_at_gmail.com or get ahold of me via twitter at @brianfreytag
|
55 |
|
56 |
== Changelog ==
|
|
|
|
|
57 |
1.2 -
|
58 |
* Fixed issue with RSS URL being reset after save in the widget control panel (did not affect functionality, but caused confusion)
|
59 |
* Added support for Orkut
|
3 |
Tags: social media, twitter, facebook, myspace, digg, email
|
4 |
Requires at least: 2.9.1
|
5 |
Tested up to: 3.0 beta 2
|
6 |
+
Stable tag: 1.2.1
|
7 |
|
8 |
== Description ==
|
9 |
|
54 |
For help, you can send an e-mail to brifreytag_at_gmail.com or get ahold of me via twitter at @brianfreytag
|
55 |
|
56 |
== Changelog ==
|
57 |
+
1.2.1 - Fixed an issue with Orkut icon staying on even if the field is blank. Fixed an issue with 32 pixel default icons appearing as 64 pixels.
|
58 |
+
|
59 |
1.2 -
|
60 |
* Fixed issue with RSS URL being reset after save in the widget control panel (did not affect functionality, but caused confusion)
|
61 |
* Added support for Orkut
|
social-widget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Social Media Widget
|
4 |
* Plugin URI: http://www.idontlikethisgame.com/updates/social-media-widget/
|
5 |
* Description: Place social media icons on your Sidebar by inputting URLs to your profiles!
|
6 |
-
* Version: 1.2
|
7 |
* Author: Brian Freytag
|
8 |
* Author URL: http://www.idontlikethisgame.com
|
9 |
**/
|
@@ -108,7 +108,7 @@ class Social_Widget extends WP_Widget {
|
|
108 |
}
|
109 |
|
110 |
// Orkut
|
111 |
-
if ( $
|
112 |
?> <a href="<?php echo $orkut; ?>" target="_blank"><img class="subscribes" src="<?php echo WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__)); ?>images/<?php echo $icon_pack.'/'.$icon_size; ?>/orkut.png" alt="<?php echo $title; ?> on Orkut"
|
113 |
title="<?php echo $title; ?> on Orkut" style="filter: alpha(opacity=<?php echo $icon_ie;?>); opacity: <?php echo $icon_opacity;?>; -moz-opacity: <?php echo $icon_opacity;?>;" /></a> <?php
|
114 |
} else {
|
3 |
* Plugin Name: Social Media Widget
|
4 |
* Plugin URI: http://www.idontlikethisgame.com/updates/social-media-widget/
|
5 |
* Description: Place social media icons on your Sidebar by inputting URLs to your profiles!
|
6 |
+
* Version: 1.2.1
|
7 |
* Author: Brian Freytag
|
8 |
* Author URL: http://www.idontlikethisgame.com
|
9 |
**/
|
108 |
}
|
109 |
|
110 |
// Orkut
|
111 |
+
if ( $orkut != '' ) {
|
112 |
?> <a href="<?php echo $orkut; ?>" target="_blank"><img class="subscribes" src="<?php echo WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__)); ?>images/<?php echo $icon_pack.'/'.$icon_size; ?>/orkut.png" alt="<?php echo $title; ?> on Orkut"
|
113 |
title="<?php echo $title; ?> on Orkut" style="filter: alpha(opacity=<?php echo $icon_ie;?>); opacity: <?php echo $icon_opacity;?>; -moz-opacity: <?php echo $icon_opacity;?>;" /></a> <?php
|
114 |
} else {
|