Version Description
- 2022-11-05 - add - WPautop function conflict issue with js solved
Download this release
Release Info
Developer | pickplugins |
Plugin | Accordion |
Version | 2.2.65 |
Comparing to | |
See all releases |
Code changes from version 2.2.64 to 2.2.65
- accordions.php +2 -2
- readme.txt +4 -1
- templates/accordion/accordion-hook.php +0 -14
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.
|
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.
|
27 |
define('accordions_plugin_name', 'Accordions');
|
28 |
define('accordions_plugin_basename', plugin_basename(__FILE__));
|
29 |
|
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.65
|
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.65');
|
27 |
define('accordions_plugin_name', 'Accordions');
|
28 |
define('accordions_plugin_basename', plugin_basename(__FILE__));
|
29 |
|
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.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -140,6 +140,9 @@ then paste this shortcode anywhere in your page to display accordions<br />
|
|
140 |
== Changelog ==
|
141 |
|
142 |
|
|
|
|
|
|
|
143 |
= 2.2.64 =
|
144 |
* 2022-11-01 - add - Option added to enable/disable iframe on accordion content.
|
145 |
|
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.65
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
140 |
== Changelog ==
|
141 |
|
142 |
|
143 |
+
= 2.2.65 =
|
144 |
+
* 2022-11-05 - add - WPautop function conflict issue with js solved
|
145 |
+
|
146 |
= 2.2.64 =
|
147 |
* 2022-11-01 - add - Option added to enable/disable iframe on accordion content.
|
148 |
|
templates/accordion/accordion-hook.php
CHANGED
@@ -588,10 +588,6 @@ function accordions_main_top($atts)
|
|
588 |
if ($expanded_other == 'yes') {
|
589 |
?>
|
590 |
beforeActivate: function(event, ui) {
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
if (ui.newHeader[0]) {
|
596 |
var currHeader = ui.newHeader;
|
597 |
var currContent = currHeader.next(".ui-accordion-content");
|
@@ -612,25 +608,17 @@ function accordions_main_top($atts)
|
|
612 |
},
|
613 |
<?php
|
614 |
} else {
|
615 |
-
|
616 |
?>
|
617 |
beforeActivate: function(event, ui) {
|
618 |
-
|
619 |
if (ui.newHeader[0] != undefined) {
|
620 |
var disabled = ui.newHeader[0].getAttribute('disabled');
|
621 |
-
|
622 |
console.log(disabled);
|
623 |
if (disabled == 'disabled') {
|
624 |
event.preventDefault();
|
625 |
}
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
}
|
630 |
-
|
631 |
},
|
632 |
<?php
|
633 |
-
|
634 |
}
|
635 |
?>
|
636 |
});
|
@@ -641,8 +629,6 @@ function accordions_main_top($atts)
|
|
641 |
|
642 |
if (!empty($custom_js)) :
|
643 |
?>
|
644 |
-
|
645 |
-
|
646 |
<script>
|
647 |
(function($) {
|
648 |
$(document).ready(function() {
|
588 |
if ($expanded_other == 'yes') {
|
589 |
?>
|
590 |
beforeActivate: function(event, ui) {
|
|
|
|
|
|
|
|
|
591 |
if (ui.newHeader[0]) {
|
592 |
var currHeader = ui.newHeader;
|
593 |
var currContent = currHeader.next(".ui-accordion-content");
|
608 |
},
|
609 |
<?php
|
610 |
} else {
|
|
|
611 |
?>
|
612 |
beforeActivate: function(event, ui) {
|
|
|
613 |
if (ui.newHeader[0] != undefined) {
|
614 |
var disabled = ui.newHeader[0].getAttribute('disabled');
|
|
|
615 |
console.log(disabled);
|
616 |
if (disabled == 'disabled') {
|
617 |
event.preventDefault();
|
618 |
}
|
|
|
|
|
|
|
619 |
}
|
|
|
620 |
},
|
621 |
<?php
|
|
|
622 |
}
|
623 |
?>
|
624 |
});
|
629 |
|
630 |
if (!empty($custom_js)) :
|
631 |
?>
|
|
|
|
|
632 |
<script>
|
633 |
(function($) {
|
634 |
$(document).ready(function() {
|