PluginProbe
Elementor Website Builder – more than just a page builder / 3.4.2
Elementor Website Builder – more than just a page builder v3.4.2
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | includes/controls/section.php +20 -3 4.2.33.4.2 View file →
@@ -43,13 +43,30 @@
43 43 * @access public
44 44 */
45 45 public function content_template() {
46 46 ?>
47 - <button class="elementor-panel-heading">
47 + <div class="elementor-panel-heading">
48 48 <div class="elementor-panel-heading-toggle elementor-section-toggle" data-collapse_id="{{ data.name }}">
49 - <i class="eicon-caret-right" aria-hidden="true"></i>
49 + <i class="eicon" aria-hidden="true"></i>
50 50 </div>
51 51 <div class="elementor-panel-heading-title elementor-section-title">{{{ data.label }}}</div>
52 - </button>
52 + </div>
53 53 <?php
54 + }
55 +
56 + /**
57 + * Get repeater control default settings.
58 + *
59 + * Retrieve the default settings of the repeater control. Used to return the
60 + * default settings while initializing the repeater control.
61 + *
62 + * @since 1.0.0
63 + * @access protected
64 + *
65 + * @return array Control default settings.
66 + */
67 + protected function get_default_settings() {
68 + return [
69 + 'separator' => 'none',
70 + ];
54 71 }
55 72 }