Changeset 3445273
- Timestamp:
- 01/23/2026 03:36:25 AM (2 months ago)
- Location:
- accordions/trunk
- Files:
-
- 4 edited
-
accordions.php (modified) (1 diff)
-
assets/settings-tabs/settings-tabs.js (modified) (3 diffs)
-
includes/class-settings-tabs.php (modified) (2 diffs)
-
readme.md (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
accordions/trunk/accordions.php
r3437378 r3445273 4 4 Plugin URI: https://pickplugins.com/accordions/ 5 5 Description: Fully responsive and mobile ready accordion grid for wordpress. 6 Version: 2.3.2 26 Version: 2.3.23 7 7 Author: PickPlugins 8 8 Author URI: http://pickplugins.com -
accordions/trunk/assets/settings-tabs/settings-tabs.js
r3437378 r3445273 241 241 242 242 document.querySelectorAll(".add-repeat-field").forEach(item => { 243 244 245 243 246 item.addEventListener("click", function (e) { 244 247 const timestamp = Date.now(); … … 248 251 repeatable_html = add_html.replace(/TIMEINDEX/g, timestamp); 249 252 250 console.log( wrapperid);251 console.log(repeatable_html); 253 console.log("textarea_to_editor"); 254 252 255 253 256 e.target.parentElement.querySelector('.repeatable-field-list').insertAdjacentHTML('beforeend', repeatable_html); … … 282 285 var textarea = document.getElementsByClassName("textarea-editor"); 283 286 287 288 284 289 for (i = 0; i < textarea.length; i++) { 285 290 286 291 el_id = textarea[i].id; 287 el_attr = textarea[i].getAttribute(' editor_enabled');292 el_attr = textarea[i].getAttribute('data-editor_enabled'); 288 293 289 294 //editor_enabled = $(this).attr('editor_enabled'); 290 295 296 console.log(el_attr); 291 297 292 298 -
accordions/trunk/includes/class-settings-tabs.php
r3437378 r3445273 497 497 <div class="item-wrap collapsible"> 498 498 <div class="header"> 499 <span class="remove" ><?php echo wp_kses_post($remove_text); ?></span>499 <span class="remove"><?php echo wp_kses_post($remove_text); ?></span> 500 500 <?php 501 501 if ($sortable) : … … 977 977 ob_start(); 978 978 ?> 979 <textarea editor_enabled="no" class="textarea-editor" name="<?php echo esc_attr($field_name); ?>" id="<?php echo esc_attr($css_id); ?>" cols="40" rows="5" placeholder="<?php echo esc_attr($placeholder); ?>"><?php echo esc_html($value); ?></textarea>979 <textarea data-editor_enabled="no" class="textarea-editor" name="<?php echo esc_attr($field_name); ?>" id="<?php echo esc_attr($css_id); ?>" cols="40" rows="5" placeholder="<?php echo esc_attr($placeholder); ?>"><?php echo esc_html($value); ?></textarea> 980 980 <?php 981 981 $input_html = ob_get_clean(); -
accordions/trunk/readme.md
r3437378 r3445273 5 5 Requires at least: 5.0 6 6 Tested up to: 6.9 7 Stable tag: 2.3.2 27 Stable tag: 2.3.23 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 120 120 == Changelog == 121 121 122 122 = 2.3.22 = 123 * 2026-01-23 - fix - Accordion content editor issue fixed. 123 124 124 125 = 2.3.22 =
Note: See TracChangeset
for help on using the changeset viewer.