Version Description
- Facebook "Like it" fix (added id="fb-root" instead of class="fb-like")
Download this release
Release Info
| Developer | xradar |
| Plugin | |
| Version | 1.5.3 |
| Comparing to | |
| See all releases | |
Code changes from version 1.5.2 to 1.5.3
- readme.txt +5 -2
- simple-social-buttons.php +3 -3
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: http://blog.rabinek.pl/
|
|
| 4 |
Tags: facebook, google, twitter, plus one, like it, like, share
|
| 5 |
Requires at least: 2.8
|
| 6 |
Tested up to: 3.3.1
|
| 7 |
-
Stable tag: 1.5.
|
| 8 |
|
| 9 |
Insert and customize social buttons: Facebook Like it, Google plus +1 and Twitter share. Share your content with friends.
|
| 10 |
|
|
@@ -136,4 +136,7 @@ Yes, you can use `<?php get_ssb(); ?>` in your template file (see installation s
|
|
| 136 |
* Added lithuanian translation
|
| 137 |
|
| 138 |
= 1.5.2 =
|
| 139 |
-
* Bug fix from 1.5.1
|
|
|
|
|
|
|
|
|
| 4 |
Tags: facebook, google, twitter, plus one, like it, like, share
|
| 5 |
Requires at least: 2.8
|
| 6 |
Tested up to: 3.3.1
|
| 7 |
+
Stable tag: 1.5.3
|
| 8 |
|
| 9 |
Insert and customize social buttons: Facebook Like it, Google plus +1 and Twitter share. Share your content with friends.
|
| 10 |
|
| 136 |
* Added lithuanian translation
|
| 137 |
|
| 138 |
= 1.5.2 =
|
| 139 |
+
* Bug fix from 1.5.1
|
| 140 |
+
|
| 141 |
+
= 1.5.3 =
|
| 142 |
+
* Facebook "Like it" fix (added id="fb-root" instead of class="fb-like")
|
simple-social-buttons.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
Plugin URI: http://blog.rabinek.pl/simple-social-buttons-wordpress/
|
| 5 |
Description: Insert social buttons into posts and archives: Facebook "Like it", Google Plus One "+1" and Twitter share.
|
| 6 |
Author: Paweł Rabinek
|
| 7 |
-
Version: 1.5.
|
| 8 |
Author URI: http://blog.rabinek.pl/
|
| 9 |
*/
|
| 10 |
|
|
@@ -35,7 +35,7 @@
|
|
| 35 |
|
| 36 |
class SimpleSocialButtonsPR {
|
| 37 |
var $pluginName = 'Simple Social Buttons';
|
| 38 |
-
var $pluginVersion = '1.5.
|
| 39 |
var $pluginPrefix = 'ssb_pr_';
|
| 40 |
var $hideCustomMetaKey = '_ssb_hide';
|
| 41 |
|
|
@@ -386,7 +386,7 @@ window.___gcfg = {lang: '<?php echo $lang_g; ?>'};
|
|
| 386 |
$arrButtonsCode[] = '<div class="simplesocialbutton ssb-button-googleplus"><!-- Google Plus One--><div class="g-plusone" data-size="medium" data-href="'.$permalink.'"></div></div>';
|
| 387 |
break;
|
| 388 |
case 'fblike':
|
| 389 |
-
$arrButtonsCode[] = '<div class="simplesocialbutton ssb-button-fblike"><!-- Facebook like--><div class="fb-like" data-href="'.$permalink.'" data-send="false" data-layout="button_count" data-width="100" data-show-faces="false"></div></div>';
|
| 390 |
break;
|
| 391 |
case 'twitter':
|
| 392 |
$arrButtonsCode[] = '<div class="simplesocialbutton ssb-buttom-twitter"><!-- Twitter--><a href="https://twitter.com/share" class="twitter-share-button" data-text="'.$title.'" data-url="'.$permalink.'" rel="nofollow"></a></div>';
|
| 4 |
Plugin URI: http://blog.rabinek.pl/simple-social-buttons-wordpress/
|
| 5 |
Description: Insert social buttons into posts and archives: Facebook "Like it", Google Plus One "+1" and Twitter share.
|
| 6 |
Author: Paweł Rabinek
|
| 7 |
+
Version: 1.5.3
|
| 8 |
Author URI: http://blog.rabinek.pl/
|
| 9 |
*/
|
| 10 |
|
| 35 |
|
| 36 |
class SimpleSocialButtonsPR {
|
| 37 |
var $pluginName = 'Simple Social Buttons';
|
| 38 |
+
var $pluginVersion = '1.5.3';
|
| 39 |
var $pluginPrefix = 'ssb_pr_';
|
| 40 |
var $hideCustomMetaKey = '_ssb_hide';
|
| 41 |
|
| 386 |
$arrButtonsCode[] = '<div class="simplesocialbutton ssb-button-googleplus"><!-- Google Plus One--><div class="g-plusone" data-size="medium" data-href="'.$permalink.'"></div></div>';
|
| 387 |
break;
|
| 388 |
case 'fblike':
|
| 389 |
+
$arrButtonsCode[] = '<div class="simplesocialbutton ssb-button-fblike"><!-- Facebook like--><div id="fb-root" class="fb-like" data-href="'.$permalink.'" data-send="false" data-layout="button_count" data-width="100" data-show-faces="false"></div></div>';
|
| 390 |
break;
|
| 391 |
case 'twitter':
|
| 392 |
$arrButtonsCode[] = '<div class="simplesocialbutton ssb-buttom-twitter"><!-- Twitter--><a href="https://twitter.com/share" class="twitter-share-button" data-text="'.$title.'" data-url="'.$permalink.'" rel="nofollow"></a></div>';
|
