Version Description
Download this release
Release Info
Developer | DannyCooper |
Plugin | Disable and Remove Google Fonts |
Version | 1.4.4 |
Comparing to | |
See all releases |
Code changes from version 1.4.3 to 1.4.4
- changelog.txt +4 -0
- disable-remove-google-fonts.php +7 -1
changelog.txt
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
= 1.4.3 =
|
2 |
|
3 |
* Add compatibility for Avada.
|
1 |
+
= 1.4.4 =
|
2 |
+
|
3 |
+
* Add compatibility for Vantage.
|
4 |
+
|
5 |
= 1.4.3 =
|
6 |
|
7 |
* Add compatibility for Avada.
|
disable-remove-google-fonts.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Optimize frontend performance by disabling Google Fonts. GDPR-friendly.
|
6 |
* Author: Fonts Plugin
|
7 |
* Author URI: https://fontsplugin.com
|
8 |
-
* Version: 1.4.
|
9 |
* License: GPLv2 or later
|
10 |
* License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
11 |
*
|
@@ -110,6 +110,12 @@ add_filter(
|
|
110 |
*/
|
111 |
add_filter( 'hustle_load_google_fonts', '__return_false' );
|
112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
/**
|
114 |
* Dequeue Google Fonts loaded by the Hustle plugin.
|
115 |
*/
|
5 |
* Description: Optimize frontend performance by disabling Google Fonts. GDPR-friendly.
|
6 |
* Author: Fonts Plugin
|
7 |
* Author URI: https://fontsplugin.com
|
8 |
+
* Version: 1.4.4
|
9 |
* License: GPLv2 or later
|
10 |
* License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
11 |
*
|
110 |
*/
|
111 |
add_filter( 'hustle_load_google_fonts', '__return_false' );
|
112 |
|
113 |
+
/**
|
114 |
+
* Dequeue Google Fonts loaded by the Vantage theme.
|
115 |
+
*/
|
116 |
+
add_filter( 'vantage_import_google_fonts', '__return_false' );
|
117 |
+
|
118 |
+
|
119 |
/**
|
120 |
* Dequeue Google Fonts loaded by the Hustle plugin.
|
121 |
*/
|