Version Description
- Tweak: Improved font loading performance for modern browsers
- Tested up to WooCommerce 4.6
Download this release
Release Info
Developer | wpovernight |
Plugin | WooCommerce Menu Cart |
Version | 2.9.6 |
Comparing to | |
See all releases |
Code changes from version 2.9.5 to 2.9.6
- css/wpmenucart-font.css +2 -1
- readme.txt +5 -1
- wp-menu-cart.php +3 -3
css/wpmenucart-font.css
CHANGED
@@ -7,5 +7,6 @@
|
|
7 |
url('../font/WPMenuCart.ttf') format('truetype'),
|
8 |
url('../font/WPMenuCart.svg#WPMenuCart') format('svg');
|
9 |
font-weight:normal;
|
10 |
-
|
|
|
11 |
}
|
7 |
url('../font/WPMenuCart.ttf') format('truetype'),
|
8 |
url('../font/WPMenuCart.svg#WPMenuCart') format('svg');
|
9 |
font-weight:normal;
|
10 |
+
font-style:normal;
|
11 |
+
font-display:swap;
|
12 |
}
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: woocommerce, menu, bar, cart, basket, header, shopping cart, navigation, e
|
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 5.5
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 2.9.
|
9 |
|
10 |
Automatically displays a shopping cart in your menu bar. Works with WooCommerce, WP-Ecommerce, EDD, Eshop and Jigoshop
|
11 |
|
@@ -85,6 +85,10 @@ Once the plugin is activated navigate to Settings > Menu Cart Setup. Select your
|
|
85 |
|
86 |
== Changelog ==
|
87 |
|
|
|
|
|
|
|
|
|
88 |
= 2.9.5 =
|
89 |
* Added filters for menu item data
|
90 |
* Fix: backwards compatibility for WooCommerce 3.2
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 5.5
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 2.9.6
|
9 |
|
10 |
Automatically displays a shopping cart in your menu bar. Works with WooCommerce, WP-Ecommerce, EDD, Eshop and Jigoshop
|
11 |
|
85 |
|
86 |
== Changelog ==
|
87 |
|
88 |
+
= 2.9.6 =
|
89 |
+
* Tweak: Improved font loading performance for modern browsers
|
90 |
+
* Tested up to WooCommerce 4.6
|
91 |
+
|
92 |
= 2.9.5 =
|
93 |
* Added filters for menu item data
|
94 |
* Fix: backwards compatibility for WooCommerce 3.2
|
wp-menu-cart.php
CHANGED
@@ -3,18 +3,18 @@
|
|
3 |
* Plugin Name: WooCommerce Menu Cart
|
4 |
* Plugin URI: www.wpovernight.com/plugins
|
5 |
* Description: Extension for your e-commerce plugin (WooCommerce, WP-Ecommerce, Easy Digital Downloads, Eshop or Jigoshop) that places a cart icon with number of items and total cost in the menu bar. Activate the plugin, set your options and you're ready to go! Will automatically conform to your theme styles.
|
6 |
-
* Version: 2.9.
|
7 |
* Author: Jeremiah Prummer, Ewout Fernhout
|
8 |
* Author URI: www.wpovernight.com/
|
9 |
* License: GPL2
|
10 |
* Text Domain: wp-menu-cart
|
11 |
* WC requires at least: 2.0.0
|
12 |
-
* WC tested up to: 4.
|
13 |
*/
|
14 |
|
15 |
class WpMenuCart {
|
16 |
|
17 |
-
protected $plugin_version = '2.9.
|
18 |
public static $plugin_slug;
|
19 |
public static $plugin_basename;
|
20 |
|
3 |
* Plugin Name: WooCommerce Menu Cart
|
4 |
* Plugin URI: www.wpovernight.com/plugins
|
5 |
* Description: Extension for your e-commerce plugin (WooCommerce, WP-Ecommerce, Easy Digital Downloads, Eshop or Jigoshop) that places a cart icon with number of items and total cost in the menu bar. Activate the plugin, set your options and you're ready to go! Will automatically conform to your theme styles.
|
6 |
+
* Version: 2.9.6
|
7 |
* Author: Jeremiah Prummer, Ewout Fernhout
|
8 |
* Author URI: www.wpovernight.com/
|
9 |
* License: GPL2
|
10 |
* Text Domain: wp-menu-cart
|
11 |
* WC requires at least: 2.0.0
|
12 |
+
* WC tested up to: 4.6.0
|
13 |
*/
|
14 |
|
15 |
class WpMenuCart {
|
16 |
|
17 |
+
protected $plugin_version = '2.9.6';
|
18 |
public static $plugin_slug;
|
19 |
public static $plugin_basename;
|
20 |
|