Accordion - Version 2.0.22

Version Description

  • 12/02/2018 - fix - CSS conflict issue fixed on accoridon edit tabs.
Download this release

Release Info

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

Code changes from version 2.0.21 to 2.0.22

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.21
7
  Author: pickplugins
8
  Author URI: http://pickplugins.com
9
  Text Domain: accordions
@@ -27,7 +27,7 @@ class Accordions{
27
  define('accordions_conatct_url', 'https://www.pickplugins.com/contact/' );
28
  define('accordions_qa_url', 'https://www.pickplugins.com/support/' );
29
  define('accordions_plugin_name', 'Accordions' );
30
- define('accordions_plugin_version', '2.0.21' );
31
  define('accordions_customer_type', 'free' );
32
  define('accordions_share_url', 'https://wordpress.org/plugins/accordions/' );
33
  define('accordions_tutorial_video_url', '//www.youtube.com/embed/h2wNFJaaY8s?rel=0' );
@@ -44,18 +44,22 @@ class Accordions{
44
  add_action( 'wp_enqueue_scripts', array( $this, 'accordions_front_scripts' ) );
45
  add_action( 'admin_enqueue_scripts', array( $this, 'accordions_admin_scripts' ) );
46
 
47
- add_action( 'plugins_loaded', array( $this, 'accordions_load_textdomain' ));
48
 
49
  // DIsplay shortcode in widgets
50
  add_filter('widget_text', 'do_shortcode');
51
 
52
- add_filter( 'plugin_action_links_'.plugin_basename( __FILE__ ), array( $this, 'plugin_list_pro_link' ));
53
-
54
  }
55
 
56
 
57
- public function accordions_load_textdomain() {
58
- load_plugin_textdomain( 'accordions', false, plugin_basename( dirname( __FILE__ ) ) . '/languages/' );
 
 
 
 
59
  }
60
 
61
 
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.22
7
  Author: pickplugins
8
  Author URI: http://pickplugins.com
9
  Text Domain: accordions
27
  define('accordions_conatct_url', 'https://www.pickplugins.com/contact/' );
28
  define('accordions_qa_url', 'https://www.pickplugins.com/support/' );
29
  define('accordions_plugin_name', 'Accordions' );
30
+ define('accordions_plugin_version', '2.0.22' );
31
  define('accordions_customer_type', 'free' );
32
  define('accordions_share_url', 'https://wordpress.org/plugins/accordions/' );
33
  define('accordions_tutorial_video_url', '//www.youtube.com/embed/h2wNFJaaY8s?rel=0' );
44
  add_action( 'wp_enqueue_scripts', array( $this, 'accordions_front_scripts' ) );
45
  add_action( 'admin_enqueue_scripts', array( $this, 'accordions_admin_scripts' ) );
46
 
47
+ //add_action( 'plugins_loaded', array( $this, 'accordions_load_textdomain' ));
48
 
49
  // DIsplay shortcode in widgets
50
  add_filter('widget_text', 'do_shortcode');
51
 
52
+ add_filter( 'plugin_action_links_'.plugin_basename( __FILE__ ), array( $this, 'plugin_list_pro_link' ));
53
+ add_action( 'init', array( $this, 'textdomain' ));
54
  }
55
 
56
 
57
+ public function textdomain() {
58
+
59
+ $locale = apply_filters( 'plugin_locale', get_locale(), 'accordions' );
60
+ load_textdomain('accordions', WP_LANG_DIR .'/accordions/accordions-'. $locale .'.mo' );
61
+
62
+ load_plugin_textdomain( 'accordions', false, plugin_basename( dirname( __FILE__ ) ) . '/languages/' );
63
  }
64
 
65
 
assets/admin/ParaAdmin/css/ParaAdmin.css CHANGED
@@ -50,13 +50,12 @@
50
  background:#ffffff;
51
  font-weight: bold;
52
  }
53
-
54
-
55
-
56
  .para-settings ul.box {
57
- clear: both;
58
- margin: 0;
59
- padding: 0;
 
60
  }
61
 
62
  .para-settings ul.box li.tab-box {
50
  background:#ffffff;
51
  font-weight: bold;
52
  }
53
+
 
 
54
  .para-settings ul.box {
55
+ clear: both;
56
+ margin: 0;
57
+ padding: 0;
58
+ display: block;
59
  }
60
 
61
  .para-settings ul.box li.tab-box {
readme.txt CHANGED
@@ -4,7 +4,7 @@
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.9
7
- Stable tag: 2.0.21
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -92,6 +92,8 @@ then paste this shortcode anywhere in your page to display accordions<br />
92
  == Changelog ==
93
 
94
 
 
 
95
 
96
  = 2.0.21 =
97
  * 24/10/2017 - add - Support link update.
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.9
7
+ Stable tag: 2.0.22
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
92
  == Changelog ==
93
 
94
 
95
+ = 2.0.22 =
96
+ * 12/02/2018 - fix - CSS conflict issue fixed on accoridon edit tabs.
97
 
98
  = 2.0.21 =
99
  * 24/10/2017 - add - Support link update.