Version Description
- Fixed: Google+ icon not displaying
Download this release
Release Info
Developer | mekshq |
Plugin | Meks Smart Social Widget |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3 to 1.3.1
- css/style.css +10 -2
- meks-smart-social-widget.php +54 -54
- readme.txt +5 -1
css/style.css
CHANGED
@@ -17,8 +17,14 @@ ul.mks_social_widget_ul li a:before {
|
|
17 |
-webkit-font-smoothing: antialiased;
|
18 |
-moz-osx-font-smoothing: grayscale;
|
19 |
}
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
ul.mks_social_widget_ul li a {
|
|
|
22 |
display: block;
|
23 |
height: 48px;
|
24 |
width: 48px;
|
@@ -33,6 +39,7 @@ ul.mks_social_widget_ul li a {
|
|
33 |
display: flex;
|
34 |
justify-content: center;
|
35 |
align-items: center;
|
|
|
36 |
}
|
37 |
|
38 |
ul.mks_social_widget_ul li a span {
|
@@ -57,6 +64,7 @@ ul.mks_social_widget_ul li:hover a {
|
|
57 |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
|
58 |
filter: alpha(opacity=70);
|
59 |
opacity: 0.7;
|
|
|
60 |
}
|
61 |
|
62 |
ul.mks_social_widget_ul li {
|
@@ -136,7 +144,7 @@ ul.mks_social_widget_ul .google_ico {
|
|
136 |
background-color: #dd4b39;
|
137 |
}
|
138 |
|
139 |
-
ul.mks_social_widget_ul .
|
140 |
background-color: #d94a39;
|
141 |
}
|
142 |
|
@@ -817,7 +825,7 @@ ul.mks_social_widget_ul .google-play_ico:before {
|
|
817 |
content: "\e02b";
|
818 |
}
|
819 |
|
820 |
-
ul.mks_social_widget_ul .
|
821 |
content: "\e042";
|
822 |
}
|
823 |
|
17 |
-webkit-font-smoothing: antialiased;
|
18 |
-moz-osx-font-smoothing: grayscale;
|
19 |
}
|
20 |
+
ul.mks_social_widget_ul li:before,
|
21 |
+
ul.mks_social_widget_ul li:after{
|
22 |
+
display: none;
|
23 |
+
}
|
24 |
+
|
25 |
|
26 |
ul.mks_social_widget_ul li a {
|
27 |
+
background: none;
|
28 |
display: block;
|
29 |
height: 48px;
|
30 |
width: 48px;
|
39 |
display: flex;
|
40 |
justify-content: center;
|
41 |
align-items: center;
|
42 |
+
text-decoration: none;
|
43 |
}
|
44 |
|
45 |
ul.mks_social_widget_ul li a span {
|
64 |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
|
65 |
filter: alpha(opacity=70);
|
66 |
opacity: 0.7;
|
67 |
+
text-decoration: none;
|
68 |
}
|
69 |
|
70 |
ul.mks_social_widget_ul li {
|
144 |
background-color: #dd4b39;
|
145 |
}
|
146 |
|
147 |
+
ul.mks_social_widget_ul .google-plus_ico {
|
148 |
background-color: #d94a39;
|
149 |
}
|
150 |
|
825 |
content: "\e02b";
|
826 |
}
|
827 |
|
828 |
+
ul.mks_social_widget_ul .google-plus_ico:before {
|
829 |
content: "\e042";
|
830 |
}
|
831 |
|
meks-smart-social-widget.php
CHANGED
@@ -1,55 +1,55 @@
|
|
1 |
-
<?php
|
2 |
-
/*
|
3 |
-
Plugin Name: Meks Smart Social Widget
|
4 |
-
Plugin URI: http://mekshq.com
|
5 |
-
Description: Easily display more than social icons inside WordPress widget. Choose from different icon shapes and sizes and quickly connect your website with your social profiles. Aim, Apple, Behance, Blogger, Cargo,
|
6 |
-
Delicious, DeviantArt, Digg, Dribbble, Envato, Evernote, Facebook, Flickr, Forrst, Github, Google, GooglePlus, GrooveShark, Icloud, Instagram, LastFM, LinkedIN, MySpace, Picasa,
|
7 |
-
Pinterest, ReddIt, Rss, Skype, Spotify, StumbleUpon, Tumblr, Twitter, Vimeo, Vine, WordPress, Xing, Youtube, Zerply, 500px...
|
8 |
-
Author: Meks
|
9 |
-
Version: 1.3
|
10 |
-
Author URI: http://mekshq.com
|
11 |
-
Text Domain: meks-smart-social-widget
|
12 |
-
Domain Path: /languages
|
13 |
-
*/
|
14 |
-
|
15 |
-
|
16 |
-
/* Copyright 2013 Meks (email : support@mekshq.com)
|
17 |
-
|
18 |
-
This program is free software; you can redistribute it and/or modify
|
19 |
-
it under the terms of the GNU General Public License as published by
|
20 |
-
the Free Software Foundation; either version 2 of the License, or
|
21 |
-
(at your option) any later version.
|
22 |
-
|
23 |
-
This program is distributed in the hope that it will be useful,
|
24 |
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
25 |
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
26 |
-
GNU General Public License for more details.
|
27 |
-
|
28 |
-
You should have received a copy of the GNU General Public License
|
29 |
-
along with this program; if not, write to the Free Software
|
30 |
-
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
31 |
-
*/
|
32 |
-
|
33 |
-
define ('MKS_SOCIAL_WIDGET_URL', trailingslashit(plugin_dir_url(__FILE__)));
|
34 |
-
define ('MKS_SOCIAL_WIDGET_DIR', trailingslashit(plugin_dir_path(__FILE__)));
|
35 |
-
define ('MKS_SOCIAL_WIDGET_VER', '1.3');
|
36 |
-
|
37 |
-
/* Initialize Widget */
|
38 |
-
if(!function_exists('mks_social_widget_init')):
|
39 |
-
function mks_social_widget_init() {
|
40 |
-
require_once(MKS_SOCIAL_WIDGET_DIR.'inc/class-social-widget.php');
|
41 |
-
register_widget('MKS_Social_Widget');
|
42 |
-
}
|
43 |
-
endif;
|
44 |
-
|
45 |
-
add_action('widgets_init','mks_social_widget_init');
|
46 |
-
|
47 |
-
|
48 |
-
/* Load text domain */
|
49 |
-
function mks_load_social_widget_text_domain() {
|
50 |
-
load_plugin_textdomain( 'meks-smart-social-widget', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
51 |
-
}
|
52 |
-
|
53 |
-
add_action( 'plugins_loaded', 'mks_load_social_widget_text_domain' );
|
54 |
-
|
55 |
?>
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
Plugin Name: Meks Smart Social Widget
|
4 |
+
Plugin URI: http://mekshq.com
|
5 |
+
Description: Easily display more than 100 social icons inside WordPress widget. Choose from different icon shapes and sizes and quickly connect your website with your social profiles. Aim, Apple, Behance, Blogger, Cargo,
|
6 |
+
Delicious, DeviantArt, Digg, Dribbble, Envato, Evernote, Facebook, Flickr, Forrst, Github, Google, GooglePlus, GrooveShark, Icloud, Instagram, LastFM, LinkedIN, MySpace, Picasa,
|
7 |
+
Pinterest, ReddIt, Rss, Skype, Spotify, StumbleUpon, Tumblr, Twitter, Vimeo, Vine, WordPress, Xing, Youtube, Zerply, 500px...
|
8 |
+
Author: Meks
|
9 |
+
Version: 1.3.1
|
10 |
+
Author URI: http://mekshq.com
|
11 |
+
Text Domain: meks-smart-social-widget
|
12 |
+
Domain Path: /languages
|
13 |
+
*/
|
14 |
+
|
15 |
+
|
16 |
+
/* Copyright 2013 Meks (email : support@mekshq.com)
|
17 |
+
|
18 |
+
This program is free software; you can redistribute it and/or modify
|
19 |
+
it under the terms of the GNU General Public License as published by
|
20 |
+
the Free Software Foundation; either version 2 of the License, or
|
21 |
+
(at your option) any later version.
|
22 |
+
|
23 |
+
This program is distributed in the hope that it will be useful,
|
24 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
25 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
26 |
+
GNU General Public License for more details.
|
27 |
+
|
28 |
+
You should have received a copy of the GNU General Public License
|
29 |
+
along with this program; if not, write to the Free Software
|
30 |
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
31 |
+
*/
|
32 |
+
|
33 |
+
define ('MKS_SOCIAL_WIDGET_URL', trailingslashit(plugin_dir_url(__FILE__)));
|
34 |
+
define ('MKS_SOCIAL_WIDGET_DIR', trailingslashit(plugin_dir_path(__FILE__)));
|
35 |
+
define ('MKS_SOCIAL_WIDGET_VER', '1.3.1');
|
36 |
+
|
37 |
+
/* Initialize Widget */
|
38 |
+
if(!function_exists('mks_social_widget_init')):
|
39 |
+
function mks_social_widget_init() {
|
40 |
+
require_once(MKS_SOCIAL_WIDGET_DIR.'inc/class-social-widget.php');
|
41 |
+
register_widget('MKS_Social_Widget');
|
42 |
+
}
|
43 |
+
endif;
|
44 |
+
|
45 |
+
add_action('widgets_init','mks_social_widget_init');
|
46 |
+
|
47 |
+
|
48 |
+
/* Load text domain */
|
49 |
+
function mks_load_social_widget_text_domain() {
|
50 |
+
load_plugin_textdomain( 'meks-smart-social-widget', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
51 |
+
}
|
52 |
+
|
53 |
+
add_action( 'plugins_loaded', 'mks_load_social_widget_text_domain' );
|
54 |
+
|
55 |
?>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://mekshq.com/
|
|
4 |
Tags: social, icons, widget, linkedin, reddit, vimeo, dribble, instagram, pinterest
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 1.3
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl.html
|
10 |
|
@@ -48,6 +48,10 @@ For any questions, error reports and suggestions please email support@mekshq.com
|
|
48 |
|
49 |
== Changelog ==
|
50 |
|
|
|
|
|
|
|
|
|
51 |
= 1.3 =
|
52 |
|
53 |
* Added more than 60 new icons!
|
4 |
Tags: social, icons, widget, linkedin, reddit, vimeo, dribble, instagram, pinterest
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 1.3.1
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl.html
|
10 |
|
48 |
|
49 |
== Changelog ==
|
50 |
|
51 |
+
= 1.3.1 =
|
52 |
+
|
53 |
+
* Fixed: Google+ icon not displaying
|
54 |
+
|
55 |
= 1.3 =
|
56 |
|
57 |
* Added more than 60 new icons!
|