Version Description
Download this release
Release Info
Developer | takanakui |
Plugin | Menu Image |
Version | 3.0.2 |
Comparing to | |
See all releases |
Code changes from version 3.0.1 to 3.0.2
- includes/css/menu-image.css +4 -1
- menu-image.php +4 -3
- readme.txt +4 -0
includes/css/menu-image.css
CHANGED
@@ -22,7 +22,7 @@
|
|
22 |
padding-left: 10px;
|
23 |
}
|
24 |
|
25 |
-
.menu-image-title.menu-image-title-above, .menu-image-title.menu-image-title-below {
|
26 |
text-align: center;
|
27 |
display: block;
|
28 |
}
|
@@ -97,4 +97,7 @@ ul li.menu-item > .menu-image-title-above.menu-link, ul li.menu-item > .menu-ima
|
|
97 |
border-radius: 25px;
|
98 |
padding: 1px 6px 3px 5px;
|
99 |
text-align: center;
|
|
|
|
|
|
|
100 |
}
|
22 |
padding-left: 10px;
|
23 |
}
|
24 |
|
25 |
+
.menu-image-title.menu-image-title-above, .menu-image-title.menu-image-title-below, .menu-image-title-below, .menu-image-title-above {
|
26 |
text-align: center;
|
27 |
display: block;
|
28 |
}
|
97 |
border-radius: 25px;
|
98 |
padding: 1px 6px 3px 5px;
|
99 |
text-align: center;
|
100 |
+
}
|
101 |
+
.menu-image-title-before.elementor-item, .menu-image-title-after.elementor-item, .menu-image-title-above.elementor-item , .menu-image-title-below.elementor-item {
|
102 |
+
display: inline-grid;
|
103 |
}
|
menu-image.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/**
|
4 |
* @package Menu_Image
|
5 |
-
* @version 3.0.
|
6 |
* @licence GPLv2
|
7 |
*/
|
8 |
/*
|
@@ -10,14 +10,14 @@ Plugin Name: Menu Image
|
|
10 |
Plugin URI: https://www.wpmenuimage.com
|
11 |
Description: Improve your navigation menu items with images, logos, icons, buttons.
|
12 |
Author: Rui Guerreiro
|
13 |
-
Version: 3.0.
|
14 |
Author URI: https://www.wpmenuimage.com
|
15 |
* License: GPLv2
|
16 |
*/
|
17 |
if ( !defined( 'ABSPATH' ) ) {
|
18 |
die;
|
19 |
}
|
20 |
-
define( 'MENU_IMAGE_VERSION', '3.0.
|
21 |
define( 'MENU_IMAGE_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
|
22 |
define( 'MENU_IMAGE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
23 |
/**
|
@@ -988,6 +988,7 @@ class WP_Menu_Image
|
|
988 |
MENU_IMAGE_VERSION
|
989 |
);
|
990 |
wp_enqueue_style( 'menu-image' );
|
|
|
991 |
}
|
992 |
|
993 |
public function wp_menu_image_fontawesome_admin_notice()
|
2 |
|
3 |
/**
|
4 |
* @package Menu_Image
|
5 |
+
* @version 3.0.2
|
6 |
* @licence GPLv2
|
7 |
*/
|
8 |
/*
|
10 |
Plugin URI: https://www.wpmenuimage.com
|
11 |
Description: Improve your navigation menu items with images, logos, icons, buttons.
|
12 |
Author: Rui Guerreiro
|
13 |
+
Version: 3.0.2
|
14 |
Author URI: https://www.wpmenuimage.com
|
15 |
* License: GPLv2
|
16 |
*/
|
17 |
if ( !defined( 'ABSPATH' ) ) {
|
18 |
die;
|
19 |
}
|
20 |
+
define( 'MENU_IMAGE_VERSION', '3.0.2' );
|
21 |
define( 'MENU_IMAGE_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
|
22 |
define( 'MENU_IMAGE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
23 |
/**
|
988 |
MENU_IMAGE_VERSION
|
989 |
);
|
990 |
wp_enqueue_style( 'menu-image' );
|
991 |
+
wp_enqueue_style( 'dashicons' );
|
992 |
}
|
993 |
|
994 |
public function wp_menu_image_fontawesome_admin_notice()
|
readme.txt
CHANGED
@@ -89,6 +89,10 @@ Check this article in the following [link](https://www.wpmenuimage.com/knowledge
|
|
89 |
|
90 |
== Changelog ==
|
91 |
|
|
|
|
|
|
|
|
|
92 |
### 3.0.1 ###
|
93 |
* New - Add RTL CSS in Admin settings
|
94 |
* Fix - Image size settings wasn't saving
|
89 |
|
90 |
== Changelog ==
|
91 |
|
92 |
+
### 3.0.2 ###
|
93 |
+
* Fix - Load Dashicons when the user isn't logged in
|
94 |
+
* Fix - General improvments
|
95 |
+
|
96 |
### 3.0.1 ###
|
97 |
* New - Add RTL CSS in Admin settings
|
98 |
* Fix - Image size settings wasn't saving
|