Version Description
- Fixed Pagely Cache issue. (https://wordpress.org/support/topic/version-6-1-1-causes-fatal-errors-on-pagely-servers/)
Download this release
Release Info
Developer | dnesscarkey |
Plugin | Use Any Font |
Version | 6.1.2 |
Comparing to | |
See all releases |
Code changes from version 6.1.1 to 6.1.2
- includes/functions/uaf_cache_functions.php +3 -1
- includes/uaf_config.php +1 -1
- readme.txt +4 -1
- use-any-font.php +1 -1
includes/functions/uaf_cache_functions.php
CHANGED
@@ -18,7 +18,9 @@ function uaf_clear_plugins_cache(){
|
|
18 |
Cache_Enabler::clear_total_cache();
|
19 |
}
|
20 |
if (class_exists('PagelyCachePurge') && method_exists('PagelyCachePurge','purgeAll') ) { // FOR PAGELY
|
21 |
-
PagelyCachePurge::purgeAll();
|
|
|
|
|
22 |
}
|
23 |
if (class_exists('autoptimizeCache') && method_exists( 'autoptimizeCache', 'clearall') ) { // FOR AUTOOPTIMIZSE
|
24 |
autoptimizeCache::clearall();
|
18 |
Cache_Enabler::clear_total_cache();
|
19 |
}
|
20 |
if (class_exists('PagelyCachePurge') && method_exists('PagelyCachePurge','purgeAll') ) { // FOR PAGELY
|
21 |
+
//PagelyCachePurge::purgeAll(); REMOVED AFTER THIS TICKET https://wordpress.org/support/topic/version-6-1-1-causes-fatal-errors-on-pagely-servers/
|
22 |
+
$uaf_purger = new PagelyCachePurge();
|
23 |
+
$uaf_purger->purgeAll();
|
24 |
}
|
25 |
if (class_exists('autoptimizeCache') && method_exists( 'autoptimizeCache', 'clearall') ) { // FOR AUTOOPTIMIZSE
|
26 |
autoptimizeCache::clearall();
|
includes/uaf_config.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
3 |
|
4 |
-
$GLOBALS['uaf_current_version'] = '6.1.
|
5 |
|
6 |
|
7 |
$GLOBALS['uaf_fix_settings'] = array(
|
1 |
<?php
|
2 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
3 |
|
4 |
+
$GLOBALS['uaf_current_version'] = '6.1.2';
|
5 |
|
6 |
|
7 |
$GLOBALS['uaf_fix_settings'] = array(
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: dnesscarkey
|
|
3 |
Tags: custom fonts, font embed, font uploader, typography, install font
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 5.7.1
|
6 |
-
Stable tag: 6.1.
|
7 |
|
8 |
Embed any custom font using font uploader and assign to elements. Upload font in 1 format and other needed formats are auto converted even woff2.
|
9 |
|
@@ -142,6 +142,9 @@ Please do write us after integration and we will add it in our supported list.
|
|
142 |
1. Screenshot #6. Assign fonts to custom elements.
|
143 |
|
144 |
== Changelog ==
|
|
|
|
|
|
|
145 |
= 6.1.1 =
|
146 |
* Fixed goDaddy Cache flush error.
|
147 |
|
3 |
Tags: custom fonts, font embed, font uploader, typography, install font
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 5.7.1
|
6 |
+
Stable tag: 6.1.2
|
7 |
|
8 |
Embed any custom font using font uploader and assign to elements. Upload font in 1 format and other needed formats are auto converted even woff2.
|
9 |
|
142 |
1. Screenshot #6. Assign fonts to custom elements.
|
143 |
|
144 |
== Changelog ==
|
145 |
+
= 6.1.2 =
|
146 |
+
* Fixed Pagely Cache issue. (https://wordpress.org/support/topic/version-6-1-1-causes-fatal-errors-on-pagely-servers/)
|
147 |
+
|
148 |
= 6.1.1 =
|
149 |
* Fixed goDaddy Cache flush error.
|
150 |
|
use-any-font.php
CHANGED
@@ -5,7 +5,7 @@ Plugin Name: Use Any Font
|
|
5 |
Plugin URI: https://dineshkarki.com.np/use-any-font
|
6 |
Description: Embed any font in your website
|
7 |
Author: Dnesscarkey
|
8 |
-
Version: 6.1.
|
9 |
Author URI: https://dineshkarki.com.np/use-any-font
|
10 |
*/
|
11 |
|
5 |
Plugin URI: https://dineshkarki.com.np/use-any-font
|
6 |
Description: Embed any font in your website
|
7 |
Author: Dnesscarkey
|
8 |
+
Version: 6.1.2
|
9 |
Author URI: https://dineshkarki.com.np/use-any-font
|
10 |
*/
|
11 |
|