Version Description
- Added some CSS code in order to fix compatibility issues with some themes.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | Social Media Follow Buttons Bar |
Version | 3.8.2 |
Comparing to | |
See all releases |
Code changes from version 3.8.1 to 3.8.2
- readme.txt +3 -1
- social-media-buttons-toolbar.php +5 -4
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: icon, icon set, button, social, media, social button, social media, social
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.6
|
7 |
-
Stable tag: 3.8.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -184,6 +184,8 @@ Icons [meetvibe.png](https://www.iconfinder.com/iconsets/meetvibe?ref=ArthurGare
|
|
184 |
* [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/social-media-buttons-toolbar)
|
185 |
|
186 |
== Changelog ==
|
|
|
|
|
187 |
= 3.8.1 =
|
188 |
* Added "!important" declarations to stylesheet in order to fix compatibility issues with some themes.
|
189 |
* Fixed error "Use of undefined constant SSTOPB_TEXT...".
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.6
|
7 |
+
Stable tag: 3.8.2
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
184 |
* [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/social-media-buttons-toolbar)
|
185 |
|
186 |
== Changelog ==
|
187 |
+
= 3.8.2 =
|
188 |
+
* Added some CSS code in order to fix compatibility issues with some themes.
|
189 |
= 3.8.1 =
|
190 |
* Added "!important" declarations to stylesheet in order to fix compatibility issues with some themes.
|
191 |
* Fixed error "Use of undefined constant SSTOPB_TEXT...".
|
social-media-buttons-toolbar.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily add the smart toolbar with social media buttons (not share, only link to your profiles) to any place of your WordPress website.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: http://www.arthurgareginyan.com
|
8 |
-
* Version: 3.8.
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|
@@ -40,14 +40,14 @@ defined('ABSPATH') or die("Restricted access!");
|
|
40 |
/**
|
41 |
* Define global constants
|
42 |
*
|
43 |
-
* @since 3.8.
|
44 |
*/
|
45 |
defined('SMEDIABT_DIR') or define('SMEDIABT_DIR', dirname(plugin_basename(__FILE__)));
|
46 |
defined('SMEDIABT_BASE') or define('SMEDIABT_BASE', plugin_basename(__FILE__));
|
47 |
defined('SMEDIABT_URL') or define('SMEDIABT_URL', plugin_dir_url(__FILE__));
|
48 |
defined('SMEDIABT_PATH') or define('SMEDIABT_PATH', plugin_dir_path(__FILE__));
|
49 |
defined('SMEDIABT_TEXT') or define('SMEDIABT_TEXT', 'social-media-buttons-toolbar');
|
50 |
-
defined('SMEDIABT_VERSION') or define('SMEDIABT_VERSION', '3.8.
|
51 |
|
52 |
/**
|
53 |
* Register text domain
|
@@ -236,7 +236,7 @@ function smbtoolbar_setting($name, $label, $help=null, $field=null, $placeholder
|
|
236 |
/**
|
237 |
* Generate the buttons toolbar
|
238 |
*
|
239 |
-
* @since 3.8.
|
240 |
*/
|
241 |
function smbtoolbar_tollbar() {
|
242 |
|
@@ -314,6 +314,7 @@ function smbtoolbar_tollbar() {
|
|
314 |
.smbt-social-icons li {
|
315 |
margin: 0px !important;
|
316 |
padding: 0px !important;
|
|
|
317 |
display: inline-block !important;
|
318 |
border-bottom: 0 !important;
|
319 |
list-style-type: none !important;
|
5 |
* Description: Easily add the smart toolbar with social media buttons (not share, only link to your profiles) to any place of your WordPress website.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: http://www.arthurgareginyan.com
|
8 |
+
* Version: 3.8.2
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|
40 |
/**
|
41 |
* Define global constants
|
42 |
*
|
43 |
+
* @since 3.8.2
|
44 |
*/
|
45 |
defined('SMEDIABT_DIR') or define('SMEDIABT_DIR', dirname(plugin_basename(__FILE__)));
|
46 |
defined('SMEDIABT_BASE') or define('SMEDIABT_BASE', plugin_basename(__FILE__));
|
47 |
defined('SMEDIABT_URL') or define('SMEDIABT_URL', plugin_dir_url(__FILE__));
|
48 |
defined('SMEDIABT_PATH') or define('SMEDIABT_PATH', plugin_dir_path(__FILE__));
|
49 |
defined('SMEDIABT_TEXT') or define('SMEDIABT_TEXT', 'social-media-buttons-toolbar');
|
50 |
+
defined('SMEDIABT_VERSION') or define('SMEDIABT_VERSION', '3.8.2');
|
51 |
|
52 |
/**
|
53 |
* Register text domain
|
236 |
/**
|
237 |
* Generate the buttons toolbar
|
238 |
*
|
239 |
+
* @since 3.8.2
|
240 |
*/
|
241 |
function smbtoolbar_tollbar() {
|
242 |
|
314 |
.smbt-social-icons li {
|
315 |
margin: 0px !important;
|
316 |
padding: 0px !important;
|
317 |
+
background-image: none !important;
|
318 |
display: inline-block !important;
|
319 |
border-bottom: 0 !important;
|
320 |
list-style-type: none !important;
|