Version Description
- October 8, 2020 =
- Added: Info Box Carousel - Border radius option for slides
- Added: Buttons - Image Size option
- Enhancement: Buttons - Added alt tag to image mark-up
Download this release
Release Info
Developer | ideaboxcreations |
Plugin | PowerPack Addons for Elementor (Instagram Feed, Pricing Table, Forms Stylers, Display Conditions, Free Elementor Widgets and Elementor Templates) |
Version | 2.1.5 |
Comparing to | |
See all releases |
Code changes from version 2.1.4 to 2.1.5
- changelog.txt +6 -0
- modules/buttons/widgets/buttons.php +24 -2
- modules/info-box/widgets/info-box-carousel.php +12 -0
- package.json +1 -1
- powerpack-lite-elementor.php +2 -2
- readme.txt +28 -18
changelog.txt
CHANGED
@@ -1,3 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
== 2.1.4 ==
|
2 |
Release date: September 14, 2020
|
3 |
* Added: Info Box, Info Box Carousel - Option to show button in case of link type box option
|
1 |
+
== 2.1.5 ==
|
2 |
+
Release date: October 8, 2020
|
3 |
+
* Added: Info Box Carousel - Border radius option for slides
|
4 |
+
* Added: Buttons - Image Size option
|
5 |
+
* Enhancement: Buttons - Added alt tag to image mark-up
|
6 |
+
|
7 |
== 2.1.4 ==
|
8 |
Release date: September 14, 2020
|
9 |
* Added: Info Box, Info Box Carousel - Option to show button in case of link type box option
|
modules/buttons/widgets/buttons.php
CHANGED
@@ -8,6 +8,7 @@ use Elementor\Controls_Manager;
|
|
8 |
use Elementor\Utils;
|
9 |
use Elementor\Icons_Manager;
|
10 |
use Elementor\Repeater;
|
|
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Typography;
|
@@ -202,6 +203,17 @@ class Buttons extends Powerpack_Widget {
|
|
202 |
],
|
203 |
]
|
204 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
$repeater->add_control(
|
206 |
'icon_text',
|
207 |
[
|
@@ -1256,7 +1268,7 @@ class Buttons extends Powerpack_Widget {
|
|
1256 |
<?php
|
1257 |
}
|
1258 |
} elseif ( 'image' === $item['pp_icon_type'] ) {
|
1259 |
-
printf( '<span class="pp-button-icon-image"
|
1260 |
} elseif ( 'text' === $item['pp_icon_type'] ) {
|
1261 |
printf( '<span class="pp-button-icon pp-button-icon-number">%1$s</span>', esc_attr( $item['icon_text'] ) );
|
1262 |
}
|
@@ -1440,7 +1452,17 @@ class Buttons extends Powerpack_Widget {
|
|
1440 |
<# } #>
|
1441 |
<# } else if ( item.pp_icon_type == 'image' ) { #>
|
1442 |
<span class="pp-button-icon-image">
|
1443 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1444 |
</span>
|
1445 |
<# } else if ( item.pp_icon_type == 'text' ) { #>
|
1446 |
<span class="pp-button-icon pp-button-icon-number">
|
8 |
use Elementor\Utils;
|
9 |
use Elementor\Icons_Manager;
|
10 |
use Elementor\Repeater;
|
11 |
+
use Elementor\Group_Control_Image_Size;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
13 |
use Elementor\Group_Control_Border;
|
14 |
use Elementor\Group_Control_Typography;
|
203 |
],
|
204 |
]
|
205 |
);
|
206 |
+
$repeater->add_group_control(
|
207 |
+
Group_Control_Image_Size::get_type(),
|
208 |
+
array(
|
209 |
+
'name' => 'icon_img',
|
210 |
+
'label' => __( 'Image Size', 'powerpack' ),
|
211 |
+
'default' => 'full',
|
212 |
+
'condition' => array(
|
213 |
+
'pp_icon_type' => 'image',
|
214 |
+
),
|
215 |
+
)
|
216 |
+
);
|
217 |
$repeater->add_control(
|
218 |
'icon_text',
|
219 |
[
|
1268 |
<?php
|
1269 |
}
|
1270 |
} elseif ( 'image' === $item['pp_icon_type'] ) {
|
1271 |
+
printf( '<span class="pp-button-icon-image">%1$s</span>', Group_Control_Image_Size::get_attachment_image_html( $item, 'icon_img', 'icon_img' ) );
|
1272 |
} elseif ( 'text' === $item['pp_icon_type'] ) {
|
1273 |
printf( '<span class="pp-button-icon pp-button-icon-number">%1$s</span>', esc_attr( $item['icon_text'] ) );
|
1274 |
}
|
1452 |
<# } #>
|
1453 |
<# } else if ( item.pp_icon_type == 'image' ) { #>
|
1454 |
<span class="pp-button-icon-image">
|
1455 |
+
<#
|
1456 |
+
var image = {
|
1457 |
+
id: item.icon_img.id,
|
1458 |
+
url: item.icon_img.url,
|
1459 |
+
size: item.icon_img_size,
|
1460 |
+
dimension: item.icon_img_custom_dimension,
|
1461 |
+
model: view.getEditModel()
|
1462 |
+
};
|
1463 |
+
var image_url = elementor.imagesManager.getImageUrl( image );
|
1464 |
+
#>
|
1465 |
+
<img src="{{{ image_url }}}">
|
1466 |
</span>
|
1467 |
<# } else if ( item.pp_icon_type == 'text' ) { #>
|
1468 |
<span class="pp-button-icon pp-button-icon-number">
|
modules/info-box/widgets/info-box-carousel.php
CHANGED
@@ -922,6 +922,18 @@ class Info_Box_Carousel extends Powerpack_Widget {
|
|
922 |
]
|
923 |
);
|
924 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
925 |
$this->add_responsive_control(
|
926 |
'info_box_padding',
|
927 |
[
|
922 |
]
|
923 |
);
|
924 |
|
925 |
+
$this->add_control(
|
926 |
+
'info_box_border_radius',
|
927 |
+
[
|
928 |
+
'label' => __( 'Border Radius', 'powerpack' ),
|
929 |
+
'type' => Controls_Manager::DIMENSIONS,
|
930 |
+
'size_units' => [ 'px', '%' ],
|
931 |
+
'selectors' => [
|
932 |
+
'{{WRAPPER}} .pp-info-box-content-wrap' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
933 |
+
],
|
934 |
+
]
|
935 |
+
);
|
936 |
+
|
937 |
$this->add_responsive_control(
|
938 |
'info_box_padding',
|
939 |
[
|
package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"name": "powerpack-lite-for-elementor",
|
3 |
-
"version": "2.1.
|
4 |
"description": "Extend Elementor Page Builder with 50+ Creative Widgets.",
|
5 |
"keywords": [],
|
6 |
"author": "IdeaBox Creations",
|
1 |
{
|
2 |
"name": "powerpack-lite-for-elementor",
|
3 |
+
"version": "2.1.5",
|
4 |
"description": "Extend Elementor Page Builder with 50+ Creative Widgets.",
|
5 |
"keywords": [],
|
6 |
"author": "IdeaBox Creations",
|
powerpack-lite-elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: PowerPack Lite for Elementor
|
4 |
* Plugin URI: https://powerpackelements.com
|
5 |
* Description: Custom addons for Elementor page builder.
|
6 |
-
* Version: 2.1.
|
7 |
* Author: IdeaBox Creations
|
8 |
* Author URI: http://ideabox.io/
|
9 |
* License: GNU General Public License v2.0
|
@@ -14,7 +14,7 @@
|
|
14 |
|
15 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
16 |
|
17 |
-
define( 'POWERPACK_ELEMENTS_LITE_VER', '2.1.
|
18 |
define( 'POWERPACK_ELEMENTS_LITE_PATH', plugin_dir_path( __FILE__ ) );
|
19 |
define( 'POWERPACK_ELEMENTS_LITE_BASE', plugin_basename( __FILE__ ) );
|
20 |
define( 'POWERPACK_ELEMENTS_LITE_URL', plugins_url( '/', __FILE__ ) );
|
3 |
* Plugin Name: PowerPack Lite for Elementor
|
4 |
* Plugin URI: https://powerpackelements.com
|
5 |
* Description: Custom addons for Elementor page builder.
|
6 |
+
* Version: 2.1.5
|
7 |
* Author: IdeaBox Creations
|
8 |
* Author URI: http://ideabox.io/
|
9 |
* License: GNU General Public License v2.0
|
14 |
|
15 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
16 |
|
17 |
+
define( 'POWERPACK_ELEMENTS_LITE_VER', '2.1.5' );
|
18 |
define( 'POWERPACK_ELEMENTS_LITE_PATH', plugin_dir_path( __FILE__ ) );
|
19 |
define( 'POWERPACK_ELEMENTS_LITE_BASE', plugin_basename( __FILE__ ) );
|
20 |
define( 'POWERPACK_ELEMENTS_LITE_URL', plugins_url( '/', __FILE__ ) );
|
readme.txt
CHANGED
@@ -38,20 +38,20 @@ Want to connect us with more? We have an active Facebook Group where we keep pos
|
|
38 |
8. [Info Box](https://powerpackelements.com/demo/info-box/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) - A fantastic content widget that can be used to create beautiful content blocks with **icon, heading, description**, and **call-to-action** button/link.
|
39 |
9. [Info Box Carousel](https://powerpackelements.com/demo/info-box-carousel/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – A creative widget that allows you to create a slider of your infobox content.
|
40 |
10. [Info List](https://powerpackelements.com/demo/info-list/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Another content widget that allows you to showcase product features and services with icon and description
|
41 |
-
11. [Info Table](https://powerpackelements.com/demo/info-table/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) –
|
42 |
12. [Instagram Feed](https://powerpackelements.com/demo/instagram-feed/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – A creative widget that allows you to display Instagram Gallery on your website with various impressive options.
|
43 |
13. [Link Effects](https://powerpackelements.com/demo/link-effects/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – With this wonderful widget you can create stylish and attractive links with various hover effects.
|
44 |
-
14. [Logo Grid](https://powerpackelements.com/demo/logo-grid/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – A widget to create grid of clients or partner logos
|
45 |
-
15. [Logo Carousel](https://powerpackelements.com/demo/logo-carousel/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Create a slider of clients or partner logos
|
46 |
-
16. [Price Menu](https://powerpackelements.com/demo/pricing-menu/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Showcase your product with price or create restaurant/services menus
|
47 |
-
17. [Pricing Table](https://powerpackelements.com/demo/pricing-table/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – List your packages with various styling options
|
48 |
-
18. [Promo Box](https://powerpackelements.com/demo/promo-box/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Design stylish and attractive promo banners
|
49 |
-
19. [Team Member](https://powerpackelements.com/demo/team-member/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Show off your team of experts with this widget
|
50 |
-
20. [Team Member Carousel](https://powerpackelements.com/demo/team-member-carousel/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Create beautiful carousel of team members
|
51 |
-
21. [Contact Form 7](https://powerpackelements.com/demo/contact-form/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Style your Contact Form 7 through Elementor with numerous customization options
|
52 |
-
22. [Gravity Forms Styler](https://powerpackelements.com/demo/contact-form/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Style your Gravity Forms through Elementor with numerous customization options
|
53 |
-
23. [Caldera Forms Styler](https://powerpackelements.com/demo/contact-form/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Style Caldera Forms through Elementor with numerous customization options
|
54 |
-
24. [Ninja Forms Styler](https://powerpackelements.com/demo/contact-form/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Style Ninja Forms through Elementor with numerous customization options
|
55 |
25. [WPForms Styler](https://powerpackelements.com/demo/contact-form/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Style WPForms through Elementor with numerous customization options.
|
56 |
26. [Fluent Forms](https://powerpackelements.com/elementor-widgets/wp-fluent-forms/) - Style WP Fluent forms through Elementor with numerous customization options.
|
57 |
27. [Formidable Forms](https://powerpackelements.com/elementor-widgets/formidable-forms/) - Style Formidable Forms through Elementor with numerous customization options.
|
@@ -59,8 +59,8 @@ Want to connect us with more? We have an active Facebook Group where we keep pos
|
|
59 |
29. [Image Accordion](https://powerpackelements.com/demo/image-accordion/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Gives the flexibility to toggle between image panels.
|
60 |
30. [Flip Box](https://powerpackelements.com/demo/flip-box/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Add dual side content on information boxes with flip animations.
|
61 |
31. [Content Ticker](https://powerpackelements.com/demo/content-ticker/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Display updates, popular content or messages.
|
62 |
-
32. [Buttons](https://powerpackelements.com/button-widget/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Create call-to-action button or multiple buttons with this widget
|
63 |
-
33. [Scroll Image](https://powerpackelements.com/demo/image-scroll/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Vertical and Horizontal scroll effect on image
|
64 |
34. [Twitter](https://powerpackelements.com/demo/twitter-widget/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Embed Twitter tweet and follow buttons, embedded grid and timeline.
|
65 |
35. [Fancy Headings](https://powerpackelements.com/elementor-widgets/fancy-heading?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) - Setup stylish headings on your Elementor website with gradient fill and background clipping options.
|
66 |
36. [Posts](https://powerpackelements.com/elementor-widgets/posts/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) - Display blog posts beautifully on your Elementor websites.
|
@@ -135,18 +135,23 @@ PowerPack template library includes 150+ ready-to-use section blocks. All block
|
|
135 |
2. [How-to Schema Markup Widget](https://powerpackelements.com/elementor-widgets/how-to/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) – Easily create stylish How-to Guides, Tutorials, and walk-throughs.
|
136 |
|
137 |
### CREATIVE EXTENSIONS
|
138 |
-
|
139 |
Use Elementor for advanced cases like timed-content, content for logged in users, special content based on user's browser, display content based on page, post, archive rules, and much more. The most UNIQUE solution for Elementor widgets and sections. [Click here for details.](https://powerpackelements.com/display-conditions/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link)
|
140 |
|
141 |
https://www.youtube.com/watch?v=blCGxZujnJg
|
142 |
|
143 |
-
[Header Footer Builder](https://powerpackelements.com/elementor-widgets/header-footer-builder-elementor/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link)
|
144 |
Create a custom Header and Footer layout for your website.
|
145 |
-
|
|
|
146 |
Copy-paste content from one domain to another easily.
|
147 |
-
|
|
|
148 |
Add stylish & animated backgrounds on your website.
|
149 |
|
|
|
|
|
|
|
150 |
## Top Features of PowerPack Elementor Addon
|
151 |
- **Elementor 2.0 Compatible**
|
152 |
PowerPack widgets are compatible with Elementor 2.0 Dynamic Fields. Hence, you can use them to display dynamic content.
|
@@ -201,6 +206,11 @@ Not at all! All the widgets and settings are easy to use with drag & drop interf
|
|
201 |
|
202 |
== Changelog ==
|
203 |
|
|
|
|
|
|
|
|
|
|
|
204 |
= 2.1.4 - September 14, 2020 =
|
205 |
* Added: Info Box, Info Box Carousel - Option to show button in case of link type box option
|
206 |
* Enhancement: Info Box Carousel - Updated Choose Arrow control
|
38 |
8. [Info Box](https://powerpackelements.com/demo/info-box/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) - A fantastic content widget that can be used to create beautiful content blocks with **icon, heading, description**, and **call-to-action** button/link.
|
39 |
9. [Info Box Carousel](https://powerpackelements.com/demo/info-box-carousel/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – A creative widget that allows you to create a slider of your infobox content.
|
40 |
10. [Info List](https://powerpackelements.com/demo/info-list/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Another content widget that allows you to showcase product features and services with icon and description
|
41 |
+
11. [Info Table](https://powerpackelements.com/demo/info-table/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Create beautiful info boxes with **icon, heading, description**, and **call-to-action** button/link.
|
42 |
12. [Instagram Feed](https://powerpackelements.com/demo/instagram-feed/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – A creative widget that allows you to display Instagram Gallery on your website with various impressive options.
|
43 |
13. [Link Effects](https://powerpackelements.com/demo/link-effects/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – With this wonderful widget you can create stylish and attractive links with various hover effects.
|
44 |
+
14. [Logo Grid](https://powerpackelements.com/demo/logo-grid/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – A widget to create grid of clients or partner logos.
|
45 |
+
15. [Logo Carousel](https://powerpackelements.com/demo/logo-carousel/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Create a slider of clients or partner logos.
|
46 |
+
16. [Price Menu](https://powerpackelements.com/demo/pricing-menu/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Showcase your product with price or create restaurant/services menus.
|
47 |
+
17. [Pricing Table](https://powerpackelements.com/demo/pricing-table/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – List your packages with various styling options.
|
48 |
+
18. [Promo Box](https://powerpackelements.com/demo/promo-box/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Design stylish and attractive promo banners.
|
49 |
+
19. [Team Member](https://powerpackelements.com/demo/team-member/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Show off your team of experts with this widget.
|
50 |
+
20. [Team Member Carousel](https://powerpackelements.com/demo/team-member-carousel/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Create beautiful carousel of team members.
|
51 |
+
21. [Contact Form 7](https://powerpackelements.com/demo/contact-form/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Style your Contact Form 7 through Elementor with numerous customization options.
|
52 |
+
22. [Gravity Forms Styler](https://powerpackelements.com/demo/contact-form/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Style your Gravity Forms through Elementor with numerous customization options.
|
53 |
+
23. [Caldera Forms Styler](https://powerpackelements.com/demo/contact-form/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Style Caldera Forms through Elementor with numerous customization options.
|
54 |
+
24. [Ninja Forms Styler](https://powerpackelements.com/demo/contact-form/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Style Ninja Forms through Elementor with numerous customization options.
|
55 |
25. [WPForms Styler](https://powerpackelements.com/demo/contact-form/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Style WPForms through Elementor with numerous customization options.
|
56 |
26. [Fluent Forms](https://powerpackelements.com/elementor-widgets/wp-fluent-forms/) - Style WP Fluent forms through Elementor with numerous customization options.
|
57 |
27. [Formidable Forms](https://powerpackelements.com/elementor-widgets/formidable-forms/) - Style Formidable Forms through Elementor with numerous customization options.
|
59 |
29. [Image Accordion](https://powerpackelements.com/demo/image-accordion/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Gives the flexibility to toggle between image panels.
|
60 |
30. [Flip Box](https://powerpackelements.com/demo/flip-box/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Add dual side content on information boxes with flip animations.
|
61 |
31. [Content Ticker](https://powerpackelements.com/demo/content-ticker/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Display updates, popular content or messages.
|
62 |
+
32. [Buttons](https://powerpackelements.com/button-widget/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Create call-to-action button or multiple buttons with this widget.
|
63 |
+
33. [Scroll Image](https://powerpackelements.com/demo/image-scroll/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Vertical and Horizontal scroll effect on image.
|
64 |
34. [Twitter](https://powerpackelements.com/demo/twitter-widget/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Embed Twitter tweet and follow buttons, embedded grid and timeline.
|
65 |
35. [Fancy Headings](https://powerpackelements.com/elementor-widgets/fancy-heading?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) - Setup stylish headings on your Elementor website with gradient fill and background clipping options.
|
66 |
36. [Posts](https://powerpackelements.com/elementor-widgets/posts/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) - Display blog posts beautifully on your Elementor websites.
|
135 |
2. [How-to Schema Markup Widget](https://powerpackelements.com/elementor-widgets/how-to/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) – Easily create stylish How-to Guides, Tutorials, and walk-throughs.
|
136 |
|
137 |
### CREATIVE EXTENSIONS
|
138 |
+
- **Advanced Display Conditions Functionality**
|
139 |
Use Elementor for advanced cases like timed-content, content for logged in users, special content based on user's browser, display content based on page, post, archive rules, and much more. The most UNIQUE solution for Elementor widgets and sections. [Click here for details.](https://powerpackelements.com/display-conditions/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link)
|
140 |
|
141 |
https://www.youtube.com/watch?v=blCGxZujnJg
|
142 |
|
143 |
+
- **[Header Footer Builder](https://powerpackelements.com/elementor-widgets/header-footer-builder-elementor/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link)**
|
144 |
Create a custom Header and Footer layout for your website.
|
145 |
+
|
146 |
+
- **[Magic Wand Feature](https://powerpackelements.com/elementor-widgets/cross-domain-copy-paste/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link)**
|
147 |
Copy-paste content from one domain to another easily.
|
148 |
+
|
149 |
+
- **[BackGround Effects](https://powerpackelements.com/elementor-widgets/background-effects/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link)**
|
150 |
Add stylish & animated backgrounds on your website.
|
151 |
|
152 |
+
- **[WooCommerce Builder For Elementor](https://powerpackelements.com/woocommerce-builder/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link)**
|
153 |
+
Includes a wide range of Woo Widgets that lets you design WooCommerce Single Product and Archive Page Templates. Easily!
|
154 |
+
|
155 |
## Top Features of PowerPack Elementor Addon
|
156 |
- **Elementor 2.0 Compatible**
|
157 |
PowerPack widgets are compatible with Elementor 2.0 Dynamic Fields. Hence, you can use them to display dynamic content.
|
206 |
|
207 |
== Changelog ==
|
208 |
|
209 |
+
= 2.1.5 - October 8, 2020 =
|
210 |
+
* Added: Info Box Carousel - Border radius option for slides
|
211 |
+
* Added: Buttons - Image Size option
|
212 |
+
* Enhancement: Buttons - Added alt tag to image mark-up
|
213 |
+
|
214 |
= 2.1.4 - September 14, 2020 =
|
215 |
* Added: Info Box, Info Box Carousel - Option to show button in case of link type box option
|
216 |
* Enhancement: Info Box Carousel - Updated Choose Arrow control
|