Changeset 2502726
- Timestamp:
- 03/24/2021 04:43:14 PM (5 years ago)
- Location:
- hq-widgets-for-elementor
- Files:
-
- 12 edited
- 1 copied
-
tags/1.0.12 (copied) (copied from hq-widgets-for-elementor/trunk)
-
tags/1.0.12/assets/widgets/theme/contact-form-7/style.tpl.css (modified) (2 diffs)
-
tags/1.0.12/hq-widgets-for-elementor.php (modified) (2 diffs)
-
tags/1.0.12/inc/dependencies.php (modified) (1 diff)
-
tags/1.0.12/inc/widget/theme/contact-form-7.php (modified) (4 diffs)
-
tags/1.0.12/inc/widget/theme/nav-menu.php (modified) (2 diffs)
-
tags/1.0.12/readme.txt (modified) (2 diffs)
-
trunk/assets/widgets/theme/contact-form-7/style.tpl.css (modified) (2 diffs)
-
trunk/hq-widgets-for-elementor.php (modified) (2 diffs)
-
trunk/inc/dependencies.php (modified) (1 diff)
-
trunk/inc/widget/theme/contact-form-7.php (modified) (4 diffs)
-
trunk/inc/widget/theme/nav-menu.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hq-widgets-for-elementor/tags/1.0.12/assets/widgets/theme/contact-form-7/style.tpl.css
r2470080 r2502726 245 245 246 246 /* AJAX LOADER */ 247 .cf7-smart-grid.has-grid .wpcf7 .ajax-loader, 247 248 .hq-cf7-wrapper div.wpcf7 .ajax-loader { 248 249 display: none; … … 253 254 background: none; 254 255 } 255 .hq-cf7-wrapper div.wpcf7 .ajax-loader.is-active { 256 .cf7-smart-grid.has-grid .wpcf7 .submitting .ajax-loader, 257 .hq-cf7-wrapper div.wpcf7 .submitting .ajax-loader { 256 258 display: inline-block; 257 259 } -
hq-widgets-for-elementor/tags/1.0.12/hq-widgets-for-elementor.php
r2499478 r2502726 5 5 * Plugin URI: https://marmot.hqwebs.net/hq-widgets-for-elementor/?utm_source=wp-admin&utm_medium=link&utm_campaign=default&utm_term=hq-widgets-for-elementor&utm_content=plugin-uri 6 6 * Description: The HQ Widgets for Elementor is an elementor addons package for Elementor page builder plugin for WordPress. Works Best with Marmot theme 7 * Version: 1.0.1 17 * Version: 1.0.12 8 8 * Requires at least: 5.3 9 9 * Requires PHP: 7.2 … … 61 61 * @var string 62 62 */ 63 const VERSION = '1.0.1 1';63 const VERSION = '1.0.12'; 64 64 65 65 // Load Autoloader -
hq-widgets-for-elementor/tags/1.0.12/inc/dependencies.php
r2481601 r2502726 25 25 'file' => 'hqtheme-extra/hqtheme-extra.php', 26 26 'constant' => '\HQExtra\VERSION', 27 'min_version' => '1.0.1 2',27 'min_version' => '1.0.15', 28 28 'required' => true, 29 29 'dismiss' => false, -
hq-widgets-for-elementor/tags/1.0.12/inc/widget/theme/contact-form-7.php
r2470080 r2502726 102 102 'options' => $this->get_contactform7_list(), 103 103 'default' => '0', 104 'description' => \HQLib\Utils::get_cf7_howto(), 104 105 ]); 105 106 … … 540 541 . '{{WRAPPER}} .wpcf7-acceptance label .wpcf7-list-item-label:before,' 541 542 . '{{WRAPPER}} .wpcf7-radio label .wpcf7-list-item-label:before' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}}', 542 543 543 '{{WRAPPER}} .wpcf7-checkbox label .wpcf7-list-item-label:after,' 544 544 . '{{WRAPPER}} .wpcf7-acceptance label .wpcf7-list-item-label:after' => 'width: calc({{SIZE}}{{UNIT}} / 2.5); height: calc({{SIZE}}{{UNIT}} / 1.666); top: calc(-{{SIZE}}{{UNIT}} / 5); left: calc({{SIZE}}{{UNIT}} / 2 - {{SIZE}}{{UNIT}} / 5)', 545 546 545 '{{WRAPPER}} .wpcf7-radio label .wpcf7-list-item-label:after' => 'width: calc({{SIZE}}{{UNIT}} / 2.5); height: calc({{SIZE}}{{UNIT}} / 2.5); left: calc({{SIZE}}{{UNIT}} / 2 - {{SIZE}}{{UNIT}} / 5)', 547 546 ], … … 1008 1007 <div class="elementor-alert elementor-alert-info" role="alert"> 1009 1008 <span class="elementor-alert-description"> 1010 <?php __('Contact Form 7 plugin is not installed.', 'hq-widgets-for-elementor') . '</p>' . sprintf('<a href="%s" target="_blank">%s</a>', esc_url(admin_url('plugin-install.php?s=contact+form+7&tab=search&type=term')), __('Install Contact Form 7.', 'hq-widgets-for-elementor')); ?>1009 <?php __('Contact Form 7 plugin is not installed.', 'hq-widgets-for-elementor') . '</p>' . sprintf('<a href="%s" target="_blank">%s</a>', esc_url(admin_url('plugin-install.php?s=contact+form+7&tab=search&type=term')), __('Install Contact Form 7.', 'hq-widgets-for-elementor')); ?> 1011 1010 </span> 1012 1011 </div> … … 1022 1021 <div <?php echo $this->get_render_attribute_string('hq_cf7_wrapper'); ?> > 1023 1022 <div <?php echo $this->get_render_attribute_string('hq_cf7_container'); ?> > 1024 <?php1025 if (!empty($settings['contact_form_id'])) {1026 $this->add_render_attribute('shortcode', 'id', $settings['contact_form_id']);1027 $shortcode = sprintf('[contact-form-7 %s]', $this->get_render_attribute_string('shortcode'));1028 echo do_shortcode($shortcode);1029 } else {1030 if (Plugin::instance()->editor->is_edit_mode()) {1031 ?>1023 <?php 1024 if (!empty($settings['contact_form_id'])) { 1025 $this->add_render_attribute('shortcode', 'id', $settings['contact_form_id']); 1026 $shortcode = sprintf('[contact-form-7 %s]', $this->get_render_attribute_string('shortcode')); 1027 echo do_shortcode($shortcode); 1028 } else { 1029 if (Plugin::instance()->editor->is_edit_mode()) { 1030 ?> 1032 1031 <div class="elementor-alert elementor-alert-info" role="alert"> 1033 1032 <span class="elementor-alert-description"> 1034 <?php esc_html_e('Please Select a contact form.', 'hq-widgets-for-elementor'); ?>1033 <?php esc_html_e('Please Select a contact form.', 'hq-widgets-for-elementor'); ?> 1035 1034 </span> 1036 1035 </div> 1037 <?php1038 }1039 }1040 ?>1036 <?php 1037 } 1038 } 1039 ?> 1041 1040 </div> 1042 1041 </div> -
hq-widgets-for-elementor/tags/1.0.12/inc/widget/theme/nav-menu.php
r2499478 r2502726 68 68 'default' => '', 69 69 'options' => Utils::get_nav_menus(), 70 'description' => Utils::get_menu_howto(), 70 71 ]); 71 72 … … 947 948 $this->add_render_attribute('menu_toggle_text', 'class', ['hc-nav-trigger-label']); 948 949 949 if (!empty($settings['nav_menu']) && is_nav_menu( $settings['nav_menu'])) {950 if (!empty($settings['nav_menu']) && is_nav_menu($settings['nav_menu'])) { 950 951 add_filter('wp_nav_menu_objects', [$this, 'nav_menu_objects']); 951 952 add_filter('wp_nav_menu_items', [$this, 'custom_menu_item'], 10, 2); -
hq-widgets-for-elementor/tags/1.0.12/readme.txt
r2499478 r2502726 5 5 Tested up to: 5.7 6 6 Requires PHP: 7.2 7 Stable tag: 1.0.1 17 Stable tag: 1.0.12 8 8 License: GPL v3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 129 129 == Changelog == 130 130 131 = 1.0.12 - 2021-03-24 = 132 * FIX - Contact form submit loader 133 * Added how to descriptions to Navigation Menu widget 134 * Added how to descriptions to Contact Form 7 widget 135 131 136 = 1.0.11 - 2021-03-19 = 132 137 * Promo Easy Appointments widget for Elementor added (widget for 3rd party plugin available in Marmot Enhancer PRO plugin) -
hq-widgets-for-elementor/trunk/assets/widgets/theme/contact-form-7/style.tpl.css
r2470080 r2502726 245 245 246 246 /* AJAX LOADER */ 247 .cf7-smart-grid.has-grid .wpcf7 .ajax-loader, 247 248 .hq-cf7-wrapper div.wpcf7 .ajax-loader { 248 249 display: none; … … 253 254 background: none; 254 255 } 255 .hq-cf7-wrapper div.wpcf7 .ajax-loader.is-active { 256 .cf7-smart-grid.has-grid .wpcf7 .submitting .ajax-loader, 257 .hq-cf7-wrapper div.wpcf7 .submitting .ajax-loader { 256 258 display: inline-block; 257 259 } -
hq-widgets-for-elementor/trunk/hq-widgets-for-elementor.php
r2499478 r2502726 5 5 * Plugin URI: https://marmot.hqwebs.net/hq-widgets-for-elementor/?utm_source=wp-admin&utm_medium=link&utm_campaign=default&utm_term=hq-widgets-for-elementor&utm_content=plugin-uri 6 6 * Description: The HQ Widgets for Elementor is an elementor addons package for Elementor page builder plugin for WordPress. Works Best with Marmot theme 7 * Version: 1.0.1 17 * Version: 1.0.12 8 8 * Requires at least: 5.3 9 9 * Requires PHP: 7.2 … … 61 61 * @var string 62 62 */ 63 const VERSION = '1.0.1 1';63 const VERSION = '1.0.12'; 64 64 65 65 // Load Autoloader -
hq-widgets-for-elementor/trunk/inc/dependencies.php
r2481601 r2502726 25 25 'file' => 'hqtheme-extra/hqtheme-extra.php', 26 26 'constant' => '\HQExtra\VERSION', 27 'min_version' => '1.0.1 2',27 'min_version' => '1.0.15', 28 28 'required' => true, 29 29 'dismiss' => false, -
hq-widgets-for-elementor/trunk/inc/widget/theme/contact-form-7.php
r2470080 r2502726 102 102 'options' => $this->get_contactform7_list(), 103 103 'default' => '0', 104 'description' => \HQLib\Utils::get_cf7_howto(), 104 105 ]); 105 106 … … 540 541 . '{{WRAPPER}} .wpcf7-acceptance label .wpcf7-list-item-label:before,' 541 542 . '{{WRAPPER}} .wpcf7-radio label .wpcf7-list-item-label:before' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}}', 542 543 543 '{{WRAPPER}} .wpcf7-checkbox label .wpcf7-list-item-label:after,' 544 544 . '{{WRAPPER}} .wpcf7-acceptance label .wpcf7-list-item-label:after' => 'width: calc({{SIZE}}{{UNIT}} / 2.5); height: calc({{SIZE}}{{UNIT}} / 1.666); top: calc(-{{SIZE}}{{UNIT}} / 5); left: calc({{SIZE}}{{UNIT}} / 2 - {{SIZE}}{{UNIT}} / 5)', 545 546 545 '{{WRAPPER}} .wpcf7-radio label .wpcf7-list-item-label:after' => 'width: calc({{SIZE}}{{UNIT}} / 2.5); height: calc({{SIZE}}{{UNIT}} / 2.5); left: calc({{SIZE}}{{UNIT}} / 2 - {{SIZE}}{{UNIT}} / 5)', 547 546 ], … … 1008 1007 <div class="elementor-alert elementor-alert-info" role="alert"> 1009 1008 <span class="elementor-alert-description"> 1010 <?php __('Contact Form 7 plugin is not installed.', 'hq-widgets-for-elementor') . '</p>' . sprintf('<a href="%s" target="_blank">%s</a>', esc_url(admin_url('plugin-install.php?s=contact+form+7&tab=search&type=term')), __('Install Contact Form 7.', 'hq-widgets-for-elementor')); ?>1009 <?php __('Contact Form 7 plugin is not installed.', 'hq-widgets-for-elementor') . '</p>' . sprintf('<a href="%s" target="_blank">%s</a>', esc_url(admin_url('plugin-install.php?s=contact+form+7&tab=search&type=term')), __('Install Contact Form 7.', 'hq-widgets-for-elementor')); ?> 1011 1010 </span> 1012 1011 </div> … … 1022 1021 <div <?php echo $this->get_render_attribute_string('hq_cf7_wrapper'); ?> > 1023 1022 <div <?php echo $this->get_render_attribute_string('hq_cf7_container'); ?> > 1024 <?php1025 if (!empty($settings['contact_form_id'])) {1026 $this->add_render_attribute('shortcode', 'id', $settings['contact_form_id']);1027 $shortcode = sprintf('[contact-form-7 %s]', $this->get_render_attribute_string('shortcode'));1028 echo do_shortcode($shortcode);1029 } else {1030 if (Plugin::instance()->editor->is_edit_mode()) {1031 ?>1023 <?php 1024 if (!empty($settings['contact_form_id'])) { 1025 $this->add_render_attribute('shortcode', 'id', $settings['contact_form_id']); 1026 $shortcode = sprintf('[contact-form-7 %s]', $this->get_render_attribute_string('shortcode')); 1027 echo do_shortcode($shortcode); 1028 } else { 1029 if (Plugin::instance()->editor->is_edit_mode()) { 1030 ?> 1032 1031 <div class="elementor-alert elementor-alert-info" role="alert"> 1033 1032 <span class="elementor-alert-description"> 1034 <?php esc_html_e('Please Select a contact form.', 'hq-widgets-for-elementor'); ?>1033 <?php esc_html_e('Please Select a contact form.', 'hq-widgets-for-elementor'); ?> 1035 1034 </span> 1036 1035 </div> 1037 <?php1038 }1039 }1040 ?>1036 <?php 1037 } 1038 } 1039 ?> 1041 1040 </div> 1042 1041 </div> -
hq-widgets-for-elementor/trunk/inc/widget/theme/nav-menu.php
r2499478 r2502726 68 68 'default' => '', 69 69 'options' => Utils::get_nav_menus(), 70 'description' => Utils::get_menu_howto(), 70 71 ]); 71 72 … … 947 948 $this->add_render_attribute('menu_toggle_text', 'class', ['hc-nav-trigger-label']); 948 949 949 if (!empty($settings['nav_menu']) && is_nav_menu( $settings['nav_menu'])) {950 if (!empty($settings['nav_menu']) && is_nav_menu($settings['nav_menu'])) { 950 951 add_filter('wp_nav_menu_objects', [$this, 'nav_menu_objects']); 951 952 add_filter('wp_nav_menu_items', [$this, 'custom_menu_item'], 10, 2); -
hq-widgets-for-elementor/trunk/readme.txt
r2499478 r2502726 5 5 Tested up to: 5.7 6 6 Requires PHP: 7.2 7 Stable tag: 1.0.1 17 Stable tag: 1.0.12 8 8 License: GPL v3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 129 129 == Changelog == 130 130 131 = 1.0.12 - 2021-03-24 = 132 * FIX - Contact form submit loader 133 * Added how to descriptions to Navigation Menu widget 134 * Added how to descriptions to Contact Form 7 widget 135 131 136 = 1.0.11 - 2021-03-19 = 132 137 * Promo Easy Appointments widget for Elementor added (widget for 3rd party plugin available in Marmot Enhancer PRO plugin)
Note: See TracChangeset
for help on using the changeset viewer.