Version Description
- 29/11/2016 - fix - scripts error issue fixed.
Download this release
Release Info
Developer | pickplugins |
Plugin | Accordion |
Version | 2.0.14 |
Comparing to | |
See all releases |
Code changes from version 2.0.13 to 2.0.14
- accordions.php +2 -2
- readme.txt +5 -2
- templates/scripts.php +3 -16
accordions.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Accordions
|
4 |
Plugin URI: http://www.pickplugins.com/item/accordions-html-css3-responsive-accordion-grid-for-wordpress/
|
5 |
Description: Fully responsive and mobile ready accordion grid for wordpress.
|
6 |
-
Version: 2.0.
|
7 |
Author: pickplugins
|
8 |
Author URI: http://pickplugins.com
|
9 |
License: GPLv2 or later
|
@@ -26,7 +26,7 @@ class Accordions{
|
|
26 |
define('accordions_conatct_url', 'http://pickplugins.com/contact' );
|
27 |
define('accordions_qa_url', 'http://www.pickplugins.com/questions/' );
|
28 |
define('accordions_plugin_name', 'Accordions' );
|
29 |
-
define('accordions_plugin_version', '2.0.
|
30 |
define('accordions_customer_type', 'free' );
|
31 |
define('accordions_share_url', 'https://wordpress.org/plugins/accordions/' );
|
32 |
define('accordions_tutorial_video_url', '//www.youtube.com/embed/h2wNFJaaY8s?rel=0' );
|
3 |
Plugin Name: Accordions
|
4 |
Plugin URI: http://www.pickplugins.com/item/accordions-html-css3-responsive-accordion-grid-for-wordpress/
|
5 |
Description: Fully responsive and mobile ready accordion grid for wordpress.
|
6 |
+
Version: 2.0.14
|
7 |
Author: pickplugins
|
8 |
Author URI: http://pickplugins.com
|
9 |
License: GPLv2 or later
|
26 |
define('accordions_conatct_url', 'http://pickplugins.com/contact' );
|
27 |
define('accordions_qa_url', 'http://www.pickplugins.com/questions/' );
|
28 |
define('accordions_plugin_name', 'Accordions' );
|
29 |
+
define('accordions_plugin_version', '2.0.14' );
|
30 |
define('accordions_customer_type', 'free' );
|
31 |
define('accordions_share_url', 'https://wordpress.org/plugins/accordions/' );
|
32 |
define('accordions_tutorial_video_url', '//www.youtube.com/embed/h2wNFJaaY8s?rel=0' );
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
Donate link: http://pickplugins.com
|
4 |
Tags: accordion, accordions, Responsive accordions, accordions plugin, jQuery accordions, accordions short-code, accordions Widget, accordions plugin wordpress, accordions plugin jquery, tabs, jquery tabs, tab, responsive tabs
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -94,6 +94,9 @@ then paste this shortcode anywhere in your page to display accordions<br />
|
|
94 |
|
95 |
== Changelog ==
|
96 |
|
|
|
|
|
|
|
97 |
= 2.0.13 =
|
98 |
* 12/08/2016 - fix - accordion header quotes issue fixed.
|
99 |
|
3 |
Donate link: http://pickplugins.com
|
4 |
Tags: accordion, accordions, Responsive accordions, accordions plugin, jQuery accordions, accordions short-code, accordions Widget, accordions plugin wordpress, accordions plugin jquery, tabs, jquery tabs, tab, responsive tabs
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.7
|
7 |
+
Stable tag: 2.0.14
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
94 |
|
95 |
== Changelog ==
|
96 |
|
97 |
+
= 2.0.14 =
|
98 |
+
* 29/11/2016 - fix - scripts error issue fixed.
|
99 |
+
|
100 |
= 2.0.13 =
|
101 |
* 12/08/2016 - fix - accordion header quotes issue fixed.
|
102 |
|
templates/scripts.php
CHANGED
@@ -11,22 +11,9 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
11 |
|
12 |
$accordions_class = 'accordions';
|
13 |
|
14 |
-
$html.= '<script>
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
$("#accordions-'.$post_id.'.accordions").accordion({
|
19 |
-
active: "",
|
20 |
-
event: "click",
|
21 |
-
collapsible: '.$accordions_collapsible.',
|
22 |
-
heightStyle: "'.$accordions_heightStyle.'",
|
23 |
-
animated: "swing",';
|
24 |
-
|
25 |
-
$html.= '
|
26 |
-
})
|
27 |
-
})
|
28 |
-
|
29 |
-
</script>';
|
30 |
|
31 |
|
32 |
|
11 |
|
12 |
$accordions_class = 'accordions';
|
13 |
|
14 |
+
$html.= '<script>jQuery(document).ready(function($){$("#accordions-'.$post_id.'.accordions").accordion({active: "",event: "click",collapsible: '.$accordions_collapsible.',heightStyle: "'.$accordions_heightStyle.'",animated: "swing",})})</script>';
|
15 |
+
|
16 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
|
19 |
|