Version Description
Update Breeze through WordPress Admin > Dashboard >Updates. The settings will remain intact after the update.
Download this release
Release Info
Developer | adeelkhan |
Plugin | Breeze – WordPress Cache Plugin |
Version | 2.0.14 |
Comparing to | |
See all releases |
Code changes from version 2.0.13 to 2.0.14
- breeze.php +2 -2
- inc/cache/ecommerce-cache.php +5 -0
- readme.txt +7 -1
breeze.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Breeze
|
4 |
* Description: Breeze is a WordPress cache plugin with extensive options to speed up your website. All the options including Varnish Cache are compatible with Cloudways hosting.
|
5 |
-
* Version: 2.0.
|
6 |
* Text Domain: breeze
|
7 |
* Domain Path: /languages
|
8 |
* Author: Cloudways
|
@@ -37,7 +37,7 @@ if ( ! defined( 'BREEZE_PLUGIN_DIR' ) ) {
|
|
37 |
define( 'BREEZE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
38 |
}
|
39 |
if ( ! defined( 'BREEZE_VERSION' ) ) {
|
40 |
-
define( 'BREEZE_VERSION', '2.0.
|
41 |
}
|
42 |
if ( ! defined( 'BREEZE_SITEURL' ) ) {
|
43 |
define( 'BREEZE_SITEURL', get_site_url() );
|
2 |
/**
|
3 |
* Plugin Name: Breeze
|
4 |
* Description: Breeze is a WordPress cache plugin with extensive options to speed up your website. All the options including Varnish Cache are compatible with Cloudways hosting.
|
5 |
+
* Version: 2.0.14
|
6 |
* Text Domain: breeze
|
7 |
* Domain Path: /languages
|
8 |
* Author: Cloudways
|
37 |
define( 'BREEZE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
38 |
}
|
39 |
if ( ! defined( 'BREEZE_VERSION' ) ) {
|
40 |
+
define( 'BREEZE_VERSION', '2.0.14' );
|
41 |
}
|
42 |
if ( ! defined( 'BREEZE_SITEURL' ) ) {
|
43 |
define( 'BREEZE_SITEURL', get_site_url() );
|
inc/cache/ecommerce-cache.php
CHANGED
@@ -464,8 +464,13 @@ class Breeze_Ecommerce_Cache {
|
|
464 |
public function wc_facebook_feed() {
|
465 |
$urls = array();
|
466 |
if ( class_exists( 'WC_Facebook_Loader' ) ) {
|
|
|
467 |
$urls[] = SkyVerge\WooCommerce\Facebook\Products\Feed::get_feed_data_url();
|
468 |
}
|
|
|
|
|
|
|
|
|
469 |
|
470 |
return $urls;
|
471 |
}
|
464 |
public function wc_facebook_feed() {
|
465 |
$urls = array();
|
466 |
if ( class_exists( 'WC_Facebook_Loader' ) ) {
|
467 |
+
if ( class_exists( 'SkyVerge\WooCommerce\Facebook\Products\Feed' ) ) {
|
468 |
$urls[] = SkyVerge\WooCommerce\Facebook\Products\Feed::get_feed_data_url();
|
469 |
}
|
470 |
+
if ( class_exists( 'WooCommerce\Facebook\Products\Feed' ) ) {
|
471 |
+
$urls[] = WooCommerce\Facebook\Products\Feed::get_feed_data_url();
|
472 |
+
}
|
473 |
+
}
|
474 |
|
475 |
return $urls;
|
476 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Cloudways
|
|
3 |
Tags: cache,caching, performance, wp-cache, cdn, combine, compress, speed plugin, database cache,gzip, http compression, js cache, minify, optimize, page cache, performance, speed, expire headers
|
4 |
Requires at least: 6.0
|
5 |
Tested up to: 6.1
|
6 |
-
Stable tag: 2.0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -144,6 +144,12 @@ Using Gzip, Breeze compresses the request files, further reducing the size of th
|
|
144 |
|
145 |
== Changelog ==
|
146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
= 2.0.13=
|
148 |
|
149 |
* Fix: DOMDocument class was removed while enabling the options Lazy Load Images and Cross-origin Safe Links.
|
3 |
Tags: cache,caching, performance, wp-cache, cdn, combine, compress, speed plugin, database cache,gzip, http compression, js cache, minify, optimize, page cache, performance, speed, expire headers
|
4 |
Requires at least: 6.0
|
5 |
Tested up to: 6.1
|
6 |
+
Stable tag: 2.0.14
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
144 |
|
145 |
== Changelog ==
|
146 |
|
147 |
+
= 2.0.14=
|
148 |
+
|
149 |
+
* Fix: Applied condition to look new Facebook feed link in the plugin Facebook for WooCommerce.
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
= 2.0.13=
|
154 |
|
155 |
* Fix: DOMDocument class was removed while enabling the options Lazy Load Images and Cross-origin Safe Links.
|