Version Description
- Small tweak for Elementor 2.6
Download this release
Release Info
Developer | michaelbourne |
Plugin | Custom Icons for Elementor |
Version | 0.3.1 |
Comparing to | |
See all releases |
Code changes from version 0.3 to 0.3.1
- README.txt +8 -1
- elementor-custom-icons.php +4 -4
README.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.me/yycpro
|
|
4 |
Tags: elementor, icons, fontello, icon fonts
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.2.1
|
7 |
-
Stable tag: 0.3
|
8 |
License: GPLv3 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
|
10 |
|
@@ -63,6 +63,9 @@ None yet
|
|
63 |
|
64 |
== Changelog ==
|
65 |
|
|
|
|
|
|
|
66 |
= 0.3 =
|
67 |
* Added support for the new Elementor v2.6+ icons manager
|
68 |
|
@@ -112,8 +115,12 @@ None yet
|
|
112 |
|
113 |
== Upgrade Notice ==
|
114 |
|
|
|
|
|
|
|
115 |
= 0.3 =
|
116 |
Elementor version 2.6+ Support. You MUST 'regen CSS' after this update.
|
|
|
117 |
|
118 |
= 0.2.4 =
|
119 |
PHP & CSS fixes
|
4 |
Tags: elementor, icons, fontello, icon fonts
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.2.1
|
7 |
+
Stable tag: 0.3.1
|
8 |
License: GPLv3 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
|
10 |
|
63 |
|
64 |
== Changelog ==
|
65 |
|
66 |
+
= 0.3.1 =
|
67 |
+
* Small tweak for Elementor 2.6
|
68 |
+
|
69 |
= 0.3 =
|
70 |
* Added support for the new Elementor v2.6+ icons manager
|
71 |
|
115 |
|
116 |
== Upgrade Notice ==
|
117 |
|
118 |
+
= 0.3.1 =
|
119 |
+
Small fix for Elementor 2.6
|
120 |
+
|
121 |
= 0.3 =
|
122 |
Elementor version 2.6+ Support. You MUST 'regen CSS' after this update.
|
123 |
+
Fixed query string parameter on backend to prevent collisions with other plugins
|
124 |
|
125 |
= 0.2.4 =
|
126 |
PHP & CSS fixes
|
elementor-custom-icons.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Custom Icons for Elementor
|
4 |
Description: Add custom icon fonts to the built in Elementor controls
|
5 |
-
Version: 0.3
|
6 |
Author: Michael Bourne
|
7 |
Author URI: https://michaelbourne.ca
|
8 |
License: GPL3
|
@@ -29,7 +29,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
29 |
|
30 |
defined( 'ECIcons_ROOT' ) or define( 'ECIcons_ROOT', dirname( __FILE__ ) );
|
31 |
defined( 'ECIcons_URI' ) or define( 'ECIcons_URI', plugin_dir_url( __FILE__ ) );
|
32 |
-
defined( 'ECIcons_VERSION' ) or define( 'ECIcons_VERSION', '0.3' );
|
33 |
defined( 'ECIcons_UPLOAD' ) or define( 'ECIcons_UPLOAD', 'elementor_icons_files' );
|
34 |
|
35 |
class ECIcons {
|
@@ -116,7 +116,7 @@ class ECIcons {
|
|
116 |
$this->upload_url = $upload['baseurl'] . '/' . ECIcons_UPLOAD;
|
117 |
|
118 |
// set plugin version
|
119 |
-
$this->version = '0.3';
|
120 |
|
121 |
// SSL fix because WordPress core function wp_upload_dir() doesn't check protocol.
|
122 |
if ( is_ssl() ) {
|
@@ -379,7 +379,7 @@ class ECIcons {
|
|
379 |
$options = get_option( 'ec_icons_fonts' );
|
380 |
|
381 |
if ( empty( $options ) ) {
|
382 |
-
return;
|
383 |
}
|
384 |
|
385 |
$newicons = [];
|
2 |
/*
|
3 |
Plugin Name: Custom Icons for Elementor
|
4 |
Description: Add custom icon fonts to the built in Elementor controls
|
5 |
+
Version: 0.3.1
|
6 |
Author: Michael Bourne
|
7 |
Author URI: https://michaelbourne.ca
|
8 |
License: GPL3
|
29 |
|
30 |
defined( 'ECIcons_ROOT' ) or define( 'ECIcons_ROOT', dirname( __FILE__ ) );
|
31 |
defined( 'ECIcons_URI' ) or define( 'ECIcons_URI', plugin_dir_url( __FILE__ ) );
|
32 |
+
defined( 'ECIcons_VERSION' ) or define( 'ECIcons_VERSION', '0.3.1' );
|
33 |
defined( 'ECIcons_UPLOAD' ) or define( 'ECIcons_UPLOAD', 'elementor_icons_files' );
|
34 |
|
35 |
class ECIcons {
|
116 |
$this->upload_url = $upload['baseurl'] . '/' . ECIcons_UPLOAD;
|
117 |
|
118 |
// set plugin version
|
119 |
+
$this->version = '0.3.1';
|
120 |
|
121 |
// SSL fix because WordPress core function wp_upload_dir() doesn't check protocol.
|
122 |
if ( is_ssl() ) {
|
379 |
$options = get_option( 'ec_icons_fonts' );
|
380 |
|
381 |
if ( empty( $options ) ) {
|
382 |
+
return $tabs;
|
383 |
}
|
384 |
|
385 |
$newicons = [];
|