Version Description
- Prevent ModSecurity blocking fonts from loading
Download this release
Release Info
Developer | nathanrice |
Plugin | Simple Social Icons |
Version | 1.0.12 |
Comparing to | |
See all releases |
Code changes from version 1.0.11 to 1.0.12
- README.md +15 -0
- css/style.css +5 -5
- readme.txt +7 -4
- simple-social-icons.php +2 -2
README.md
CHANGED
@@ -88,3 +88,18 @@ NOTE - The rights to each pictogram in the social extension are either trademark
|
|
88 |
|
89 |
1.0.7
|
90 |
* Added Bloglovin icon
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
|
89 |
1.0.7
|
90 |
* Added Bloglovin icon
|
91 |
+
|
92 |
+
1.0.8
|
93 |
+
* Added border options
|
94 |
+
|
95 |
+
1.0.9
|
96 |
+
* PHP7 compatibility
|
97 |
+
|
98 |
+
1.0.10
|
99 |
+
* Update textdomain, generate POT
|
100 |
+
|
101 |
+
1.0.11
|
102 |
+
* Update enqueue version for stylesheet, for cache busting
|
103 |
+
|
104 |
+
1.0.12
|
105 |
+
* Prevent ModSecurity blocking fonts from loading
|
css/style.css
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
@font-face {
|
2 |
font-family: 'ssi-icomoon';
|
3 |
-
src:url('../font/ssi-icomoon.eot
|
4 |
-
src:url('../font/ssi-icomoon.eot?#
|
5 |
-
url('../font/ssi-icomoon.woff
|
6 |
-
url('../font/ssi-icomoon.ttf
|
7 |
-
url('../font/ssi-icomoon.svg
|
8 |
font-weight: normal;
|
9 |
font-style: normal;
|
10 |
}
|
1 |
@font-face {
|
2 |
font-family: 'ssi-icomoon';
|
3 |
+
src:url('../font/ssi-icomoon.eot?ssi-texv9a');
|
4 |
+
src:url('../font/ssi-icomoon.eot?#iefixssi-texv9a') format('embedded-opentype'),
|
5 |
+
url('../font/ssi-icomoon.woff?ssi-texv9a') format('woff'),
|
6 |
+
url('../font/ssi-icomoon.ttf?ssi-texv9a') format('truetype'),
|
7 |
+
url('../font/ssi-icomoon.svg?ssi-texv9a#ssi-icomoon') format('svg');
|
8 |
font-weight: normal;
|
9 |
font-style: normal;
|
10 |
}
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: nathanrice, studiopress, bgardner
|
3 |
Tags: social media, social networking, social profiles
|
4 |
Requires at least: 4.0
|
5 |
-
Tested up to: 4.3
|
6 |
-
Stable tag: 1.0.
|
7 |
|
8 |
This plugin allows you to insert social icons in any widget area.
|
9 |
|
@@ -47,11 +47,14 @@ NOTE - The rights to each pictogram in the social extension are either trademark
|
|
47 |
|
48 |
== Changelog ==
|
49 |
|
|
|
|
|
|
|
50 |
= 1.0.11 =
|
51 |
-
* Update enqueue version for stylesheet, for cache busting
|
52 |
|
53 |
= 1.0.10 =
|
54 |
-
* Update textdomain, generate POT
|
55 |
|
56 |
= 1.0.9 =
|
57 |
* PHP7 compatibility
|
2 |
Contributors: nathanrice, studiopress, bgardner
|
3 |
Tags: social media, social networking, social profiles
|
4 |
Requires at least: 4.0
|
5 |
+
Tested up to: 4.3.1
|
6 |
+
Stable tag: 1.0.12
|
7 |
|
8 |
This plugin allows you to insert social icons in any widget area.
|
9 |
|
47 |
|
48 |
== Changelog ==
|
49 |
|
50 |
+
= 1.0.12 =
|
51 |
+
* Prevent ModSecurity blocking fonts from loading
|
52 |
+
|
53 |
= 1.0.11 =
|
54 |
+
* Update enqueue version for stylesheet, for cache busting
|
55 |
|
56 |
= 1.0.10 =
|
57 |
+
* Update textdomain, generate POT
|
58 |
|
59 |
= 1.0.9 =
|
60 |
* PHP7 compatibility
|
simple-social-icons.php
CHANGED
@@ -6,7 +6,7 @@ Description: A simple, CSS and icon font driven social icons widget.
|
|
6 |
Author: Nathan Rice
|
7 |
Author URI: http://www.nathanrice.net/
|
8 |
|
9 |
-
Version: 1.0.
|
10 |
|
11 |
License: GNU General Public License v2.0 (or later)
|
12 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
@@ -390,7 +390,7 @@ class Simple_Social_Icons_Widget extends WP_Widget {
|
|
390 |
|
391 |
$cssfile = apply_filters( 'simple_social_default_css', plugin_dir_url( __FILE__ ) . 'css/style.css' );
|
392 |
|
393 |
-
wp_enqueue_style( 'simple-social-icons-font', esc_url( $cssfile ), array(), '1.0.
|
394 |
}
|
395 |
|
396 |
/**
|
6 |
Author: Nathan Rice
|
7 |
Author URI: http://www.nathanrice.net/
|
8 |
|
9 |
+
Version: 1.0.12
|
10 |
|
11 |
License: GNU General Public License v2.0 (or later)
|
12 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
390 |
|
391 |
$cssfile = apply_filters( 'simple_social_default_css', plugin_dir_url( __FILE__ ) . 'css/style.css' );
|
392 |
|
393 |
+
wp_enqueue_style( 'simple-social-icons-font', esc_url( $cssfile ), array(), '1.0.12', 'all' );
|
394 |
}
|
395 |
|
396 |
/**
|