accordion
5 months ago
back-to-top
1 year ago
blog-posts
3 months ago
business-hours
1 year ago
button
9 months ago
category-list
3 months ago
client-logo
1 year ago
contact-form7
1 year ago
countdown-timer
3 months ago
drop-caps
1 year ago
dual-button
1 year ago
faq
1 year ago
fluent-forms
1 year ago
funfact
1 month ago
header-info
3 months ago
header-offcanvas
3 months ago
header-search
3 months ago
heading
3 months ago
icon-box
3 months ago
icon-hover
4 years ago
image-accordion
1 year ago
image-box
3 months ago
image-comparison
1 year ago
init
2 weeks ago
lottie
1 year ago
mail-chimp
3 months ago
nav-menu
3 months ago
ninja-forms
1 year ago
page-list
3 months ago
piechart
3 months ago
post-grid
3 months ago
post-list
3 months ago
post-tab
3 months ago
pricing
2 weeks ago
progressbar
1 year ago
social
9 months ago
social-share
1 year ago
tab
1 month ago
tablepress
1 month ago
team
2 weeks ago
testimonial
2 weeks ago
video
2 weeks ago
we-forms
1 year ago
wp-forms
1 year ago
widget-notice.php
5 years ago
widget-notice.php
42 lines
| 1 | <?php |
| 2 | namespace ElementsKit_Lite\Widgets; |
| 3 | defined( 'ABSPATH' ) || exit; |
| 4 | |
| 5 | trait Widget_Notice{ |
| 6 | /** |
| 7 | * Adding Go Premium message to all widgets |
| 8 | * |
| 9 | * @since 1.4.2 |
| 10 | */ |
| 11 | public function insert_pro_message() |
| 12 | { |
| 13 | if(\ElementsKit_Lite::package_type() != 'pro'){ |
| 14 | $this->start_controls_section( |
| 15 | 'ekit_section_pro', |
| 16 | [ |
| 17 | 'label' => __('Go Premium for More Features', 'elementskit-lite'), |
| 18 | ] |
| 19 | ); |
| 20 | |
| 21 | $this->add_control( |
| 22 | 'ekit_control_get_pro', |
| 23 | [ |
| 24 | 'label' => __('Unlock more possibilities', 'elementskit-lite'), |
| 25 | 'type' => \Elementor\Controls_Manager::CHOOSE, |
| 26 | 'options' => [ |
| 27 | '1' => [ |
| 28 | 'title' => '', |
| 29 | 'icon' => 'fa fa-unlock-alt', |
| 30 | ], |
| 31 | ], |
| 32 | 'default' => '1', |
| 33 | 'toggle' => false, |
| 34 | 'description' => '<span class="ekit-widget-pro-feature"> Get the <a href="https://wpmet.com/elementskit-pricing" target="_blank">Pro version</a> for more awesome elements and powerful modules.</span>', |
| 35 | ] |
| 36 | ); |
| 37 | |
| 38 | $this->end_controls_section(); |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 |