Version Description
- Bug fixed: Grow! Button.
Download this release
Release Info
Developer | utahvich |
Plugin | WP Social Bookmarking Light |
Version | 1.7.2 |
Comparing to | |
See all releases |
Code changes from version 1.7.1 to 1.7.2
- modules/content.php +2 -2
- modules/services.php +0 -1
- readme.txt +4 -1
- wp-social-bookmarking-light.php +1 -1
modules/content.php
CHANGED
@@ -165,8 +165,8 @@ function wp_social_bookmarking_light_wp_footer()
|
|
165 |
|
166 |
if(in_array('grow', $services)){
|
167 |
$apikey = $options['grow']['apikey'];
|
168 |
-
if($apikey){
|
169 |
-
echo '<script type="text/javascript" src="http://growbutton.com/javascripts/button.js?apikey=' . $apikey . '&shape=' . $options['grow']['button_type'] .'&insert=false"></script>'
|
170 |
}
|
171 |
}
|
172 |
?>
|
165 |
|
166 |
if(in_array('grow', $services)){
|
167 |
$apikey = $options['grow']['apikey'];
|
168 |
+
if($apikey && !is_preview()){
|
169 |
+
echo '<script type="text/javascript" src="http://growbutton.com/javascripts/button.js?apikey=' . $apikey . '&shape=' . $options['grow']['button_type'] .'&insert=false"></script>';
|
170 |
}
|
171 |
}
|
172 |
?>
|
modules/services.php
CHANGED
@@ -567,7 +567,6 @@ class WpSocialBookmarkingLight
|
|
567 |
'<span style="display: none;" itemscope itemref="' . $button_type . '" itemtype="http://growbutton.com/ns#button">'.
|
568 |
'<span itemprop="url">' . $link . '</span>'.
|
569 |
'<span itemprop="title">' . $title . '</span>'.
|
570 |
-
'<span itemprop="image"></span>' .
|
571 |
'<span itemprop="site_name">'. $site_name . '</span>'.
|
572 |
'</span>';
|
573 |
}
|
567 |
'<span style="display: none;" itemscope itemref="' . $button_type . '" itemtype="http://growbutton.com/ns#button">'.
|
568 |
'<span itemprop="url">' . $link . '</span>'.
|
569 |
'<span itemprop="title">' . $title . '</span>'.
|
|
|
570 |
'<span itemprop="site_name">'. $site_name . '</span>'.
|
571 |
'</span>';
|
572 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: links, social, bookmarks, bookmarking, Hatena, Livedoor Clip, BuzzURL, @nifty clip, Twitter, Tumblr, FC2 Bookmark, newsing, Choix, Yahoo!JAPAN Bookmark, Yahoo!Buzz, Google Bookmark, Delicious, Digg, FriendFeed, Google Buzz, Facebook, reddit, LinkedIn, Evernote, Instapaper, StumbleUpon, mixi, gree, atode, toread, grow!
|
5 |
Requires at least: 2.9.0
|
6 |
Tested up to: 3.1.2
|
7 |
-
Stable tag: 1.7.
|
8 |
|
9 |
This plugin inserts social share links at the top or bottom of each post.
|
10 |
|
@@ -59,6 +59,9 @@ This is the list of used social sites:
|
|
59 |
|
60 |
== Changelog ==
|
61 |
|
|
|
|
|
|
|
62 |
= 1.7.1 =
|
63 |
* Updated: replaced script of hatena to no tracking version.
|
64 |
|
4 |
Tags: links, social, bookmarks, bookmarking, Hatena, Livedoor Clip, BuzzURL, @nifty clip, Twitter, Tumblr, FC2 Bookmark, newsing, Choix, Yahoo!JAPAN Bookmark, Yahoo!Buzz, Google Bookmark, Delicious, Digg, FriendFeed, Google Buzz, Facebook, reddit, LinkedIn, Evernote, Instapaper, StumbleUpon, mixi, gree, atode, toread, grow!
|
5 |
Requires at least: 2.9.0
|
6 |
Tested up to: 3.1.2
|
7 |
+
Stable tag: 1.7.2
|
8 |
|
9 |
This plugin inserts social share links at the top or bottom of each post.
|
10 |
|
59 |
|
60 |
== Changelog ==
|
61 |
|
62 |
+
= 1.7.2 =
|
63 |
+
* Bug fixed: Grow! Button.
|
64 |
+
|
65 |
= 1.7.1 =
|
66 |
* Updated: replaced script of hatena to no tracking version.
|
67 |
|
wp-social-bookmarking-light.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.ninxit.com/blog/2010/06/13/wp-social-bookmarking-light/
|
|
5 |
Description: This plugin inserts social share links at the top or bottom of each post.
|
6 |
Author: utahta
|
7 |
Author URI: http://www.ninxit.com/blog/
|
8 |
-
Version: 1.7.
|
9 |
*/
|
10 |
/*
|
11 |
Copyright 2010 utahta (email : labs.ninxit@gmail.com)
|
5 |
Description: This plugin inserts social share links at the top or bottom of each post.
|
6 |
Author: utahta
|
7 |
Author URI: http://www.ninxit.com/blog/
|
8 |
+
Version: 1.7.2
|
9 |
*/
|
10 |
/*
|
11 |
Copyright 2010 utahta (email : labs.ninxit@gmail.com)
|