Changeset 2700307
- Timestamp:
- 03/27/2022 07:07:32 PM (4 years ago)
- Location:
- wpbits-addons-for-elementor/trunk
- Files:
-
- 47 edited
-
class-wpbits.php (modified) (1 diff)
-
freemius/includes/class-freemius.php (modified) (5 diffs)
-
freemius/includes/managers/class-fs-admin-notice-manager.php (modified) (1 diff)
-
freemius/includes/sdk/Exceptions/ArgumentNotExistException.php (modified) (1 diff)
-
freemius/includes/sdk/Exceptions/EmptyArgumentException.php (modified) (1 diff)
-
freemius/includes/sdk/Exceptions/Exception.php (modified) (1 diff)
-
freemius/includes/sdk/Exceptions/InvalidArgumentException.php (modified) (1 diff)
-
freemius/includes/sdk/Exceptions/OAuthException.php (modified) (1 diff)
-
freemius/includes/sdk/FreemiusBase.php (modified) (1 diff)
-
freemius/includes/sdk/FreemiusWordPress.php (modified) (1 diff)
-
freemius/require.php (modified) (1 diff)
-
freemius/start.php (modified) (1 diff)
-
freemius/templates/account/partials/addon.php (modified) (1 diff)
-
freemius/templates/ajax-loader.php (modified) (1 diff)
-
freemius/templates/debug.php (modified) (4 diffs)
-
freemius/templates/firewall-issues-js.php (modified) (2 diffs)
-
freemius/templates/partials/network-activation.php (modified) (1 diff)
-
freemius/templates/sticky-admin-notice-js.php (modified) (1 diff)
-
i18n/languages/wpbits-addons-for-elementor.pot (modified) (42 diffs)
-
includes/widgets/accordion.php (modified) (1 diff)
-
includes/widgets/banner.php (modified) (1 diff)
-
includes/widgets/business_hours.php (modified) (1 diff)
-
includes/widgets/button.php (modified) (1 diff)
-
includes/widgets/contact_form_7.php (modified) (1 diff)
-
includes/widgets/countdown.php (modified) (1 diff)
-
includes/widgets/counter.php (modified) (1 diff)
-
includes/widgets/dropdown_button.php (modified) (1 diff)
-
includes/widgets/heading.php (modified) (1 diff)
-
includes/widgets/hotspot.php (modified) (1 diff)
-
includes/widgets/icon-box.php (modified) (1 diff)
-
includes/widgets/image_compare.php (modified) (1 diff)
-
includes/widgets/login_form.php (modified) (1 diff)
-
includes/widgets/logo_grid.php (modified) (1 diff)
-
includes/widgets/photo_gallery.php (modified) (1 diff)
-
includes/widgets/piechart.php (modified) (1 diff)
-
includes/widgets/price_menu.php (modified) (1 diff)
-
includes/widgets/price_table.php (modified) (1 diff)
-
includes/widgets/progress_bar.php (modified) (1 diff)
-
includes/widgets/shape.php (modified) (1 diff)
-
includes/widgets/tabs.php (modified) (1 diff)
-
includes/widgets/team_member.php (modified) (1 diff)
-
includes/widgets/testimonial.php (modified) (1 diff)
-
includes/widgets/text_rotator.php (modified) (1 diff)
-
includes/widgets/timeline.php (modified) (1 diff)
-
includes/widgets/tooltip.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wpbits-addons-for-elementor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wpbits-addons-for-elementor/trunk/class-wpbits.php
r2543643 r2700307 19 19 * @var string 20 20 */ 21 public $version = '1.3. 1';21 public $version = '1.3.2'; 22 22 23 23 /** -
wpbits-addons-for-elementor/trunk/freemius/includes/class-freemius.php
r2519129 r2700307 3551 3551 */ 3552 3552 static function _toggle_debug_mode() { 3553 check_admin_referer( 'fs_toggle_debug_mode' ); 3554 3553 3555 if ( ! is_super_admin() ) { 3554 3556 return; … … 3572 3574 */ 3573 3575 static function _get_debug_log() { 3576 check_admin_referer( 'fs_get_debug_log' ); 3577 3578 if ( ! is_super_admin() ) { 3579 return; 3580 } 3581 3582 $limit = min( ! empty( $_POST['limit'] ) ? absint( $_POST['limit'] ) : 200, 200 ); 3583 $offset = min( ! empty( $_POST['offset'] ) ? absint( $_POST['offset'] ) : 200, 200 ); 3584 3574 3585 $logs = FS_Logger::load_db_logs( 3575 3586 fs_request_get( 'filters', false, 'post' ), 3576 ! empty( $_POST['limit'] ) && is_numeric( $_POST['limit'] ) ? $_POST['limit'] : 200,3577 ! empty( $_POST['offset'] ) && is_numeric( $_POST['offset'] ) ? $_POST['offset'] : 03587 $limit, 3588 $offset 3578 3589 ); 3579 3590 … … 4048 4059 $key = fs_strip_url_protocol( get_site_url( $blog_id ) ); 4049 4060 4050 $secure_auth = SECURE_AUTH_KEY;4061 $secure_auth = defined( 'SECURE_AUTH_KEY' ) ? SECURE_AUTH_KEY : ''; 4051 4062 if ( empty( $secure_auth ) || 4052 4063 false !== strpos( $secure_auth, ' ' ) || … … 4448 4459 */ 4449 4460 function _email_about_firewall_issue() { 4461 check_admin_referer( 'fs_resolve_firewall_issues' ); 4462 4463 if ( ! current_user_can( is_multisite() ? 'manage_options' : 'activate_plugins' ) ) { 4464 return; 4465 } 4466 4450 4467 $this->_admin_notices->remove_sticky( 'failed_connect_api' ); 4451 4468 … … 4522 4539 */ 4523 4540 function _retry_connectivity_test() { 4541 check_admin_referer( 'fs_retry_connectivity_test' ); 4542 4543 if ( ! current_user_can( is_multisite() ? 'manage_options' : 'activate_plugins' ) ) { 4544 return; 4545 } 4546 4524 4547 $this->_admin_notices->remove_sticky( 'failed_connect_api_first' ); 4525 4548 -
wpbits-addons-for-elementor/trunk/freemius/includes/managers/class-fs-admin-notice-manager.php
r2519129 r2700307 176 176 */ 177 177 function dismiss_notice_ajax_callback() { 178 $this->_sticky_storage->remove( $_POST['message_id'] ); 178 check_admin_referer( 'fs_dismiss_notice_action' ); 179 180 if ( ! is_numeric( $_POST['message_id'] ) ) { 181 $this->_sticky_storage->remove( $_POST['message_id'] ); 182 } 183 179 184 wp_die(); 180 185 } -
wpbits-addons-for-elementor/trunk/freemius/includes/sdk/Exceptions/ArgumentNotExistException.php
r2519129 r2700307 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) { 3 exit; 4 } 5 2 6 if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) { 3 7 exit; -
wpbits-addons-for-elementor/trunk/freemius/includes/sdk/Exceptions/EmptyArgumentException.php
r2519129 r2700307 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) { 3 exit; 4 } 5 2 6 if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) { 3 7 exit; -
wpbits-addons-for-elementor/trunk/freemius/includes/sdk/Exceptions/Exception.php
r2519129 r2700307 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) { 3 exit; 4 } 5 2 6 if ( ! class_exists( 'Freemius_Exception' ) ) { 3 7 /** -
wpbits-addons-for-elementor/trunk/freemius/includes/sdk/Exceptions/InvalidArgumentException.php
r2519129 r2700307 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) { 3 exit; 4 } 5 2 6 if ( ! class_exists( 'Freemius_Exception' ) ) { 3 7 exit; -
wpbits-addons-for-elementor/trunk/freemius/includes/sdk/Exceptions/OAuthException.php
r2519129 r2700307 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) { 3 exit; 4 } 5 2 6 if ( ! class_exists( 'Freemius_Exception' ) ) { 3 7 exit; -
wpbits-addons-for-elementor/trunk/freemius/includes/sdk/FreemiusBase.php
r2519129 r2700307 16 16 */ 17 17 18 if ( ! defined( 'ABSPATH' ) ) { 19 exit; 20 } 21 18 22 if ( ! defined( 'FS_API__VERSION' ) ) { 19 23 define( 'FS_API__VERSION', '1' ); -
wpbits-addons-for-elementor/trunk/freemius/includes/sdk/FreemiusWordPress.php
r2519129 r2700307 15 15 * under the License. 16 16 */ 17 if ( ! defined( 'ABSPATH' ) ) { 18 exit; 19 } 17 20 18 21 require_once dirname( __FILE__ ) . '/FreemiusBase.php'; -
wpbits-addons-for-elementor/trunk/freemius/require.php
r2519129 r2700307 6 6 * @since 1.1.9 7 7 */ 8 9 if ( ! defined( 'ABSPATH' ) ) { 10 exit; 11 } 8 12 9 13 // Configuration should be loaded first. -
wpbits-addons-for-elementor/trunk/freemius/start.php
r2519129 r2700307 16 16 * @var string 17 17 */ 18 $this_sdk_version = '2.4. 2';18 $this_sdk_version = '2.4.3'; 19 19 20 20 #region SDK Selection Logic -------------------------------------------------------------------- -
wpbits-addons-for-elementor/trunk/freemius/templates/account/partials/addon.php
r2519129 r2700307 1 1 <?php 2 3 if ( ! defined( 'ABSPATH' ) ) { 4 exit; 5 } 6 2 7 /** 3 8 * @var array $VARS -
wpbits-addons-for-elementor/trunk/freemius/templates/ajax-loader.php
r2519129 r2700307 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) { 3 exit; 4 } 5 ?> 1 6 <div class="fs-ajax-loader" style="display: none"><?php for ( $i = 1; $i <= 8; $i ++ ) : ?><div class="fs-ajax-loader-bar fs-ajax-loader-bar-<?php echo $i ?>"></div><?php endfor ?></div> -
wpbits-addons-for-elementor/trunk/freemius/templates/debug.php
r2519129 r2700307 38 38 $.post( ajaxurl, { 39 39 action: 'fs_toggle_debug_mode', 40 // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline. 41 _wpnonce : <?php echo wp_json_encode( wp_create_nonce( 'fs_toggle_debug_mode' ) ); ?>, 40 42 is_on : ($(this).hasClass( 'fs-on' ) ? 1 : 0) 41 43 }, function ( response ) { … … 112 114 $.post(ajaxurl, { 113 115 action : 'fs_get_db_option', 114 _wpnonce : '<?php echo wp_create_nonce( 'fs_get_db_option' ) ?>', 116 // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline. 117 _wpnonce : <?php echo wp_json_encode( wp_create_nonce( 'fs_get_db_option' ) ); ?>, 115 118 option_name: optionName 116 119 }, function (response) { … … 132 135 $.post(ajaxurl, { 133 136 action : 'fs_set_db_option', 134 _wpnonce : '<?php echo wp_create_nonce( 'fs_set_db_option' ) ?>', 137 // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline. 138 _wpnonce : <?php echo wp_json_encode( wp_create_nonce( 'fs_set_db_option' ) ); ?>, 135 139 option_name : optionName, 136 140 option_value: optionValue … … 725 729 $.post(ajaxurl, { 726 730 action : 'fs_get_debug_log', 731 // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline. 732 _wpnonce : <?php echo wp_json_encode( wp_create_nonce( 'fs_get_debug_log' ) ); ?>, 727 733 filters: filters, 728 734 offset : offset, -
wpbits-addons-for-elementor/trunk/freemius/templates/firewall-issues-js.php
r2519129 r2700307 23 23 ajaxActionSuffix = notice.attr( 'data-manager-id' ).replace( ':', '-' ); 24 24 25 var data = { 26 action : 'fs_resolve_firewall_issues_' + ajaxActionSuffix, 27 error_type: error_type 28 }; 25 var data = { 26 action : 'fs_resolve_firewall_issues_' + ajaxActionSuffix, 27 // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline. 28 _wpnonce : <?php echo wp_json_encode( wp_create_nonce( 'fs_resolve_firewall_issues' ) ); ?>, 29 error_type: error_type 30 }; 29 31 30 32 if ( 'squid' === error_type ) { … … 40 42 41 43 if ( 'retry_ping' === error_type ) { 42 data.action = 'fs_retry_connectivity_test_' + ajaxActionSuffix; 44 data.action = 'fs_retry_connectivity_test_' + ajaxActionSuffix; 45 // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline. 46 data._wpnonce = <?php echo wp_json_encode( wp_create_nonce( 'fs_retry_connectivity_test' ) ); ?>; 43 47 } 44 48 -
wpbits-addons-for-elementor/trunk/freemius/templates/partials/network-activation.php
r2519129 r2700307 1 1 <?php 2 3 if ( ! defined( 'ABSPATH' ) ) { 4 exit; 5 } 6 2 7 /** 3 8 * @var array $VARS -
wpbits-addons-for-elementor/trunk/freemius/templates/sticky-admin-notice-js.php
r2519129 r2700307 24 24 notice.fadeOut( 'fast', function() { 25 25 var data = { 26 action : 'fs_dismiss_notice_action_' + ajaxActionSuffix, 26 action : 'fs_dismiss_notice_action_' + ajaxActionSuffix, 27 // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline. 28 _wpnonce : <?php echo wp_json_encode( wp_create_nonce( 'fs_dismiss_notice_action' ) ); ?>, 27 29 message_id: id 28 30 }; -
wpbits-addons-for-elementor/trunk/i18n/languages/wpbits-addons-for-elementor.pot
r2543643 r2700307 1 # Copyright (C) 202 1WPBits1 # Copyright (C) 2022 WPBits 2 2 # This file is distributed under the GPL3. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WPBits Addons For Elementor 1.3. 1\n"5 "Project-Id-Version: WPBits Addons For Elementor 1.3.2\n" 6 6 "Report-Msgid-Bugs-To: https://wpbits.net\n" 7 "POT-Creation-Date: 202 1-06-07 11:21:28+00:00\n"7 "POT-Creation-Date: 2022-03-27 18:53:25+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=utf-8\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 "PO-Revision-Date: 202 1-MO-DA HO:MI+ZONE\n"11 "PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: WPBits\n" … … 623 623 624 624 #: includes/cmb2/includes/CMB2_Hookup.php:561 625 #: svn/trunk/includes/cmb2/includes/CMB2_Hookup.php:56 0625 #: svn/trunk/includes/cmb2/includes/CMB2_Hookup.php:561 626 626 msgid "Toggle panel: %s" 627 627 msgstr "" … … 1145 1145 #: svn/trunk/includes/widgets/icon-box.php:83 1146 1146 #: svn/trunk/includes/widgets/icon-box.php:367 1147 #: svn/trunk/includes/widgets/photo_gallery.php:6 461148 #: svn/trunk/includes/widgets/photo_gallery.php:6 691147 #: svn/trunk/includes/widgets/photo_gallery.php:631 1148 #: svn/trunk/includes/widgets/photo_gallery.php:654 1149 1149 #: svn/trunk/includes/widgets/price_table.php:53 1150 1150 #: svn/trunk/includes/widgets/price_table.php:282 … … 1448 1448 #: svn/trunk/includes/widgets/login_form.php:1182 1449 1449 #: svn/trunk/includes/widgets/logo_grid.php:464 1450 #: svn/trunk/includes/widgets/photo_gallery.php:1 951451 #: svn/trunk/includes/widgets/photo_gallery.php:3 361450 #: svn/trunk/includes/widgets/photo_gallery.php:180 1451 #: svn/trunk/includes/widgets/photo_gallery.php:321 1452 1452 #: svn/trunk/includes/widgets/price_table.php:368 1453 1453 #: svn/trunk/includes/widgets/price_table.php:1726 … … 1548 1548 #: svn/trunk/includes/widgets/logo_grid.php:487 1549 1549 #: svn/trunk/includes/widgets/logo_grid.php:550 1550 #: svn/trunk/includes/widgets/photo_gallery.php:2 181551 #: svn/trunk/includes/widgets/photo_gallery.php:2 821550 #: svn/trunk/includes/widgets/photo_gallery.php:203 1551 #: svn/trunk/includes/widgets/photo_gallery.php:267 1552 1552 #: svn/trunk/includes/widgets/piechart.php:192 1553 1553 #: svn/trunk/includes/widgets/price_menu.php:223 … … 1683 1683 #: svn/trunk/includes/widgets/logo_grid.php:558 1684 1684 #: svn/trunk/includes/widgets/logo_grid.php:672 1685 #: svn/trunk/includes/widgets/photo_gallery.php:2 261686 #: svn/trunk/includes/widgets/photo_gallery.php:2 901687 #: svn/trunk/includes/widgets/photo_gallery.php:4 881688 #: svn/trunk/includes/widgets/photo_gallery.php:6 191689 #: svn/trunk/includes/widgets/photo_gallery.php:7 321685 #: svn/trunk/includes/widgets/photo_gallery.php:211 1686 #: svn/trunk/includes/widgets/photo_gallery.php:275 1687 #: svn/trunk/includes/widgets/photo_gallery.php:473 1688 #: svn/trunk/includes/widgets/photo_gallery.php:604 1689 #: svn/trunk/includes/widgets/photo_gallery.php:717 1690 1690 #: svn/trunk/includes/widgets/price_menu.php:231 1691 1691 #: svn/trunk/includes/widgets/price_menu.php:341 … … 1805 1805 #: svn/trunk/includes/widgets/logo_grid.php:571 1806 1806 #: svn/trunk/includes/widgets/logo_grid.php:685 1807 #: svn/trunk/includes/widgets/photo_gallery.php:2 491808 #: svn/trunk/includes/widgets/photo_gallery.php: 3121809 #: svn/trunk/includes/widgets/photo_gallery.php:7 541807 #: svn/trunk/includes/widgets/photo_gallery.php:234 1808 #: svn/trunk/includes/widgets/photo_gallery.php:297 1809 #: svn/trunk/includes/widgets/photo_gallery.php:739 1810 1810 #: svn/trunk/includes/widgets/piechart.php:201 1811 1811 #: svn/trunk/includes/widgets/price_menu.php:244 … … 1870 1870 #: svn/trunk/includes/widgets/heading.php:464 1871 1871 #: svn/trunk/includes/widgets/login_form.php:399 1872 #: svn/trunk/includes/widgets/photo_gallery.php:3 591873 #: svn/trunk/includes/widgets/photo_gallery.php:3 941872 #: svn/trunk/includes/widgets/photo_gallery.php:344 1873 #: svn/trunk/includes/widgets/photo_gallery.php:379 1874 1874 #: svn/trunk/includes/widgets/price_table.php:493 1875 1875 #: svn/trunk/includes/widgets/price_table.php:601 … … 1907 1907 #: svn/trunk/includes/widgets/login_form.php:1243 1908 1908 #: svn/trunk/includes/widgets/logo_grid.php:527 1909 #: svn/trunk/includes/widgets/photo_gallery.php:2 591910 #: svn/trunk/includes/widgets/photo_gallery.php:3 711909 #: svn/trunk/includes/widgets/photo_gallery.php:244 1910 #: svn/trunk/includes/widgets/photo_gallery.php:356 1911 1911 #: svn/trunk/includes/widgets/price_table.php:1789 1912 1912 #: svn/trunk/includes/widgets/team_member.php:386 … … 1989 1989 #: svn/trunk/includes/widgets/login_form.php:1324 1990 1990 #: svn/trunk/includes/widgets/login_form.php:1462 1991 #: svn/trunk/includes/widgets/photo_gallery.php:4 761991 #: svn/trunk/includes/widgets/photo_gallery.php:461 1992 1992 #: svn/trunk/includes/widgets/price_menu.php:271 1993 1993 #: svn/trunk/includes/widgets/price_menu.php:372 … … 2108 2108 #: svn/trunk/includes/widgets/login_form.php:1486 2109 2109 #: svn/trunk/includes/widgets/logo_grid.php:602 2110 #: svn/trunk/includes/widgets/photo_gallery.php:5 492110 #: svn/trunk/includes/widgets/photo_gallery.php:534 2111 2111 #: svn/trunk/includes/widgets/piechart.php:288 2112 2112 #: svn/trunk/includes/widgets/piechart.php:326 … … 2229 2229 #: svn/trunk/includes/widgets/logo_grid.php:320 2230 2230 #: svn/trunk/includes/widgets/logo_grid.php:626 2231 #: svn/trunk/includes/widgets/photo_gallery.php:1 662232 #: svn/trunk/includes/widgets/photo_gallery.php:5 612231 #: svn/trunk/includes/widgets/photo_gallery.php:151 2232 #: svn/trunk/includes/widgets/photo_gallery.php:546 2233 2233 #: svn/trunk/includes/widgets/piechart.php:173 2234 2234 #: svn/trunk/includes/widgets/piechart.php:297 … … 2362 2362 #: svn/trunk/includes/widgets/logo_grid.php:364 2363 2363 #: svn/trunk/includes/widgets/logo_grid.php:660 2364 #: svn/trunk/includes/widgets/photo_gallery.php:6 312365 #: svn/trunk/includes/widgets/photo_gallery.php:7 202364 #: svn/trunk/includes/widgets/photo_gallery.php:616 2365 #: svn/trunk/includes/widgets/photo_gallery.php:705 2366 2366 #: svn/trunk/includes/widgets/price_menu.php:259 2367 2367 #: svn/trunk/includes/widgets/price_menu.php:360 … … 2435 2435 #: svn/trunk/includes/widgets/button.php:686 2436 2436 #: svn/trunk/includes/widgets/button.php:700 2437 #: svn/trunk/includes/widgets/photo_gallery.php:6 962437 #: svn/trunk/includes/widgets/photo_gallery.php:681 2438 2438 #: svn/trunk/includes/widgets/price_table.php:291 2439 2439 #: svn/trunk/includes/widgets/shape.php:384 … … 2760 2760 #: svn/trunk/includes/widgets/icon-box.php:405 2761 2761 #: svn/trunk/includes/widgets/logo_grid.php:202 2762 #: svn/trunk/includes/widgets/photo_gallery.php:5 962762 #: svn/trunk/includes/widgets/photo_gallery.php:581 2763 2763 #: svn/trunk/includes/widgets/price_table.php:157 2764 2764 #: svn/trunk/includes/widgets/tabs.php:290 … … 2857 2857 #: svn/trunk/includes/widgets/login_form.php:1415 2858 2858 #: svn/trunk/includes/widgets/login_form.php:1516 2859 #: svn/trunk/includes/widgets/photo_gallery.php:4 302860 #: svn/trunk/includes/widgets/photo_gallery.php:4 572861 #: svn/trunk/includes/widgets/photo_gallery.php: 6002859 #: svn/trunk/includes/widgets/photo_gallery.php:415 2860 #: svn/trunk/includes/widgets/photo_gallery.php:442 2861 #: svn/trunk/includes/widgets/photo_gallery.php:585 2862 2862 #: svn/trunk/includes/widgets/piechart.php:224 2863 2863 #: svn/trunk/includes/widgets/price_table.php:435 … … 2931 2931 #: svn/trunk/includes/widgets/icon-box.php:413 2932 2932 #: svn/trunk/includes/widgets/logo_grid.php:201 2933 #: svn/trunk/includes/widgets/photo_gallery.php: 6042933 #: svn/trunk/includes/widgets/photo_gallery.php:589 2934 2934 #: svn/trunk/includes/widgets/price_table.php:161 2935 2935 #: svn/trunk/includes/widgets/tabs.php:294 … … 3052 3052 #: svn/trunk/includes/widgets/login_form.php:1146 3053 3053 #: svn/trunk/includes/widgets/login_form.php:1407 3054 #: svn/trunk/includes/widgets/photo_gallery.php:4 223054 #: svn/trunk/includes/widgets/photo_gallery.php:407 3055 3055 #: svn/trunk/includes/widgets/piechart.php:216 3056 3056 #: svn/trunk/includes/widgets/price_table.php:153 … … 3121 3121 #: svn/trunk/includes/widgets/login_form.php:1411 3122 3122 #: svn/trunk/includes/widgets/login_form.php:1512 3123 #: svn/trunk/includes/widgets/photo_gallery.php:4 263124 #: svn/trunk/includes/widgets/photo_gallery.php:4 533123 #: svn/trunk/includes/widgets/photo_gallery.php:411 3124 #: svn/trunk/includes/widgets/photo_gallery.php:438 3125 3125 #: svn/trunk/includes/widgets/piechart.php:220 3126 3126 #: svn/trunk/includes/widgets/price_table.php:431 … … 3207 3207 #: svn/trunk/includes/widgets/login_form.php:1419 3208 3208 #: svn/trunk/includes/widgets/login_form.php:1520 3209 #: svn/trunk/includes/widgets/photo_gallery.php:4 343210 #: svn/trunk/includes/widgets/photo_gallery.php:4 613209 #: svn/trunk/includes/widgets/photo_gallery.php:419 3210 #: svn/trunk/includes/widgets/photo_gallery.php:446 3211 3211 #: svn/trunk/includes/widgets/piechart.php:228 3212 3212 #: svn/trunk/includes/widgets/price_table.php:439 … … 3273 3273 #: svn/trunk/includes/widgets/banner.php:438 3274 3274 #: svn/trunk/includes/widgets/counter.php:186 3275 #: svn/trunk/includes/widgets/photo_gallery.php:4 493275 #: svn/trunk/includes/widgets/photo_gallery.php:434 3276 3276 #: svn/trunk/includes/widgets/piechart.php:384 3277 3277 #: svn/trunk/includes/widgets/price_table.php:1226 … … 3321 3321 #: svn/trunk/includes/widgets/heading.php:657 3322 3322 #: svn/trunk/includes/widgets/login_form.php:913 3323 #: svn/trunk/includes/widgets/photo_gallery.php:5 233323 #: svn/trunk/includes/widgets/photo_gallery.php:508 3324 3324 #: svn/trunk/includes/widgets/price_menu.php:670 3325 3325 #: svn/trunk/includes/widgets/price_table.php:832 … … 3359 3359 #: svn/trunk/includes/widgets/dropdown_button.php:306 3360 3360 #: svn/trunk/includes/widgets/logo_grid.php:144 3361 #: svn/trunk/includes/widgets/photo_gallery.php:1 783362 #: svn/trunk/includes/widgets/photo_gallery.php: 4143361 #: svn/trunk/includes/widgets/photo_gallery.php:163 3362 #: svn/trunk/includes/widgets/photo_gallery.php:399 3363 3363 #: svn/trunk/includes/widgets/price_table.php:1707 3364 3364 #: svn/trunk/includes/widgets/team_member.php:576 … … 3480 3480 #: svn/trunk/includes/widgets/image_compare.php:203 3481 3481 #: svn/trunk/includes/widgets/login_form.php:268 3482 #: svn/trunk/includes/widgets/photo_gallery.php: 5123483 #: svn/trunk/includes/widgets/photo_gallery.php:6 583482 #: svn/trunk/includes/widgets/photo_gallery.php:497 3483 #: svn/trunk/includes/widgets/photo_gallery.php:643 3484 3484 #: svn/trunk/includes/widgets/piechart.php:56 3485 3485 #: svn/trunk/includes/widgets/piechart.php:152 … … 3505 3505 #: svn/trunk/includes/widgets/image_compare.php:207 3506 3506 #: svn/trunk/includes/widgets/login_form.php:269 3507 #: svn/trunk/includes/widgets/photo_gallery.php: 5133508 #: svn/trunk/includes/widgets/photo_gallery.php:6 593507 #: svn/trunk/includes/widgets/photo_gallery.php:498 3508 #: svn/trunk/includes/widgets/photo_gallery.php:644 3509 3509 #: svn/trunk/includes/widgets/piechart.php:57 3510 3510 #: svn/trunk/includes/widgets/piechart.php:153 … … 3595 3595 #: svn/trunk/includes/widgets/business_hours.php:221 3596 3596 #: svn/trunk/includes/widgets/logo_grid.php:616 3597 #: svn/trunk/includes/widgets/photo_gallery.php:5 743597 #: svn/trunk/includes/widgets/photo_gallery.php:559 3598 3598 #: svn/trunk/includes/widgets/team_member.php:760 3599 3599 #: svn/trunk/includes/widgets/team_member.php:878 … … 4028 4028 #: svn/trunk/includes/widgets/counter.php:647 4029 4029 #: svn/trunk/includes/widgets/counter.php:706 4030 #: svn/trunk/includes/widgets/photo_gallery.php:5 844031 #: svn/trunk/includes/widgets/photo_gallery.php:7 454030 #: svn/trunk/includes/widgets/photo_gallery.php:569 4031 #: svn/trunk/includes/widgets/photo_gallery.php:730 4032 4032 #: svn/trunk/includes/widgets/piechart.php:347 4033 4033 #: svn/trunk/includes/widgets/piechart.php:436 … … 4200 4200 #: includes/widgets/photo_gallery.php:693 4201 4201 #: svn/trunk/includes/widgets/dropdown_button.php:488 4202 #: svn/trunk/includes/widgets/photo_gallery.php: 7084202 #: svn/trunk/includes/widgets/photo_gallery.php:693 4203 4203 msgid "Icon Background Color" 4204 4204 msgstr "" … … 4454 4454 #: svn/trunk/includes/widgets/image_compare.php:31 4455 4455 #: svn/trunk/includes/widgets/logo_grid.php:31 4456 #: svn/trunk/includes/widgets/photo_gallery.php:354457 4456 #: svn/trunk/includes/widgets/price_menu.php:27 4458 4457 #: svn/trunk/includes/widgets/team_member.php:35 … … 4465 4464 #: includes/widgets/image_compare.php:44 includes/widgets/photo_gallery.php:38 4466 4465 #: svn/trunk/includes/widgets/image_compare.php:44 4467 #: svn/trunk/includes/widgets/photo_gallery.php: 484466 #: svn/trunk/includes/widgets/photo_gallery.php:38 4468 4467 msgid "Images" 4469 4468 msgstr "" … … 4562 4561 #: includes/widgets/photo_gallery.php:311 4563 4562 #: svn/trunk/includes/widgets/image_compare.php:422 4564 #: svn/trunk/includes/widgets/photo_gallery.php:3 264563 #: svn/trunk/includes/widgets/photo_gallery.php:311 4565 4564 msgid "Overlay" 4566 4565 msgstr "" … … 4885 4884 #: includes/widgets/logo_grid.php:263 includes/widgets/photo_gallery.php:81 4886 4885 #: svn/trunk/includes/widgets/logo_grid.php:263 4887 #: svn/trunk/includes/widgets/photo_gallery.php: 924886 #: svn/trunk/includes/widgets/photo_gallery.php:81 4888 4887 msgid "Columns" 4889 4888 msgstr "" … … 4909 4908 #: svn/trunk/includes/widgets/logo_grid.php:471 4910 4909 #: svn/trunk/includes/widgets/logo_grid.php:534 4911 #: svn/trunk/includes/widgets/photo_gallery.php: 2024912 #: svn/trunk/includes/widgets/photo_gallery.php:2 664913 #: svn/trunk/includes/widgets/photo_gallery.php:3 434914 #: svn/trunk/includes/widgets/photo_gallery.php:3 784910 #: svn/trunk/includes/widgets/photo_gallery.php:187 4911 #: svn/trunk/includes/widgets/photo_gallery.php:251 4912 #: svn/trunk/includes/widgets/photo_gallery.php:328 4913 #: svn/trunk/includes/widgets/photo_gallery.php:363 4915 4914 #: svn/trunk/includes/widgets/team_member.php:360 4916 4915 #: svn/trunk/includes/widgets/team_member.php:393 … … 4929 4928 #: svn/trunk/includes/widgets/logo_grid.php:517 4930 4929 #: svn/trunk/includes/widgets/logo_grid.php:580 4931 #: svn/trunk/includes/widgets/photo_gallery.php:2 404932 #: svn/trunk/includes/widgets/photo_gallery.php: 3034930 #: svn/trunk/includes/widgets/photo_gallery.php:225 4931 #: svn/trunk/includes/widgets/photo_gallery.php:288 4933 4932 #: svn/trunk/includes/widgets/team_member.php:376 4934 4933 #: svn/trunk/includes/widgets/team_member.php:409 … … 4944 4943 4945 4944 #: includes/widgets/photo_gallery.php:46 4946 #: svn/trunk/includes/widgets/photo_gallery.php: 564945 #: svn/trunk/includes/widgets/photo_gallery.php:46 4947 4946 msgid "Gallery Images" 4948 4947 msgstr "" 4949 4948 4950 4949 #: includes/widgets/photo_gallery.php:62 4950 #: svn/trunk/includes/widgets/photo_gallery.php:62 4951 4951 msgid "Thumbnail size" 4952 4952 msgstr "" 4953 4953 4954 4954 #: includes/widgets/photo_gallery.php:73 4955 #: svn/trunk/includes/widgets/photo_gallery.php: 844955 #: svn/trunk/includes/widgets/photo_gallery.php:73 4956 4956 msgid "Masonry Settings" 4957 4957 msgstr "" 4958 4958 4959 4959 #: includes/widgets/photo_gallery.php:85 4960 #: svn/trunk/includes/widgets/photo_gallery.php: 964960 #: svn/trunk/includes/widgets/photo_gallery.php:85 4961 4961 msgid "1 Column" 4962 4962 msgstr "" 4963 4963 4964 4964 #: includes/widgets/photo_gallery.php:86 4965 #: svn/trunk/includes/widgets/photo_gallery.php: 974965 #: svn/trunk/includes/widgets/photo_gallery.php:86 4966 4966 msgid "2 Column" 4967 4967 msgstr "" 4968 4968 4969 4969 #: includes/widgets/photo_gallery.php:87 4970 #: svn/trunk/includes/widgets/photo_gallery.php: 984970 #: svn/trunk/includes/widgets/photo_gallery.php:87 4971 4971 msgid "3 Column" 4972 4972 msgstr "" 4973 4973 4974 4974 #: includes/widgets/photo_gallery.php:88 4975 #: svn/trunk/includes/widgets/photo_gallery.php: 994975 #: svn/trunk/includes/widgets/photo_gallery.php:88 4976 4976 msgid "4 Column" 4977 4977 msgstr "" 4978 4978 4979 4979 #: includes/widgets/photo_gallery.php:89 4980 #: svn/trunk/includes/widgets/photo_gallery.php: 1004980 #: svn/trunk/includes/widgets/photo_gallery.php:89 4981 4981 msgid "5 Column" 4982 4982 msgstr "" … … 4984 4984 #: includes/widgets/photo_gallery.php:97 includes/widgets/price_menu.php:536 4985 4985 #: includes/widgets/timeline.php:202 4986 #: svn/trunk/includes/widgets/photo_gallery.php: 1084986 #: svn/trunk/includes/widgets/photo_gallery.php:97 4987 4987 #: svn/trunk/includes/widgets/price_menu.php:536 4988 4988 #: svn/trunk/includes/widgets/timeline.php:202 … … 4991 4991 4992 4992 #: includes/widgets/photo_gallery.php:117 4993 #: svn/trunk/includes/widgets/photo_gallery.php:1 324993 #: svn/trunk/includes/widgets/photo_gallery.php:117 4994 4994 msgid "Margin Bottom" 4995 4995 msgstr "" … … 4998 4998 #: includes/widgets/team_member.php:109 includes/widgets/team_member.php:257 4999 4999 #: includes/widgets/testimonial.php:66 includes/widgets/testimonial.php:960 5000 #: svn/trunk/includes/widgets/photo_gallery.php:1 585000 #: svn/trunk/includes/widgets/photo_gallery.php:143 5001 5001 #: svn/trunk/includes/widgets/price_menu.php:662 5002 5002 #: svn/trunk/includes/widgets/team_member.php:109 … … 5008 5008 5009 5009 #: includes/widgets/photo_gallery.php:488 5010 #: svn/trunk/includes/widgets/photo_gallery.php: 5035010 #: svn/trunk/includes/widgets/photo_gallery.php:488 5011 5011 msgid "Caption" 5012 5012 msgstr "" 5013 5013 5014 5014 #: includes/widgets/photo_gallery.php:495 5015 #: svn/trunk/includes/widgets/photo_gallery.php: 5105015 #: svn/trunk/includes/widgets/photo_gallery.php:495 5016 5016 msgid "Display Caption" 5017 5017 msgstr "" … … 5020 5020 #: includes/widgets/team_member.php:549 includes/widgets/testimonial.php:461 5021 5021 #: includes/widgets/testimonial.php:578 5022 #: svn/trunk/includes/widgets/photo_gallery.php:5 925022 #: svn/trunk/includes/widgets/photo_gallery.php:577 5023 5023 #: svn/trunk/includes/widgets/tabs.php:368 5024 5024 #: svn/trunk/includes/widgets/team_member.php:549 … … 5029 5029 5030 5030 #: includes/widgets/photo_gallery.php:641 5031 #: svn/trunk/includes/widgets/photo_gallery.php:6 565031 #: svn/trunk/includes/widgets/photo_gallery.php:641 5032 5032 msgid "Display Icon" 5033 5033 msgstr "" 5034 5034 5035 5035 #: includes/widgets/photo_gallery.php:666 includes/widgets/team_member.php:1003 5036 #: svn/trunk/includes/widgets/photo_gallery.php:6 815036 #: svn/trunk/includes/widgets/photo_gallery.php:666 5037 5037 #: svn/trunk/includes/widgets/team_member.php:1003 5038 5038 msgid "Size (px)" … … 5172 5172 #: includes/widgets/price_menu.php:163 includes/widgets/team_member.php:265 5173 5173 #: includes/widgets/testimonial.php:968 5174 #: svn/trunk/includes/widgets/photo_gallery.php:725175 5174 #: svn/trunk/includes/widgets/price_menu.php:163 5176 5175 #: svn/trunk/includes/widgets/team_member.php:265 -
wpbits-addons-for-elementor/trunk/includes/widgets/accordion.php
r2527942 r2700307 26 26 } 27 27 28 protected function _register_controls() {28 protected function register_controls() { 29 29 $this->start_controls_section( 30 30 'content_section', -
wpbits-addons-for-elementor/trunk/includes/widgets/banner.php
r2527942 r2700307 38 38 } 39 39 40 protected function _register_controls() {40 protected function register_controls() { 41 41 // section start 42 42 $this->start_controls_section( -
wpbits-addons-for-elementor/trunk/includes/widgets/business_hours.php
r2527942 r2700307 22 22 } 23 23 24 protected function _register_controls() {24 protected function register_controls() { 25 25 $this->start_controls_section( 26 26 'content_section', -
wpbits-addons-for-elementor/trunk/includes/widgets/button.php
r2527942 r2700307 38 38 } 39 39 40 protected function _register_controls() {40 protected function register_controls() { 41 41 // section start 42 42 $this->start_controls_section( -
wpbits-addons-for-elementor/trunk/includes/widgets/contact_form_7.php
r2527942 r2700307 33 33 } 34 34 35 protected function _register_controls() {35 protected function register_controls() { 36 36 // section start 37 37 $this->start_controls_section( -
wpbits-addons-for-elementor/trunk/includes/widgets/countdown.php
r2527942 r2700307 26 26 } 27 27 28 protected function _register_controls() {28 protected function register_controls() { 29 29 30 30 // section start -
wpbits-addons-for-elementor/trunk/includes/widgets/counter.php
r2527942 r2700307 26 26 } 27 27 28 protected function _register_controls() {28 protected function register_controls() { 29 29 30 30 // section start -
wpbits-addons-for-elementor/trunk/includes/widgets/dropdown_button.php
r2527942 r2700307 42 42 } 43 43 44 protected function _register_controls() {44 protected function register_controls() { 45 45 // section start 46 46 $this->start_controls_section( -
wpbits-addons-for-elementor/trunk/includes/widgets/heading.php
r2536693 r2700307 22 22 } 23 23 24 protected function _register_controls() {24 protected function register_controls() { 25 25 26 26 // section start -
wpbits-addons-for-elementor/trunk/includes/widgets/hotspot.php
r2527942 r2700307 22 22 } 23 23 24 protected function _register_controls() {24 protected function register_controls() { 25 25 $this->start_controls_section( 26 26 'content_section', -
wpbits-addons-for-elementor/trunk/includes/widgets/icon-box.php
r2536693 r2700307 23 23 24 24 25 protected function _register_controls() {25 protected function register_controls() { 26 26 // section start 27 27 $this->start_controls_section( -
wpbits-addons-for-elementor/trunk/includes/widgets/image_compare.php
r2527942 r2700307 36 36 } 37 37 38 protected function _register_controls() {38 protected function register_controls() { 39 39 40 40 // section start -
wpbits-addons-for-elementor/trunk/includes/widgets/login_form.php
r2527942 r2700307 22 22 } 23 23 24 protected function _register_controls() {24 protected function register_controls() { 25 25 // section start 26 26 $this->start_controls_section( -
wpbits-addons-for-elementor/trunk/includes/widgets/logo_grid.php
r2527942 r2700307 36 36 } 37 37 38 protected function _register_controls() {38 protected function register_controls() { 39 39 40 40 // section start -
wpbits-addons-for-elementor/trunk/includes/widgets/photo_gallery.php
r2543643 r2700307 30 30 } 31 31 32 protected function _register_controls() {32 protected function register_controls() { 33 33 34 34 // section start -
wpbits-addons-for-elementor/trunk/includes/widgets/piechart.php
r2527942 r2700307 26 26 } 27 27 28 protected function _register_controls() {28 protected function register_controls() { 29 29 30 30 // section start -
wpbits-addons-for-elementor/trunk/includes/widgets/price_menu.php
r2527942 r2700307 32 32 } 33 33 34 protected function _register_controls() {34 protected function register_controls() { 35 35 $this->start_controls_section( 36 36 'content_section', -
wpbits-addons-for-elementor/trunk/includes/widgets/price_table.php
r2527942 r2700307 38 38 } 39 39 40 protected function _register_controls() {40 protected function register_controls() { 41 41 // section start 42 42 $this->start_controls_section( -
wpbits-addons-for-elementor/trunk/includes/widgets/progress_bar.php
r2527942 r2700307 26 26 } 27 27 28 protected function _register_controls() {28 protected function register_controls() { 29 29 30 30 // section start -
wpbits-addons-for-elementor/trunk/includes/widgets/shape.php
r2519100 r2700307 22 22 } 23 23 24 protected function _register_controls() {24 protected function register_controls() { 25 25 26 26 // section start -
wpbits-addons-for-elementor/trunk/includes/widgets/tabs.php
r2536693 r2700307 26 26 } 27 27 28 protected function _register_controls() {28 protected function register_controls() { 29 29 $this->start_controls_section( 30 30 'content_section', -
wpbits-addons-for-elementor/trunk/includes/widgets/team_member.php
r2527942 r2700307 94 94 } 95 95 96 protected function _register_controls() {96 protected function register_controls() { 97 97 // section start 98 98 $this->start_controls_section( -
wpbits-addons-for-elementor/trunk/includes/widgets/testimonial.php
r2527942 r2700307 32 32 } 33 33 34 protected function _register_controls() {34 protected function register_controls() { 35 35 $this->start_controls_section( 36 36 'settings_section', -
wpbits-addons-for-elementor/trunk/includes/widgets/text_rotator.php
r2527942 r2700307 25 25 return 'eicon-animation-text'; 26 26 } 27 protected function _register_controls() {27 protected function register_controls() { 28 28 29 29 // section start -
wpbits-addons-for-elementor/trunk/includes/widgets/timeline.php
r2527942 r2700307 32 32 } 33 33 34 protected function _register_controls() {34 protected function register_controls() { 35 35 $this->start_controls_section( 36 36 'content_section', -
wpbits-addons-for-elementor/trunk/includes/widgets/tooltip.php
r2527942 r2700307 36 36 } 37 37 38 protected function _register_controls() {38 protected function register_controls() { 39 39 40 40 // section start -
wpbits-addons-for-elementor/trunk/readme.txt
r2543643 r2700307 78 78 == Changelog == 79 79 80 = 1.3.2 = 81 * Added Elementor 3.3.6 support 82 * [update] Freemius framework package 83 80 84 = 1.3.1 = 81 85 * [new] Added custom image size options to the Photo Gallery widget. -
wpbits-addons-for-elementor/trunk/wpbits-addons-for-elementor.php
r2543643 r2700307 4 4 * Plugin URI: https://wpbits.net/ 5 5 * Description: Addons for Elementor Page Builder 6 * Version: 1.3. 16 * Version: 1.3.2 7 7 * Author: WPBits 8 8 * License: GPL3
Note: See TracChangeset
for help on using the changeset viewer.