Plugin Directory

Changeset 3445273


Ignore:
Timestamp:
01/23/2026 03:36:25 AM (2 months ago)
Author:
pickplugins
Message:

version update

Location:
accordions/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • accordions/trunk/accordions.php

    r3437378 r3445273  
    44Plugin URI: https://pickplugins.com/accordions/
    55Description: Fully responsive and mobile ready accordion grid for wordpress.
    6 Version: 2.3.22
     6Version: 2.3.23
    77Author: PickPlugins
    88Author URI: http://pickplugins.com
  • accordions/trunk/assets/settings-tabs/settings-tabs.js

    r3437378 r3445273  
    241241
    242242        document.querySelectorAll(".add-repeat-field").forEach(item => {
     243
     244
     245
    243246            item.addEventListener("click", function (e) {
    244247                const timestamp = Date.now();
     
    248251                repeatable_html = add_html.replace(/TIMEINDEX/g, timestamp);
    249252
    250                 console.log(wrapperid);
    251                 console.log(repeatable_html);
     253                console.log("textarea_to_editor");
     254
    252255
    253256                e.target.parentElement.querySelector('.repeatable-field-list').insertAdjacentHTML('beforeend', repeatable_html);
     
    282285            var textarea = document.getElementsByClassName("textarea-editor");
    283286
     287
     288
    284289            for (i = 0; i < textarea.length; i++) {
    285290
    286291                el_id = textarea[i].id;
    287                 el_attr = textarea[i].getAttribute('editor_enabled');
     292                el_attr = textarea[i].getAttribute('data-editor_enabled');
    288293
    289294                //editor_enabled = $(this).attr('editor_enabled');
    290295
     296                console.log(el_attr);
    291297
    292298
  • accordions/trunk/includes/class-settings-tabs.php

    r3437378 r3445273  
    497497      <div class="item-wrap collapsible">
    498498        <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>
    500500          <?php
    501501          if ($sortable) :
     
    977977      ob_start();
    978978    ?>
    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>
    980980    <?php
    981981      $input_html = ob_get_clean();
  • accordions/trunk/readme.md

    r3437378 r3445273  
    55    Requires at least: 5.0
    66    Tested up to: 6.9
    7     Stable tag: 2.3.22
     7    Stable tag: 2.3.23
    88    License: GPLv2 or later
    99    License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    120120== Changelog ==
    121121
    122 
     122    = 2.3.22 =
     123    * 2026-01-23 - fix - Accordion content editor issue fixed.
    123124
    124125    = 2.3.22 =
Note: See TracChangeset for help on using the changeset viewer.