Accordion - Version 2.2.58

Version Description

  • 2022-09-10 - fix - accordions_ajax undefined issue fixed.
    • 2022-09-10 - fix - accordion remove issue fixed.
Download this release

Release Info

Developer pickplugins
Plugin Icon 128x128 Accordion
Version 2.2.58
Comparing to
See all releases

Code changes from version 2.2.57 to 2.2.58

Files changed (3) hide show
  1. accordions.php +4 -4
  2. includes/functions.php +1 -1
  3. readme.txt +6 -1
accordions.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Accordions by PickPlugins
4
  Plugin URI: https://www.pickplugins.com/item/accordions-html-css3-responsive-accordion-grid-for-wordpress/?ref=dashboard
5
  Description: Fully responsive and mobile ready accordion grid for wordpress.
6
- Version: 2.2.57
7
  Author: PickPlugins
8
  Author URI: http://pickplugins.com
9
  Text Domain: accordions
@@ -23,7 +23,7 @@ class Accordions
23
 
24
  define('accordions_plugin_url', plugins_url('/', __FILE__));
25
  define('accordions_plugin_dir', plugin_dir_path(__FILE__));
26
- define('accordions_version', '2.2.57');
27
  define('accordions_plugin_name', 'Accordions');
28
  define('accordions_plugin_basename', plugin_basename(__FILE__));
29
 
@@ -132,8 +132,8 @@ class Accordions
132
  public function _front_scripts()
133
  {
134
 
135
- //wp_enqueue_script('accordions_js', accordions_plugin_url . 'assets/frontend/js/scripts.js', array('jquery'));
136
- //wp_localize_script('accordions_js', 'accordions_ajax', array('accordions_ajaxurl' => admin_url('admin-ajax.php')));
137
 
138
  wp_register_style('accordions-style', accordions_plugin_url . 'assets/frontend/css/style.css');
139
  wp_register_style('style-tabs', accordions_plugin_url . 'assets/global/css/style-tabs.css');
3
  Plugin Name: Accordions by PickPlugins
4
  Plugin URI: https://www.pickplugins.com/item/accordions-html-css3-responsive-accordion-grid-for-wordpress/?ref=dashboard
5
  Description: Fully responsive and mobile ready accordion grid for wordpress.
6
+ Version: 2.2.58
7
  Author: PickPlugins
8
  Author URI: http://pickplugins.com
9
  Text Domain: accordions
23
 
24
  define('accordions_plugin_url', plugins_url('/', __FILE__));
25
  define('accordions_plugin_dir', plugin_dir_path(__FILE__));
26
+ define('accordions_version', '2.2.58');
27
  define('accordions_plugin_name', 'Accordions');
28
  define('accordions_plugin_basename', plugin_basename(__FILE__));
29
 
132
  public function _front_scripts()
133
  {
134
 
135
+ wp_enqueue_script('accordions_js', accordions_plugin_url . 'assets/frontend/js/scripts.js', array('jquery'));
136
+ wp_localize_script('accordions_js', 'accordions_ajax', array('accordions_ajaxurl' => admin_url('admin-ajax.php')));
137
 
138
  wp_register_style('accordions-style', accordions_plugin_url . 'assets/frontend/css/style.css');
139
  wp_register_style('style-tabs', accordions_plugin_url . 'assets/global/css/style-tabs.css');
includes/functions.php CHANGED
@@ -618,7 +618,7 @@ function accordions_wp_kses($str)
618
  $arr = array(
619
 
620
  'div' => array('id' => array(), 'class' => array(), 'add_html' => array(), 'style' => array(), 'hidefocus' => array(), 'tabindex' => array(), 'role' => array(), 'aria-label' => array(), 'aria-haspopup' => array(), 'aria-labelledby' => array(),),
621
- 'span' => array('id' => array(), 'class' => array(), 'tabindex' => array(),),
622
  'i' => array('id' => array(), 'class' => array()),
623
  'strong' => array('id' => array(), 'class' => array()),
624
  'em' => array('id' => array(), 'class' => array()),
618
  $arr = array(
619
 
620
  'div' => array('id' => array(), 'class' => array(), 'add_html' => array(), 'style' => array(), 'hidefocus' => array(), 'tabindex' => array(), 'role' => array(), 'aria-label' => array(), 'aria-haspopup' => array(), 'aria-labelledby' => array(),),
621
+ 'span' => array('id' => array(), 'class' => array(), 'onclick' => array(), 'tabindex' => array(),),
622
  'i' => array('id' => array(), 'class' => array()),
623
  'strong' => array('id' => array(), 'class' => array()),
624
  'em' => array('id' => array(), 'class' => array()),
readme.txt CHANGED
@@ -4,7 +4,7 @@
4
  Tags: accordion, tabs, FAQ, WooCommerce FAQ Tab, accordion short-code, accordions widget, tab
5
  Requires at least: 3.8
6
  Tested up to: 6.0
7
- Stable tag: 2.2.57
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -139,6 +139,11 @@ then paste this shortcode anywhere in your page to display accordions<br />
139
 
140
  == Changelog ==
141
 
 
 
 
 
 
142
  = 2.2.57 =
143
  * 2022-09-09 - add - Disbale opening any accordion.
144
 
4
  Tags: accordion, tabs, FAQ, WooCommerce FAQ Tab, accordion short-code, accordions widget, tab
5
  Requires at least: 3.8
6
  Tested up to: 6.0
7
+ Stable tag: 2.2.58
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
139
 
140
  == Changelog ==
141
 
142
+ = 2.2.58 =
143
+ * 2022-09-10 - fix - accordions_ajax undefined issue fixed.
144
+ * 2022-09-10 - fix - accordion remove issue fixed.
145
+
146
+
147
  = 2.2.57 =
148
  * 2022-09-09 - add - Disbale opening any accordion.
149