accordion
3 weeks ago
back-to-top
3 weeks ago
blog-posts
3 weeks ago
business-hours
3 weeks ago
button
3 weeks ago
category-list
6 months ago
client-logo
3 weeks ago
contact-form7
1 year ago
countdown-timer
3 weeks ago
drop-caps
3 weeks ago
dual-button
3 weeks ago
faq
3 weeks ago
fluent-forms
3 weeks ago
funfact
3 weeks ago
header-info
3 weeks ago
header-offcanvas
3 weeks ago
header-search
3 weeks ago
heading
3 weeks ago
icon-box
3 weeks ago
icon-hover
3 weeks ago
image-accordion
3 weeks ago
image-box
3 weeks ago
image-comparison
3 weeks ago
init
3 weeks ago
lottie
3 weeks ago
mail-chimp
3 weeks ago
nav-menu
3 weeks ago
ninja-forms
3 weeks ago
page-list
3 weeks ago
piechart
3 weeks ago
post-grid
3 weeks ago
post-list
3 weeks ago
post-tab
3 weeks ago
pricing
3 weeks ago
progressbar
3 weeks ago
social
3 weeks ago
social-share
3 weeks ago
tab
3 weeks ago
tablepress
3 weeks ago
team
3 weeks ago
testimonial
3 weeks ago
video
3 weeks ago
we-forms
2 years ago
wp-forms
3 weeks ago
widget-notice.php
3 weeks ago
widget-notice.php
47 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">' . sprintf( |
| 35 | /* translators: 1: opening <a> tag, 2: closing </a> tag */ |
| 36 | esc_html__( 'Get the %1$s Pro version %2$s for more awesome elements and powerful modules.', 'elementskit-lite' ), |
| 37 | '<a href="' . esc_url( 'https://wpmet.com/elementskit-pricing' ) . '" target="_blank" rel="noopener noreferrer">', |
| 38 | '</a>' |
| 39 | ) . '</span>', |
| 40 | ] |
| 41 | ); |
| 42 | |
| 43 | $this->end_controls_section(); |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 |