Version Description
- Important release, Please upgrade immediately. BugFix: Horizontal issue.
=
Download this release
Release Info
Developer | hiddenpearls |
Plugin | Simple Social Media Share Buttons – Social Sharing for Everyone |
Version | 1.8.1 |
Comparing to | |
See all releases |
Code changes from version 1.8.0 to 1.8.1
- readme.txt +6 -3
- simple-social-buttons.php +3 -3
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wpbrigade.com/
|
|
4 |
Tags: facebook, google, twitter, pinterest, plus one, like it, like, share, pin, pin it
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 4.8
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -111,12 +111,15 @@ Big thanks to:
|
|
111 |
|
112 |
== Upgrade Notice ==
|
113 |
|
114 |
-
= 1.8.
|
115 |
-
* Important release, Please upgrade immediately.
|
116 |
|
117 |
|
118 |
== Changelog ==
|
119 |
|
|
|
|
|
|
|
120 |
= 1.8.0 =
|
121 |
* Styling and Code improvement.
|
122 |
|
4 |
Tags: facebook, google, twitter, pinterest, plus one, like it, like, share, pin, pin it
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 4.8
|
7 |
+
Stable tag: 1.8.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
111 |
|
112 |
== Upgrade Notice ==
|
113 |
|
114 |
+
= 1.8.1 =
|
115 |
+
* Important release, Please upgrade immediately. BugFix: Horizontal issue.
|
116 |
|
117 |
|
118 |
== Changelog ==
|
119 |
|
120 |
+
= 1.8.1 =
|
121 |
+
* BugFix: Horizontal issue.
|
122 |
+
|
123 |
= 1.8.0 =
|
124 |
* Styling and Code improvement.
|
125 |
|
simple-social-buttons.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Simple Social Buttons
|
5 |
* Plugin URI: http://www.WPBrigade.com/wordpress/plugins/simple-social-buttons/
|
6 |
* Description: Insert social buttons into posts and archives: Facebook "Like it", Google Plus One "+1", Twitter share and Pinterest.
|
7 |
-
* Version: 1.8.
|
8 |
* Author: WPBrigade
|
9 |
* Author URI: http://adnan.pk/
|
10 |
*/
|
@@ -36,7 +36,7 @@
|
|
36 |
|
37 |
class SimpleSocialButtonsPR {
|
38 |
var $pluginName = 'Simple Social Buttons';
|
39 |
-
var $pluginVersion = '1.
|
40 |
var $pluginPrefix = 'ssb_pr_';
|
41 |
var $hideCustomMetaKey = '_ssb_hide';
|
42 |
|
@@ -83,7 +83,7 @@ class SimpleSocialButtonsPR {
|
|
83 |
|
84 |
// social JS + CSS data
|
85 |
add_action( 'wp_footer', array(&$this, 'include_social_js') );
|
86 |
-
if(!
|
87 |
add_action( 'wp_head', array(&$this, 'include_css') );
|
88 |
}
|
89 |
|
4 |
* Plugin Name: Simple Social Buttons
|
5 |
* Plugin URI: http://www.WPBrigade.com/wordpress/plugins/simple-social-buttons/
|
6 |
* Description: Insert social buttons into posts and archives: Facebook "Like it", Google Plus One "+1", Twitter share and Pinterest.
|
7 |
+
* Version: 1.8.1
|
8 |
* Author: WPBrigade
|
9 |
* Author URI: http://adnan.pk/
|
10 |
*/
|
36 |
|
37 |
class SimpleSocialButtonsPR {
|
38 |
var $pluginName = 'Simple Social Buttons';
|
39 |
+
var $pluginVersion = '1.8.1';
|
40 |
var $pluginPrefix = 'ssb_pr_';
|
41 |
var $hideCustomMetaKey = '_ssb_hide';
|
42 |
|
83 |
|
84 |
// social JS + CSS data
|
85 |
add_action( 'wp_footer', array(&$this, 'include_social_js') );
|
86 |
+
if ( !isset($this->settings['override_css']) || $this->settings['override_css'] != 1) {
|
87 |
add_action( 'wp_head', array(&$this, 'include_css') );
|
88 |
}
|
89 |
|