Accordion - Version 2.2.19

Version Description

  • 2020-04-25 - fix - accordion shortcode "accordions_pplugins" back
Download this release

Release Info

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

Code changes from version 2.2.18 to 2.2.19

Files changed (3) hide show
  1. accordions.php +4 -4
  2. includes/class-shortcodes.php +2 -1
  3. readme.txt +5 -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.18
7
  WC requires at least: 3.0.0
8
  WC tested up to: 4.0
9
  Author: PickPlugins
@@ -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.18' );
27
  define('accordions_plugin_name', 'Accordions' );
28
  define('accordions_plugin_basename', plugin_basename( __FILE__ ) );
29
 
@@ -60,7 +60,7 @@ class Accordions{
60
  add_action( 'wp_enqueue_scripts', array( $this, '_front_scripts' ) );
61
  add_action( 'admin_enqueue_scripts', array( $this, '_admin_scripts' ) );
62
 
63
- add_action( 'plugins_loaded', array( $this, 'accordions_load_textdomain' ));
64
  add_filter('cron_schedules', array($this, 'cron_recurrence_interval'));
65
 
66
 
@@ -77,7 +77,7 @@ class Accordions{
77
  register_widget( 'WidgetAccordions' );
78
  }
79
 
80
- public function accordions_load_textdomain() {
81
 
82
  $locale = apply_filters( 'plugin_locale', get_locale(), 'accordions' );
83
  load_textdomain('accordions', WP_LANG_DIR .'/accordions/accordions-'. $locale .'.mo' );
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.19
7
  WC requires at least: 3.0.0
8
  WC tested up to: 4.0
9
  Author: PickPlugins
23
 
24
  define('accordions_plugin_url', plugins_url('/', __FILE__) );
25
  define('accordions_plugin_dir', plugin_dir_path( __FILE__ ) );
26
+ define('accordions_version', '2.2.19' );
27
  define('accordions_plugin_name', 'Accordions' );
28
  define('accordions_plugin_basename', plugin_basename( __FILE__ ) );
29
 
60
  add_action( 'wp_enqueue_scripts', array( $this, '_front_scripts' ) );
61
  add_action( 'admin_enqueue_scripts', array( $this, '_admin_scripts' ) );
62
 
63
+ add_action( 'plugins_loaded', array( $this, '_textdomain' ));
64
  add_filter('cron_schedules', array($this, 'cron_recurrence_interval'));
65
 
66
 
77
  register_widget( 'WidgetAccordions' );
78
  }
79
 
80
+ public function _textdomain() {
81
 
82
  $locale = apply_filters( 'plugin_locale', get_locale(), 'accordions' );
83
  load_textdomain('accordions', WP_LANG_DIR .'/accordions/accordions-'. $locale .'.mo' );
includes/class-shortcodes.php CHANGED
@@ -17,7 +17,8 @@ class class_accordions_shortcodes {
17
 
18
  add_shortcode( 'accordions', array( $this, 'accordions_display' ) );
19
  add_shortcode( 'accordions_pickplguins', array( $this, 'accordions_display' ) );
20
-
 
21
  add_shortcode( 'accordions_tabs', array( $this, 'accordions_tabs_display' ) );
22
  add_shortcode( 'accordions_tabs_pickplguins', array( $this, 'accordions_tabs_display' ) );
23
 
17
 
18
  add_shortcode( 'accordions', array( $this, 'accordions_display' ) );
19
  add_shortcode( 'accordions_pickplguins', array( $this, 'accordions_display' ) );
20
+ add_shortcode( 'accordions_pplugins', array( $this, 'accordions_display' ) );
21
+
22
  add_shortcode( 'accordions_tabs', array( $this, 'accordions_tabs_display' ) );
23
  add_shortcode( 'accordions_tabs_pickplguins', array( $this, 'accordions_tabs_display' ) );
24
 
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: 5.4
7
- Stable tag: 2.2.18
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -139,6 +139,10 @@ then paste this shortcode anywhere in your page to display accordions<br />
139
 
140
  == Changelog ==
141
 
 
 
 
 
142
  = 2.2.18 =
143
  * 2020-04-22 - fix - accordion header font-family issue fixed.
144
  * 2020-04-22 - fix - accordion body font-family issue fixed.
4
  Tags: accordion, tabs, FAQ, WooCommerce FAQ Tab, accordion short-code, accordions widget, tab
5
  Requires at least: 3.8
6
  Tested up to: 5.4
7
+ Stable tag: 2.2.19
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
139
 
140
  == Changelog ==
141
 
142
+
143
+ = 2.2.19 =
144
+ * 2020-04-25 - fix - accordion shortcode "accordions_pplugins" back
145
+
146
  = 2.2.18 =
147
  * 2020-04-22 - fix - accordion header font-family issue fixed.
148
  * 2020-04-22 - fix - accordion body font-family issue fixed.