Changeset 2690824
- Timestamp:
- 03/08/2022 01:49:21 PM (4 years ago)
- Location:
- gum-elementor-addon
- Files:
-
- 4 edited
-
tags/1.2.6/readme.txt (modified) (1 diff)
-
tags/1.2.6/widgets/accordion.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/widgets/accordion.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gum-elementor-addon/tags/1.2.6/readme.txt
r2690812 r2690824 64 64 == Changelog == 65 65 = 1.2.6 = 66 * Bux Fixing: Accordion FAQ scheme error 66 67 * Improvement: Adding accordion title margin and active color 67 68 -
gum-elementor-addon/tags/1.2.6/widgets/accordion.php
r2690812 r2690824 141 141 'of' => 'title_padding', 142 142 ] ); 143 144 145 $element->add_control( 146 'toggle_title_radius', 147 [ 148 'label' => esc_html__( 'Border Radius', 'gum-elementor-addon' ), 149 'type' => Controls_Manager::DIMENSIONS, 150 'size_units' => [ 'px', '%' ], 151 'selectors' => [ 152 '{{WRAPPER}} .elementor-accordion-item .elementor-tab-title' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 153 ], 154 ] 155 ); 143 156 144 157 $element->add_group_control( … … 320 333 ?></a> 321 334 </<?php echo Utils::validate_html_tag( $settings['title_html_tag'] ); ?>> 322 <div <?php echo $element->get_render_attribute_string( $tab_content_setting_key ); ?>><?php echo $this->parse_text_editor( $item['tab_content'] , $element ); ?></div>335 <div <?php echo $element->get_render_attribute_string( $tab_content_setting_key ); ?>><?php echo $this->parse_text_editor( $item['tab_content'] , $element ); ?></div> 323 336 </div> 324 337 … … 338 351 'acceptedAnswer' => [ 339 352 '@type' => 'Answer', 340 'text' => $this->parse_text_editor( $item['tab_content'] ),353 'text' => $this->parse_text_editor( $item['tab_content'] , $element ), 341 354 ], 342 355 ]; … … 429 442 430 443 protected function parse_text_editor( $content , $element) { 444 431 445 /** This filter is documented in wp-includes/widgets/class-wp-widget-text.php */ 432 446 $content = apply_filters( 'widget_text', $content, $element->get_settings() ); -
gum-elementor-addon/trunk/readme.txt
r2690812 r2690824 64 64 == Changelog == 65 65 = 1.2.6 = 66 * Bux Fixing: Accordion FAQ scheme error 66 67 * Improvement: Adding accordion title margin and active color 67 68 -
gum-elementor-addon/trunk/widgets/accordion.php
r2690812 r2690824 141 141 'of' => 'title_padding', 142 142 ] ); 143 144 145 $element->add_control( 146 'toggle_title_radius', 147 [ 148 'label' => esc_html__( 'Border Radius', 'gum-elementor-addon' ), 149 'type' => Controls_Manager::DIMENSIONS, 150 'size_units' => [ 'px', '%' ], 151 'selectors' => [ 152 '{{WRAPPER}} .elementor-accordion-item .elementor-tab-title' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 153 ], 154 ] 155 ); 143 156 144 157 $element->add_group_control( … … 320 333 ?></a> 321 334 </<?php echo Utils::validate_html_tag( $settings['title_html_tag'] ); ?>> 322 <div <?php echo $element->get_render_attribute_string( $tab_content_setting_key ); ?>><?php echo $this->parse_text_editor( $item['tab_content'] , $element ); ?></div>335 <div <?php echo $element->get_render_attribute_string( $tab_content_setting_key ); ?>><?php echo $this->parse_text_editor( $item['tab_content'] , $element ); ?></div> 323 336 </div> 324 337 … … 338 351 'acceptedAnswer' => [ 339 352 '@type' => 'Answer', 340 'text' => $this->parse_text_editor( $item['tab_content'] ),353 'text' => $this->parse_text_editor( $item['tab_content'] , $element ), 341 354 ], 342 355 ]; … … 429 442 430 443 protected function parse_text_editor( $content , $element) { 444 431 445 /** This filter is documented in wp-includes/widgets/class-wp-widget-text.php */ 432 446 $content = apply_filters( 'widget_text', $content, $element->get_settings() );
Note: See TracChangeset
for help on using the changeset viewer.