Version Description
- Vertical alignment option type enhancement
Download this release
Release Info
Developer | blocksera |
Plugin | Image Hover Effects – Elementor Addon |
Version | 1.2.6 |
Comparing to | |
See all releases |
Code changes from version 1.2.5 to 1.2.6
- assets/style.css +2 -0
- image-hover-effects-addon-for-elementor.php +3 -3
- includes/widgets.php +16 -8
- languages/eihe-lang.pot +19 -15
- readme.txt +11 -5
assets/style.css
CHANGED
@@ -30,6 +30,8 @@
|
|
30 |
|
31 |
.elementor-element.elementor-widget-e_image_hover_effects .eihe-box .eihe-caption {
|
32 |
display: flex;
|
|
|
|
|
33 |
flex-direction: column;
|
34 |
position: absolute;
|
35 |
top: 0;
|
30 |
|
31 |
.elementor-element.elementor-widget-e_image_hover_effects .eihe-box .eihe-caption {
|
32 |
display: flex;
|
33 |
+
align-items: center;
|
34 |
+
justify-content: center;
|
35 |
flex-direction: column;
|
36 |
position: absolute;
|
37 |
top: 0;
|
image-hover-effects-addon-for-elementor.php
CHANGED
@@ -5,9 +5,9 @@
|
|
5 |
* Author: Blocksera
|
6 |
* Author URI: https://blocksera.com
|
7 |
* Description: Collection of image hover effects for Elementor page builder
|
8 |
-
* Version: 1.2.
|
9 |
* Requires at least: 4.7
|
10 |
-
* Tested up to: 5.2
|
11 |
* License: GPL v3
|
12 |
* Text Domain: eihe-lang
|
13 |
* Domain Path: /languages
|
@@ -17,7 +17,7 @@ if (!defined('ABSPATH')) {
|
|
17 |
exit;
|
18 |
}
|
19 |
|
20 |
-
define('EIHE_VERSION', '1.2.
|
21 |
define('EIHE_MINIMUM_ELEMENTOR_VERSION', '1.1.2');
|
22 |
define('EIHE_PATH', plugin_dir_path(__FILE__));
|
23 |
define('EIHE_URL', plugin_dir_url(__FILE__));
|
5 |
* Author: Blocksera
|
6 |
* Author URI: https://blocksera.com
|
7 |
* Description: Collection of image hover effects for Elementor page builder
|
8 |
+
* Version: 1.2.6
|
9 |
* Requires at least: 4.7
|
10 |
+
* Tested up to: 5.2.2
|
11 |
* License: GPL v3
|
12 |
* Text Domain: eihe-lang
|
13 |
* Domain Path: /languages
|
17 |
exit;
|
18 |
}
|
19 |
|
20 |
+
define('EIHE_VERSION', '1.2.6');
|
21 |
define('EIHE_MINIMUM_ELEMENTOR_VERSION', '1.1.2');
|
22 |
define('EIHE_PATH', plugin_dir_path(__FILE__));
|
23 |
define('EIHE_URL', plugin_dir_url(__FILE__));
|
includes/widgets.php
CHANGED
@@ -206,7 +206,7 @@ class Elementor_Image_Hover_Effects_EIHE extends Widget_Base {
|
|
206 |
$this->add_control(
|
207 |
'eihe_pro_html',
|
208 |
[
|
209 |
-
'label' => __( '', 'eihe-lang'),
|
210 |
'type' => \Elementor\Controls_Manager::RAW_HTML,
|
211 |
'content_classes' => 'eihe-pro-prepare',
|
212 |
'raw' => __( '<br/><div>Meet Our Pro Effects</div><br/>Thank you for installing our plugin, you can also try our premium version which includes 150+ Creative Hover effects<br/><br/><a target="_blank" href="https://tiny.cc/eihe-pro">Emage Hover Effects</a>', 'eihe-lang'),
|
@@ -276,16 +276,24 @@ class Elementor_Image_Hover_Effects_EIHE extends Widget_Base {
|
|
276 |
]
|
277 |
);
|
278 |
|
279 |
-
$this->
|
280 |
'eihe_vertical_align',
|
281 |
[
|
282 |
-
'label' =>
|
283 |
-
'type' => Controls_Manager::
|
284 |
-
'default' => 'solid',
|
285 |
'options' => [
|
286 |
-
'flex-start'
|
287 |
-
|
288 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
],
|
290 |
'default' => 'center',
|
291 |
'selectors' => [
|
206 |
$this->add_control(
|
207 |
'eihe_pro_html',
|
208 |
[
|
209 |
+
'label' => __( ' ', 'eihe-lang'),
|
210 |
'type' => \Elementor\Controls_Manager::RAW_HTML,
|
211 |
'content_classes' => 'eihe-pro-prepare',
|
212 |
'raw' => __( '<br/><div>Meet Our Pro Effects</div><br/>Thank you for installing our plugin, you can also try our premium version which includes 150+ Creative Hover effects<br/><br/><a target="_blank" href="https://tiny.cc/eihe-pro">Emage Hover Effects</a>', 'eihe-lang'),
|
276 |
]
|
277 |
);
|
278 |
|
279 |
+
$this->add_responsive_control(
|
280 |
'eihe_vertical_align',
|
281 |
[
|
282 |
+
'label' => esc_html__('Vertical Alignment', 'eihe-lang'),
|
283 |
+
'type' => Controls_Manager::CHOOSE,
|
|
|
284 |
'options' => [
|
285 |
+
'flex-start'=> [
|
286 |
+
'title' => esc_html__('Top', 'eihe-lang'),
|
287 |
+
'icon' => 'eicon-v-align-top',
|
288 |
+
],
|
289 |
+
'center' => [
|
290 |
+
'title' => esc_html__('Middle', 'eihe-lang'),
|
291 |
+
'icon' => 'eicon-v-align-middle',
|
292 |
+
],
|
293 |
+
'flex-end' => [
|
294 |
+
'title' => esc_html__('Bottom', 'eihe-lang'),
|
295 |
+
'icon' => 'eicon-v-align-bottom',
|
296 |
+
]
|
297 |
],
|
298 |
'default' => 'center',
|
299 |
'selectors' => [
|
languages/eihe-lang.pot
CHANGED
@@ -8,7 +8,7 @@ msgstr ""
|
|
8 |
"Blank WordPress Pot "
|
9 |
"v1.0.0\n"
|
10 |
"POT-Creation-Date: "
|
11 |
-
"2019-
|
12 |
"PO-Revision-Date: \n"
|
13 |
"Last-Translator: Your "
|
14 |
"Name <you@example.com>\n"
|
@@ -295,7 +295,7 @@ msgstr ""
|
|
295 |
|
296 |
#: includes/widgets.php:116
|
297 |
#: includes/widgets.php:118
|
298 |
-
#: includes/widgets.php:
|
299 |
msgid "Title"
|
300 |
msgstr ""
|
301 |
|
@@ -342,7 +342,7 @@ msgstr ""
|
|
342 |
|
343 |
#: includes/widgets.php:147
|
344 |
#: includes/widgets.php:150
|
345 |
-
#: includes/widgets.php:
|
346 |
msgid "Description"
|
347 |
msgstr ""
|
348 |
|
@@ -353,7 +353,7 @@ msgid ""
|
|
353 |
msgstr ""
|
354 |
|
355 |
#: includes/widgets.php:160
|
356 |
-
#: includes/widgets.php:
|
357 |
msgid "Icon"
|
358 |
msgstr ""
|
359 |
|
@@ -382,6 +382,10 @@ msgstr ""
|
|
382 |
msgid "PRO Features"
|
383 |
msgstr ""
|
384 |
|
|
|
|
|
|
|
|
|
385 |
#: includes/widgets.php:212
|
386 |
msgid ""
|
387 |
"<br/><div>Meet Our Pro "
|
@@ -431,37 +435,37 @@ msgstr ""
|
|
431 |
msgid "Top"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: includes/widgets.php:
|
435 |
msgid "Middle"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: includes/widgets.php:
|
439 |
msgid "Bottom"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: includes/widgets.php:
|
443 |
msgid "Padding"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: includes/widgets.php:
|
447 |
msgid "Border Radius"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: includes/widgets.php:
|
451 |
-
#: includes/widgets.php:
|
452 |
-
#: includes/widgets.php:
|
453 |
msgid "Color"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: includes/widgets.php:
|
457 |
-
#: includes/widgets.php:
|
458 |
msgid "Typography"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/widgets.php:
|
462 |
msgid "Icon Size"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: includes/widgets.php:
|
466 |
msgid "Icon Space"
|
467 |
msgstr ""
|
8 |
"Blank WordPress Pot "
|
9 |
"v1.0.0\n"
|
10 |
"POT-Creation-Date: "
|
11 |
+
"2019-06-25 13:14+0530\n"
|
12 |
"PO-Revision-Date: \n"
|
13 |
"Last-Translator: Your "
|
14 |
"Name <you@example.com>\n"
|
295 |
|
296 |
#: includes/widgets.php:116
|
297 |
#: includes/widgets.php:118
|
298 |
+
#: includes/widgets.php:338
|
299 |
msgid "Title"
|
300 |
msgstr ""
|
301 |
|
342 |
|
343 |
#: includes/widgets.php:147
|
344 |
#: includes/widgets.php:150
|
345 |
+
#: includes/widgets.php:373
|
346 |
msgid "Description"
|
347 |
msgstr ""
|
348 |
|
353 |
msgstr ""
|
354 |
|
355 |
#: includes/widgets.php:160
|
356 |
+
#: includes/widgets.php:408
|
357 |
msgid "Icon"
|
358 |
msgstr ""
|
359 |
|
382 |
msgid "PRO Features"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: includes/widgets.php:209
|
386 |
+
msgid " "
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
#: includes/widgets.php:212
|
390 |
msgid ""
|
391 |
"<br/><div>Meet Our Pro "
|
435 |
msgid "Top"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: includes/widgets.php:290
|
439 |
msgid "Middle"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: includes/widgets.php:294
|
443 |
msgid "Bottom"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: includes/widgets.php:308
|
447 |
msgid "Padding"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: includes/widgets.php:326
|
451 |
msgid "Border Radius"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: includes/widgets.php:347
|
455 |
+
#: includes/widgets.php:382
|
456 |
+
#: includes/widgets.php:417
|
457 |
msgid "Color"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: includes/widgets.php:364
|
461 |
+
#: includes/widgets.php:399
|
462 |
msgid "Typography"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: includes/widgets.php:433
|
466 |
msgid "Icon Size"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: includes/widgets.php:453
|
470 |
msgid "Icon Space"
|
471 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate Link: https://imagehoverpro.blocksera.com
|
|
4 |
Tags: elementor, elementor addon, elementor image hover effects, image hover effects, hover effects
|
5 |
Requires PHP: 5.2.4
|
6 |
Requires at least: 4.7
|
7 |
-
Tested up to: 5.2
|
8 |
-
Stable tag: 1.2.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -13,6 +13,8 @@ This elementor addon plugin lets you add 40+ Image hover effects with title and
|
|
13 |
|
14 |
== Description ==
|
15 |
|
|
|
|
|
16 |
You can add 40+ Image hover effects with title and descriptions in a simple way using this wordpress plugin image hover effects addon for elementor.
|
17 |
|
18 |
= Features =
|
@@ -25,12 +27,13 @@ You can add 40+ Image hover effects with title and descriptions in a simple way
|
|
25 |
|
26 |
with this elementor addon plugin, you can show your title and description with various entry animations.
|
27 |
|
28 |
-
|
29 |
|
30 |
-
|
31 |
|
32 |
-
|
33 |
|
|
|
34 |
[Get Image Hover PRO](https://imagehoverpro.blocksera.com/)
|
35 |
|
36 |
* **150+ hover effects**
|
@@ -99,6 +102,9 @@ with this elementor addon plugin, you can show your title and description with v
|
|
99 |
|
100 |
== Changelog ==
|
101 |
|
|
|
|
|
|
|
102 |
= 1.2.5 =
|
103 |
* Wordpress 5.2 Compatibility Update
|
104 |
|
4 |
Tags: elementor, elementor addon, elementor image hover effects, image hover effects, hover effects
|
5 |
Requires PHP: 5.2.4
|
6 |
Requires at least: 4.7
|
7 |
+
Tested up to: 5.2.2
|
8 |
+
Stable tag: 1.2.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
+
> Image Hover Effects available for Block Editor (Gutenberg) version - [Click Here](https://wordpress.org/plugins/image-hover-effects-block/)
|
17 |
+
|
18 |
You can add 40+ Image hover effects with title and descriptions in a simple way using this wordpress plugin image hover effects addon for elementor.
|
19 |
|
20 |
= Features =
|
27 |
|
28 |
with this elementor addon plugin, you can show your title and description with various entry animations.
|
29 |
|
30 |
+
= Getting Started Tutorial Video =
|
31 |
|
32 |
+
https://www.youtube.com/watch?v=1XknWh0rtQY
|
33 |
|
34 |
+
[Free Demo](http://tiny.cc/free-eihe) | [Pro Demo](https://imagehoverpro.blocksera.com) | [**Buy Premium Version**](https://codecanyon.net/item/emage-image-hover-effects-for-elementor-page-builder/22563091) | [Contact Us](https://blocksera.com/contact/)
|
35 |
|
36 |
+
<h3>Emage Hover Effects for Elementor</h3>
|
37 |
[Get Image Hover PRO](https://imagehoverpro.blocksera.com/)
|
38 |
|
39 |
* **150+ hover effects**
|
102 |
|
103 |
== Changelog ==
|
104 |
|
105 |
+
= 1.2.6 =
|
106 |
+
* Vertical alignment option type enhancement
|
107 |
+
|
108 |
= 1.2.5 =
|
109 |
* Wordpress 5.2 Compatibility Update
|
110 |
|