Accordion - Version 2.2.10

Version Description

Download this release

Release Info

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

Code changes from version 2.2.7 to 2.2.10

accordions.php CHANGED
@@ -3,9 +3,9 @@
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.6
7
  WC requires at least: 3.0.0
8
- WC tested up to: 3.6
9
  Author: PickPlugins
10
  Author URI: http://pickplugins.com
11
  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.6' );
27
  define('accordions_plugin_name', 'Accordions' );
28
  define('accordions_plugin_basename', plugin_basename( __FILE__ ) );
29
 
@@ -43,14 +43,10 @@ class Accordions{
43
 
44
 
45
  require_once( accordions_plugin_dir . 'includes/class-settings-tabs.php');
46
- require_once( accordions_plugin_dir . 'includes/class-accordions-support.php');
47
- //require_once( accordions_plugin_dir . 'includes/meta-new.php');
48
  require_once( accordions_plugin_dir . 'includes/functions.php');
49
  require_once( accordions_plugin_dir . 'includes/functions-wc.php');
50
- require_once( accordions_plugin_dir . 'includes/class-functions.php');
51
  require_once( accordions_plugin_dir . 'includes/class-shortcodes.php');
52
  require_once( accordions_plugin_dir . 'includes/duplicate-post.php');
53
- //require_once( accordions_plugin_dir . 'includes/class-WPAdminSettings.php');
54
 
55
 
56
 
@@ -162,7 +158,7 @@ class Accordions{
162
  public function _admin_scripts(){
163
 
164
  wp_enqueue_script('accordions_admin_js', accordions_plugin_url. 'assets/admin/js/scripts.js' , array( 'jquery' ),'20181018');
165
- wp_localize_script( 'accordions_admin_js', 'accordions_ajax', array( 'accordions_ajaxurl' => admin_url( 'admin-ajax.php')));
166
 
167
  wp_register_style('settings-tabs', accordions_plugin_url.'assets/settings-tabs/settings-tabs.css');
168
  wp_register_script('settings-tabs', accordions_plugin_url.'assets/settings-tabs/settings-tabs.js' , array( 'jquery' ));
@@ -183,8 +179,8 @@ class Accordions{
183
 
184
 
185
 
186
- wp_enqueue_script('accordions_admin_js', accordions_plugin_url. 'assets/admin/js/scripts.js' , array( 'jquery' ),'20181018');
187
- wp_localize_script( 'accordions_admin_js', 'accordions_ajax', array( 'accordions_ajaxurl' => admin_url( 'admin-ajax.php')));
188
 
189
 
190
 
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.10
7
  WC requires at least: 3.0.0
8
+ WC tested up to: 4.0
9
  Author: PickPlugins
10
  Author URI: http://pickplugins.com
11
  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.10' );
27
  define('accordions_plugin_name', 'Accordions' );
28
  define('accordions_plugin_basename', plugin_basename( __FILE__ ) );
29
 
43
 
44
 
45
  require_once( accordions_plugin_dir . 'includes/class-settings-tabs.php');
 
 
46
  require_once( accordions_plugin_dir . 'includes/functions.php');
47
  require_once( accordions_plugin_dir . 'includes/functions-wc.php');
 
48
  require_once( accordions_plugin_dir . 'includes/class-shortcodes.php');
49
  require_once( accordions_plugin_dir . 'includes/duplicate-post.php');
 
50
 
51
 
52
 
158
  public function _admin_scripts(){
159
 
160
  wp_enqueue_script('accordions_admin_js', accordions_plugin_url. 'assets/admin/js/scripts.js' , array( 'jquery' ),'20181018');
161
+ wp_localize_script( 'accordions_admin_js', 'accordions_ajax', array( 'accordions_ajaxurl' => admin_url( 'admin-ajax.php'), 'nonce' => wp_create_nonce('accordions_nonce')));
162
 
163
  wp_register_style('settings-tabs', accordions_plugin_url.'assets/settings-tabs/settings-tabs.css');
164
  wp_register_script('settings-tabs', accordions_plugin_url.'assets/settings-tabs/settings-tabs.js' , array( 'jquery' ));
179
 
180
 
181
 
182
+ //wp_enqueue_script('accordions_admin_js', accordions_plugin_url. 'assets/admin/js/scripts.js' , array( 'jquery' ),'20181018');
183
+ //wp_localize_script( 'accordions_admin_js', 'accordions_ajax', array( 'accordions_ajaxurl' => admin_url( 'admin-ajax.php')));
184
 
185
 
186
 
assets/admin/js/scripts.js CHANGED
@@ -1,6 +1,9 @@
1
  jQuery(document).ready(function($) {
2
  $(document).on('click','.accordions-import-json',function(){
3
  json_file = $('.json_file').val();
 
 
 
4
  if(json_file){
5
  $(this).html('<i class="fa fa-spinner fa-spin"></i>');
6
  $.ajax(
@@ -11,11 +14,11 @@ jQuery(document).ready(function($) {
11
  data: {
12
  "action" : "accordions_ajax_import_json",
13
  "json_file" : json_file,
 
14
  },
15
  success: function( response ) {
16
  var data = JSON.parse( response );
17
- json_file = data['json_file'];
18
- //console.log(data);
19
  $(this).html('Import done');
20
  $('.json_file').val('');
21
  } });
1
  jQuery(document).ready(function($) {
2
  $(document).on('click','.accordions-import-json',function(){
3
  json_file = $('.json_file').val();
4
+
5
+
6
+
7
  if(json_file){
8
  $(this).html('<i class="fa fa-spinner fa-spin"></i>');
9
  $.ajax(
14
  data: {
15
  "action" : "accordions_ajax_import_json",
16
  "json_file" : json_file,
17
+ "nonce" : accordions_ajax.nonce,
18
  },
19
  success: function( response ) {
20
  var data = JSON.parse( response );
21
+ console.log(data);
 
22
  $(this).html('Import done');
23
  $('.json_file').val('');
24
  } });
includes/class-accordions-support.php CHANGED
@@ -13,215 +13,3 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
14
  if ( ! defined('ABSPATH')) exit; // if direct access
15
 
16
-
17
- if( ! class_exists( 'class_accordions_support' ) ) {
18
- class class_accordions_support
19
- {
20
-
21
- public function __construct()
22
- {
23
-
24
-
25
- //add_action( 'init', array( $this, 'check_plugin_update' ), 12 );
26
-
27
- }
28
-
29
- public function our_plugins()
30
- {
31
-
32
- $our_plugins = array(
33
- array(
34
- 'title' => 'Post Grid',
35
- 'link' => 'http://www.pickplugins.com/item/post-grid-create-awesome-grid-from-any-post-type-for-wordpress/',
36
- 'thumb' => 'https://www.pickplugins.com/wp-content/uploads/2015/12/3814-post-grid-thumb-500x262.jpg',
37
- ),
38
-
39
- array(
40
- 'title' => 'Woocommerce Products Slider',
41
- 'link' => 'http://www.pickplugins.com/item/woocommerce-products-slider-for-wordpress/',
42
- 'thumb' => 'https://www.pickplugins.com/wp-content/uploads/2016/03/4357-woocommerce-products-slider-thumb-500x250.jpg',
43
- ),
44
-
45
- array(
46
- 'title' => 'Team Showcase',
47
- 'link' => 'http://www.pickplugins.com/item/team-responsive-meet-the-team-grid-for-wordpress/',
48
- 'thumb' => 'https://www.pickplugins.com/wp-content/uploads/2016/06/5145-team-thumb-500x250.jpg',
49
- ),
50
-
51
- array(
52
- 'title' => 'Job Board Manager',
53
- 'link' => 'https://wordpress.org/plugins/job-board-manager/',
54
- 'thumb' => 'https://www.pickplugins.com/wp-content/uploads/2015/08/3466-job-board-manager-thumb-500x250.png',
55
- ),
56
-
57
- array(
58
- 'title' => 'Wishlist for WooCommerce',
59
- 'link' => 'https://www.pickplugins.com/item/woocommerce-wishlist/',
60
- 'thumb' => 'https://www.pickplugins.com/wp-content/uploads/2017/10/12047-woocommerce-wishlist.png',
61
- ),
62
-
63
- array(
64
- 'title' => 'Breadcrumb',
65
- 'link' => 'https://www.pickplugins.com/item/breadcrumb-awesome-breadcrumbs-style-navigation-for-wordpress/',
66
- 'thumb' => 'https://www.pickplugins.com/wp-content/uploads/2016/03/4242-breadcrumb-500x252.png',
67
- ),
68
-
69
- array(
70
- 'title' => 'Pricing Table',
71
- 'link' => 'https://www.pickplugins.com/item/pricing-table/',
72
- 'thumb' => 'https://www.pickplugins.com/wp-content/uploads/2016/10/7042-pricing-table-thumbnail-500x250.png',
73
- ),
74
-
75
- );
76
-
77
- return apply_filters('accordions_our_plugins', $our_plugins);
78
-
79
-
80
- }
81
-
82
-
83
- public function video_tutorials()
84
- {
85
-
86
- $tutorials = array(
87
- array(
88
- 'title' => __('Customize content', 'accordions'),
89
- 'video_url' => 'https://www.youtube.com/watch?v=cRjaVwlih6Q&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
90
- ),
91
- array(
92
- 'title' => __('Enable search', 'accordions'),
93
- 'video_url' => 'https://www.youtube.com/watch?v=oLJw6kBHau0&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
94
- ),
95
-
96
- array(
97
- 'title' => __('Click header to scroll top', 'accordions'),
98
- 'video_url' => 'https://www.youtube.com/watch?v=CIcRBoQ5CO4&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
99
- ),
100
- array(
101
- 'title' => __('Enable lazy load', 'accordions'),
102
- 'video_url' => 'https://www.youtube.com/watch?v=aKVK5gW1BKA&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
103
- ),
104
-
105
-
106
- array(
107
- 'title' => __('Hide edit link', 'accordions'),
108
- 'video_url' => 'https://www.youtube.com/watch?v=OvVolGXpnn0&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
109
- ),
110
-
111
- array(
112
- 'title' => __('Create nested or multi-level accordion', 'accordions'),
113
- 'video_url' => 'https://www.youtube.com/watch?v=Z_iKPNDMEBs&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
114
- ),
115
-
116
- array(
117
- 'title' => __('Customize header', 'accordions'),
118
- 'video_url' => 'https://www.youtube.com/watch?v=skU3J0JpcBU&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
119
- ),
120
-
121
- array(
122
- 'title' => __('Customize icons', 'accordions'),
123
- 'video_url' => 'https://www.youtube.com/watch?v=-ATeH0j6-t4&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
124
- ),
125
-
126
- array(
127
- 'title' => __('Open/active via url', 'accordions'),
128
- 'video_url' => 'https://www.youtube.com/watch?v=PaxUawdnmfA&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
129
- ),
130
- array(
131
- 'title' => __('Open/active on page load', 'accordions'),
132
- 'video_url' => 'https://www.youtube.com/watch?v=Dqd2zSpCQlo&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
133
- ),
134
-
135
- array(
136
- 'title' => __('How to create accordion', 'accordions'),
137
- 'video_url' => 'https://www.youtube.com/watch?v=9PS63kqe20M&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
138
- ),
139
- array(
140
- 'title' => __('How to install accordions', 'accordions'),
141
- 'video_url' => 'https://www.youtube.com/watch?v=ecYxS3Udjz4&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
142
- ),
143
-
144
- array(
145
- 'title' => __('WooCommerce product faq tab', 'accordions'),
146
- 'video_url' => 'https://www.youtube.com/watch?v=1yeIpc52p2Y&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
147
- ),
148
- array(
149
- 'title' => __('Expand/collapse all button', 'accordions'),
150
- 'video_url' => 'https://www.youtube.com/watch?v=Ah10F3co83o&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
151
- ),
152
-
153
- array(
154
- 'title' => __('Accordions click track', 'accordions'),
155
- 'video_url' => 'https://www.youtube.com/watch?v=qbCsynoaT_Q&list=PL2GPPfgLrfWzOWsRCgV5Qytg6aImGPbCE',
156
- ),
157
-
158
-
159
- );
160
-
161
- return apply_filters('accordions_video_tutorials', $tutorials);
162
-
163
-
164
- }
165
-
166
-
167
- public function faq(){
168
-
169
- $faq = array(
170
-
171
-
172
- array(
173
- 'title'=>'Create accordion',
174
- 'url'=>'https://www.pickplugins.com/documentation/accordions/faq/how-to-create-accordion/?ref=dashboard',
175
- ),
176
- array(
177
- 'title'=>'Upgrade to premium?',
178
- 'url'=>'https://www.pickplugins.com/documentation/accordions/faq/upgrade-to-premium/?ref=dashboard',
179
- ),
180
-
181
-
182
- array(
183
- 'title'=>'Create nested accordion',
184
- 'url'=>'https://www.pickplugins.com/documentation/accordions/faq/how-to-create-nested-accordion/?ref=dashboard',
185
-
186
- ),
187
- array(
188
- 'title'=>'Accordion open/closed on load',
189
- 'url'=>'https://www.pickplugins.com/documentation/accordions/faq/accordion-openclosed-on-load/?ref=dashboard',
190
-
191
- ),
192
-
193
- array(
194
- 'title'=>'Filter accordion header',
195
- 'url'=>'https://www.pickplugins.com/documentation/accordions/filter-hooks/filter-hook-accordions_filter_title/?ref=dashboard',
196
- ),
197
-
198
- array(
199
- 'title'=>'Filter accordion content',
200
- 'url'=>'https://www.pickplugins.com/documentation/accordions/filter-hooks/filter-hook-accordions_filter_content/?ref=dashboard',
201
- ),
202
- array(
203
- 'title'=>'Open/activate via URL parameter',
204
- 'url'=>'https://www.pickplugins.com/documentation/accordions/faq/how-to-openactivate-via-url-parameter/?ref=dashboard',
205
- ),
206
-
207
- array(
208
- 'title'=>'Custom header background image',
209
- 'url'=>'https://www.pickplugins.com/documentation/accordions/faq/custom-header-background-image/?ref=dashboard',
210
- ),
211
-
212
-
213
-
214
-
215
-
216
-
217
- );
218
-
219
-
220
- return apply_filters('accordions_faq', $faq);
221
-
222
-
223
- }
224
-
225
-
226
- }
227
- }
13
 
14
  if ( ! defined('ABSPATH')) exit; // if direct access
15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/class-admin-notices.php CHANGED
@@ -35,7 +35,7 @@ class class_accordions_notices{
35
  ?>
36
  <div class="update-nag">
37
  <?php
38
- echo sprintf(__('Data migration required for <b>Accordions by PickPlugins</b> plugin, please <a class="button button-primary" href="%s">click to start</a> migration. Watch this <a target="_blank" href="https://youtu.be/DDKMWphWLGI">video</a> first', 'accordions'), $actionurl);
39
  ?>
40
  </div>
41
  <?php
35
  ?>
36
  <div class="update-nag">
37
  <?php
38
+ echo sprintf(__('Data migration required for <b>Accordions by PickPlugins</b> plugin, please <a class="button button-primary" href="%s">click to start</a> migration. Watch this <a target="_blank" href="https://www.youtube.com/watch?v=4ZGMA6hOoxs">video</a> first', 'accordions'), $actionurl);
39
  ?>
40
  </div>
41
  <?php
includes/class-functions.php CHANGED
@@ -7,42 +7,3 @@
7
 
8
  if ( ! defined('ABSPATH')) exit; // if direct access
9
 
10
-
11
- class class_accordions_functions {
12
-
13
-
14
- public function __construct(){
15
-
16
- }
17
-
18
-
19
-
20
- public function accordions_themes($themes = array()){
21
-
22
- $themes = array(
23
- 'flat'=>array(
24
- 'name'=>__('Flat', 'accordions'),
25
- 'thumb'=> accordions_plugin_url.'assets/admin/images/flat.png',
26
- 'css_url'=>'',
27
- ),
28
-
29
- 'semi-rounded'=>array(
30
- 'name'=>__('Semi Rounded', 'accordions'),
31
- 'thumb'=>accordions_plugin_url.'assets/admin/images/semi-rounded.png',
32
- 'css_url'=>'',
33
- ),
34
- );
35
-
36
- foreach(apply_filters( 'accordions_themes', $themes ) as $theme_key=> $theme_name){
37
-
38
- $theme_list[$theme_key] = $theme_name;
39
- }
40
-
41
-
42
- return $theme_list;
43
-
44
- }
45
-
46
-
47
-
48
- }
7
 
8
  if ( ! defined('ABSPATH')) exit; // if direct access
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/class-post-meta-accordions-hook.php CHANGED
@@ -1094,8 +1094,8 @@ function accordions_metabox_content_content($post_id){
1094
  array(
1095
  'id' => 'header',
1096
  'css_id' => 'header_TIMEINDEX',
1097
- 'title' => __('Header','team'),
1098
- 'details' => __('Accordion header.','team'),
1099
  'type' => 'text',
1100
  'value' => '',
1101
  'default' => '',
@@ -1104,8 +1104,8 @@ function accordions_metabox_content_content($post_id){
1104
  array(
1105
  'id' => 'body',
1106
  'css_id' => 'body_TIMEINDEX',
1107
- 'title' => __('Body','team'),
1108
- 'details' => __('Accordion body content.','team'),
1109
  'type' => 'textarea_editor',
1110
  'value' => '',
1111
  'default' => '',
@@ -1114,8 +1114,8 @@ function accordions_metabox_content_content($post_id){
1114
  array(
1115
  'id' => 'hide',
1116
  'css_id' => 'hide_TIMEINDEX',
1117
- 'title' => __('Hide','team'),
1118
- 'details' => __('Hide this.','team'),
1119
  'type' => 'select',
1120
  'value' => '',
1121
  'default' => 'false',
@@ -1239,11 +1239,11 @@ if(!function_exists('accordions_metabox_content_help_support')) {
1239
  <p><?php echo __('Watch video tutorials.', 'accordions'); ?></p>
1240
  <a class="button" href="https://www.youtube.com/playlist?list=PL0QP7T2SN94ZPeQ83jOnteDDrOeDLBuFD"><i class="fab fa-youtube"></i> <?php echo __('All tutorials', 'accordions'); ?></a>
1241
 
1242
- <!-- <ul>-->
1243
- <!-- <li><i class="far fa-dot-circle"></i> <a href="https://www.youtube.com/watch?v=SOe0D-Og3nQ&list=PL0QP7T2SN94atYZswlnBMhDuIYoqlmlxy&index=1">How to install plugin & setup</a></li>-->
1244
- <!---->
1245
- <!---->
1246
- <!-- </ul>-->
1247
 
1248
 
1249
 
@@ -1267,7 +1267,7 @@ if(!function_exists('accordions_metabox_content_help_support')) {
1267
  ob_start();
1268
  ?>
1269
 
1270
- <p class="">We wish your 2 minutes to write your feedback about the <b>PickPlugins Product Slider</b> plugin. give us <span style="color: #ffae19"><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i></span></p>
1271
 
1272
  <a target="_blank" href="https://wordpress.org/plugins/accordions/#reviews" class="button"><i class="fab fa-wordpress"></i> Write a review</a>
1273
 
1094
  array(
1095
  'id' => 'header',
1096
  'css_id' => 'header_TIMEINDEX',
1097
+ 'title' => __('Header','accordions'),
1098
+ 'details' => __('Accordion header.','accordions'),
1099
  'type' => 'text',
1100
  'value' => '',
1101
  'default' => '',
1104
  array(
1105
  'id' => 'body',
1106
  'css_id' => 'body_TIMEINDEX',
1107
+ 'title' => __('Body','accordions'),
1108
+ 'details' => __('Accordion body content.','accordions'),
1109
  'type' => 'textarea_editor',
1110
  'value' => '',
1111
  'default' => '',
1114
  array(
1115
  'id' => 'hide',
1116
  'css_id' => 'hide_TIMEINDEX',
1117
+ 'title' => __('Hide','accordions'),
1118
+ 'details' => __('Hide this.','accordions'),
1119
  'type' => 'select',
1120
  'value' => '',
1121
  'default' => 'false',
1239
  <p><?php echo __('Watch video tutorials.', 'accordions'); ?></p>
1240
  <a class="button" href="https://www.youtube.com/playlist?list=PL0QP7T2SN94ZPeQ83jOnteDDrOeDLBuFD"><i class="fab fa-youtube"></i> <?php echo __('All tutorials', 'accordions'); ?></a>
1241
 
1242
+ <ul>
1243
+ <li><i class="far fa-dot-circle"></i> <a href="https://www.youtube.com/watch?v=4ZGMA6hOoxs">Accordions - data migration</a></li>
1244
+
1245
+
1246
+ </ul>
1247
 
1248
 
1249
 
1267
  ob_start();
1268
  ?>
1269
 
1270
+ <p class="">We wish your 2 minutes to write your feedback about the <b>Accordions</b> plugin. give us <span style="color: #ffae19"><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i></span></p>
1271
 
1272
  <a target="_blank" href="https://wordpress.org/plugins/accordions/#reviews" class="button"><i class="fab fa-wordpress"></i> Write a review</a>
1273
 
includes/class-post-types.php CHANGED
@@ -34,7 +34,7 @@ class accordions_post_types{
34
 
35
 
36
  register_post_type( "accordions",
37
- apply_filters( "team_posttype_accordions", array(
38
  'labels' => array(
39
  'name' => $plural,
40
  'singular_name' => $singular,
@@ -42,7 +42,7 @@ class accordions_post_types{
42
  'all_items' => sprintf( __( 'All %s', 'accordions' ), $plural ),
43
  'add_new' => __( 'Add New', 'accordions' ),
44
  'add_new_item' => sprintf( __( 'Add %s', 'accordions' ), $singular ),
45
- 'edit' => __( 'Edit', 'team' ),
46
  'edit_item' => sprintf( __( 'Edit %s', 'accordions' ), $singular ),
47
  'new_item' => sprintf( __( 'New %s', 'accordions' ), $singular ),
48
  'view' => sprintf( __( 'View %s', 'accordions' ), $singular ),
34
 
35
 
36
  register_post_type( "accordions",
37
+ apply_filters( "accordions_posttype", array(
38
  'labels' => array(
39
  'name' => $plural,
40
  'singular_name' => $singular,
42
  'all_items' => sprintf( __( 'All %s', 'accordions' ), $plural ),
43
  'add_new' => __( 'Add New', 'accordions' ),
44
  'add_new_item' => sprintf( __( 'Add %s', 'accordions' ), $singular ),
45
+ 'edit' => __( 'Edit', 'accordions' ),
46
  'edit_item' => sprintf( __( 'Edit %s', 'accordions' ), $singular ),
47
  'new_item' => sprintf( __( 'New %s', 'accordions' ), $singular ),
48
  'view' => sprintf( __( 'View %s', 'accordions' ), $singular ),
includes/class-settings-hook.php CHANGED
@@ -65,7 +65,7 @@ function accordions_settings_content_general(){
65
 
66
  $wp_query = new WP_Query( array (
67
  'post_type' => 'accordions',
68
- 'post_status' => 'publish',
69
  'posts_per_page' => -1,
70
  ));
71
 
@@ -207,11 +207,11 @@ if(!function_exists('accordions_settings_content_help_support')) {
207
  <p><?php echo __('Watch video tutorials.', 'accordions'); ?></p>
208
  <a class="button" href="https://www.youtube.com/playlist?list=PL0QP7T2SN94ZPeQ83jOnteDDrOeDLBuFD"><i class="fab fa-youtube"></i> <?php echo __('All tutorials', 'accordions'); ?></a>
209
 
210
- <!-- <ul>-->
211
- <!-- <li><i class="far fa-dot-circle"></i> <a href="https://www.youtube.com/watch?v=SOe0D-Og3nQ&list=PL0QP7T2SN94atYZswlnBMhDuIYoqlmlxy&index=1">How to install plugin & setup</a></li>-->
212
- <!---->
213
- <!---->
214
- <!-- </ul>-->
215
 
216
 
217
 
@@ -235,7 +235,7 @@ if(!function_exists('accordions_settings_content_help_support')) {
235
  ob_start();
236
  ?>
237
 
238
- <p class="">We wish your 2 minutes to write your feedback about the <b>PickPlugins Product Slider</b> plugin. give us <span style="color: #ffae19"><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i></span></p>
239
 
240
  <a target="_blank" href="https://wordpress.org/plugins/accordions/#reviews" class="button"><i class="fab fa-wordpress"></i> Write a review</a>
241
 
@@ -356,10 +356,29 @@ if(!function_exists('accordions_settings_content_help_support')) {
356
 
357
 
358
 
 
 
359
 
 
360
 
 
361
 
362
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
363
 
364
 
365
 
@@ -595,7 +614,6 @@ if(!function_exists('accordions_settings_content_3rd_party_import')) {
595
  </div>
596
 
597
  <div class="item">
598
- <img src="https://ps.w.org/accordion-shortcodes/assets/banner-772x250.png?rev=1570543">
599
  <div class="">Accordion Shortcodes</div>
600
  <div class="">By Phil Buchanan</div>
601
 
65
 
66
  $wp_query = new WP_Query( array (
67
  'post_type' => 'accordions',
68
+ 'post_status' => 'any',
69
  'posts_per_page' => -1,
70
  ));
71
 
207
  <p><?php echo __('Watch video tutorials.', 'accordions'); ?></p>
208
  <a class="button" href="https://www.youtube.com/playlist?list=PL0QP7T2SN94ZPeQ83jOnteDDrOeDLBuFD"><i class="fab fa-youtube"></i> <?php echo __('All tutorials', 'accordions'); ?></a>
209
 
210
+ <ul>
211
+ <li><i class="far fa-dot-circle"></i> <a href="https://www.youtube.com/watch?v=4ZGMA6hOoxs">Accordions - data migration</a></li>
212
+
213
+
214
+ </ul>
215
 
216
 
217
 
235
  ob_start();
236
  ?>
237
 
238
+ <p class="">We wish your 2 minutes to write your feedback about the <b>Accordions</b> plugin. give us <span style="color: #ffae19"><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i></span></p>
239
 
240
  <a target="_blank" href="https://wordpress.org/plugins/accordions/#reviews" class="button"><i class="fab fa-wordpress"></i> Write a review</a>
241
 
356
 
357
 
358
 
359
+ ob_start();
360
+ ?>
361
 
362
+ <p class="">You can install older version by uninstalling current version, your data still on database, don't worry if you see content missing on frontend.</p>
363
 
364
+ <a target="_blank" href="https://wordpress.org/plugins/accordions/advanced/#plugin-download-history-stats" class="button"><i class="fab fa-wordpress"></i> Download older version</a>
365
 
366
 
367
+ <?php
368
+
369
+ $html = ob_get_clean();
370
+
371
+ $args = array(
372
+ 'id' => 'old_version',
373
+ //'parent' => '',
374
+ 'title' => __('Older version','accordions'),
375
+ 'details' => '',
376
+ 'type' => 'custom_html',
377
+ 'html' => $html,
378
+
379
+ );
380
+
381
+ $settings_tabs_field->generate_field($args);
382
 
383
 
384
 
614
  </div>
615
 
616
  <div class="item">
 
617
  <div class="">Accordion Shortcodes</div>
618
  <div class="">By Phil Buchanan</div>
619
 
includes/class-shortcodes.php CHANGED
@@ -16,15 +16,14 @@ class class_accordions_shortcodes {
16
 
17
 
18
  add_shortcode( 'accordions', array( $this, 'accordions_display' ) );
19
- add_shortcode( 'accordions_pplugins', array( $this, 'accordions_display' ) ); // avoid conflict
20
  add_shortcode( 'accordions_pickplguins', array( $this, 'accordions_display' ) );
21
 
22
- add_shortcode( 'accordions_tabs', array( $this, 'accordions_tabs_display' ) );
23
- add_shortcode( 'accordions_tabs_pplugins', array( $this, 'accordions_tabs_display' ) ); // avoid conflict
24
 
25
 
26
 
27
- }
28
 
29
 
30
  public function accordions_display($atts, $content = null ) {
16
 
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
 
24
 
25
 
26
+ }
27
 
28
 
29
  public function accordions_display($atts, $content = null ) {
includes/functions-data-upgrade.php CHANGED
@@ -62,7 +62,7 @@ function accordions_cron_upgrade_accordions(){
62
 
63
  $args = array(
64
  'post_type'=>'accordions',
65
- 'post_status'=>'publish',
66
  'posts_per_page'=> 10,
67
  'meta_query'=> $meta_query,
68
 
62
 
63
  $args = array(
64
  'post_type'=>'accordions',
65
+ 'post_status'=>'any',
66
  'posts_per_page'=> 10,
67
  'meta_query'=> $meta_query,
68
 
includes/functions.php CHANGED
@@ -2,6 +2,40 @@
2
  if ( ! defined('ABSPATH')) exit; // if direct access
3
 
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  function accordions_old_content($post_id){
6
 
7
  $accordions_content_title = get_post_meta( $post_id, 'accordions_content_title', true );
@@ -179,39 +213,46 @@ function accordions_preview_content($content){
179
  function accordions_ajax_import_json(){
180
 
181
  $response = array();
182
- $json_file = isset($_POST['json_file']) ? $_POST['json_file'] : '';
183
- $string = file_get_contents($json_file);
184
- $json_a = json_decode($string,true);
185
 
186
 
187
- foreach ($json_a as $post_id=>$post_data){
 
188
 
189
- $meta_fields = $post_data['meta_fields'];
190
- $title = $post_data['title'];
191
 
192
- // Create post object
193
- $my_post = array(
194
- 'post_title' => $title,
195
- 'post_type' => 'accordions',
196
- 'post_status' => 'publish',
197
 
198
- );
199
 
200
- $post_inserted_id = wp_insert_post( $my_post );
201
 
202
- foreach ($meta_fields as $meta_key=>$meta_value){
203
- update_post_meta( $post_inserted_id, $meta_key, $meta_value );
204
- }
205
 
 
 
 
 
 
206
 
 
207
 
 
 
 
 
 
 
208
 
209
- }
210
 
 
 
 
211
 
212
- $response['json_a'] = $json_a;
213
- //$response['string'] = $string;
214
- //$response['json_file'] = $json_file;
215
 
216
 
217
 
2
  if ( ! defined('ABSPATH')) exit; // if direct access
3
 
4
 
5
+ //add_action('accordions_metabox_content_custom', 'accordions_metabox_content_custom_18032020', 10);
6
+
7
+ function accordions_metabox_content_custom_18032020($post_id){
8
+
9
+
10
+ ?>
11
+
12
+ <?php
13
+ }
14
+
15
+ //add_filter('accordions_metabox_navs', 'accordions_metabox_navs_18032020', 10);
16
+
17
+ function accordions_metabox_navs_18032020($tabs){
18
+
19
+
20
+
21
+ return $tabs;
22
+ }
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
  function accordions_old_content($post_id){
40
 
41
  $accordions_content_title = get_post_meta( $post_id, 'accordions_content_title', true );
213
  function accordions_ajax_import_json(){
214
 
215
  $response = array();
 
 
 
216
 
217
 
218
+ $nonce = isset($_POST['nonce']) ? sanitize_text_field($_POST['nonce']) : '';
219
+ if(wp_verify_nonce( $nonce, 'accordions_nonce' )) {
220
 
221
+ if(current_user_can( 'manage_options' )){
 
222
 
223
+ $json_file = isset($_POST['json_file']) ? $_POST['json_file'] : '';
224
+ $string = file_get_contents($json_file);
225
+ $json_a = json_decode($string,true);
 
 
226
 
 
227
 
228
+ foreach ($json_a as $post_id=>$post_data){
229
 
230
+ $meta_fields = $post_data['meta_fields'];
231
+ $title = $post_data['title'];
 
232
 
233
+ // Create post object
234
+ $my_post = array(
235
+ 'post_title' => $title,
236
+ 'post_type' => 'accordions',
237
+ 'post_status' => 'publish',
238
 
239
+ );
240
 
241
+ $post_inserted_id = wp_insert_post( $my_post );
242
+
243
+ foreach ($meta_fields as $meta_key=>$meta_value){
244
+ update_post_meta( $post_inserted_id, $meta_key, $meta_value );
245
+ }
246
+ }
247
 
 
248
 
249
+ //$response['json_a'] = $json_a;
250
+ $response['message'] = __('Impor done','');
251
+ }
252
 
253
+ }else{
254
+ $response['message'] = __('You do not have permission','');
255
+ }
256
 
257
 
258
 
languages/accordions.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Accordions\n"
5
- "POT-Creation-Date: 2020-03-12 23:53+0600\n"
6
  "PO-Revision-Date: 2018-10-08 21:27+0600\n"
7
  "Last-Translator: \n"
8
  "Language-Team: PickPlugins <support@pickplugins.com>\n"
@@ -17,88 +17,15 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: includes\n"
18
  "X-Poedit-SearchPath-1: templates\n"
19
 
20
- #: includes/class-accordions-support.php:88
21
- msgid "Customize content"
22
- msgstr ""
23
-
24
- #: includes/class-accordions-support.php:92
25
- #: includes/class-settings-hook.php:476
26
- msgid "Enable search"
27
- msgstr ""
28
-
29
- #: includes/class-accordions-support.php:97
30
- #: includes/class-settings-hook.php:420
31
- msgid "Click header to scroll top"
32
- msgstr ""
33
-
34
- #: includes/class-accordions-support.php:101
35
- #: includes/class-post-meta-accordions-hook.php:189
36
- #: includes/class-settings-hook.php:488
37
- msgid "Enable lazy load"
38
- msgstr ""
39
-
40
- #: includes/class-accordions-support.php:107
41
- #: includes/class-post-meta-accordions-hook.php:218
42
- msgid "Hide edit link"
43
- msgstr ""
44
-
45
- #: includes/class-accordions-support.php:112
46
- msgid "Create nested or multi-level accordion"
47
- msgstr ""
48
-
49
- #: includes/class-accordions-support.php:117
50
- msgid "Customize header"
51
- msgstr ""
52
-
53
- #: includes/class-accordions-support.php:122
54
- msgid "Customize icons"
55
- msgstr ""
56
-
57
- #: includes/class-accordions-support.php:127
58
- msgid "Open/active via url"
59
- msgstr ""
60
-
61
- #: includes/class-accordions-support.php:131
62
- msgid "Open/active on page load"
63
- msgstr ""
64
-
65
- #: includes/class-accordions-support.php:136
66
- msgid "How to create accordion"
67
- msgstr ""
68
-
69
- #: includes/class-accordions-support.php:140
70
- msgid "How to install accordions"
71
- msgstr ""
72
-
73
- #: includes/class-accordions-support.php:145
74
- msgid "WooCommerce product faq tab"
75
- msgstr ""
76
-
77
- #: includes/class-accordions-support.php:149
78
- msgid "Expand/collapse all button"
79
- msgstr ""
80
-
81
- #: includes/class-accordions-support.php:154
82
- msgid "Accordions click track"
83
- msgstr ""
84
-
85
  #: includes/class-admin-notices.php:38
86
  #, php-format
87
  msgid ""
88
  "Data migration required for <b>Accordions by PickPlugins</b> plugin, please "
89
  "<a class=\"button button-primary\" href=\"%s\">click to start</a> migration. "
90
- "Watch this <a target=\"_blank\" href=\"https://youtu.be/kn3skEwh5t4\">video</"
91
  "a> first"
92
  msgstr ""
93
 
94
- #: includes/class-functions.php:24
95
- msgid "Flat"
96
- msgstr ""
97
-
98
- #: includes/class-functions.php:30
99
- msgid "Semi Rounded"
100
- msgstr ""
101
-
102
  #: includes/class-post-meta-accordions-hook.php:21
103
  msgid "Shortcodes"
104
  msgstr ""
@@ -161,6 +88,11 @@ msgstr ""
161
  msgid "Some general options"
162
  msgstr ""
163
 
 
 
 
 
 
164
  #: includes/class-post-meta-accordions-hook.php:190
165
  msgid "Accordion content will be hidden until page load completed."
166
  msgstr ""
@@ -188,7 +120,7 @@ msgid "Yes"
188
  msgstr ""
189
 
190
  #: includes/class-post-meta-accordions-hook.php:205
191
- #: includes/class-settings-hook.php:494
192
  msgid "Lazy load image"
193
  msgstr ""
194
 
@@ -196,12 +128,16 @@ msgstr ""
196
  msgid "Set custom image source for lazy load icon."
197
  msgstr ""
198
 
 
 
 
 
199
  #: includes/class-post-meta-accordions-hook.php:219
200
  msgid "You can display/hide accordion edit link on front-end"
201
  msgstr ""
202
 
203
  #: includes/class-post-meta-accordions-hook.php:235
204
- #: includes/class-settings-hook.php:499
205
  msgid "Enable autoembed"
206
  msgstr ""
207
 
@@ -218,7 +154,7 @@ msgid "Enable shortcode for content."
218
  msgstr ""
219
 
220
  #: includes/class-post-meta-accordions-hook.php:267
221
- #: includes/class-settings-hook.php:509
222
  msgid "Enable wpautop"
223
  msgstr ""
224
 
@@ -243,7 +179,7 @@ msgid "Some general setting for accordion"
243
  msgstr ""
244
 
245
  #: includes/class-post-meta-accordions-hook.php:328
246
- #: includes/class-post-meta-accordions-hook.php:422
247
  msgid "Collapsible"
248
  msgstr ""
249
 
@@ -252,14 +188,14 @@ msgid "Make accordion collapsible."
252
  msgstr ""
253
 
254
  #: includes/class-post-meta-accordions-hook.php:334
255
- #: includes/class-post-meta-accordions-hook.php:428
256
- #: includes/class-post-meta-accordions-hook.php:1104
257
  msgid "True"
258
  msgstr ""
259
 
260
  #: includes/class-post-meta-accordions-hook.php:335
261
- #: includes/class-post-meta-accordions-hook.php:429
262
- #: includes/class-post-meta-accordions-hook.php:1105
263
  msgid "False"
264
  msgstr ""
265
 
@@ -288,7 +224,7 @@ msgid "Fill"
288
  msgstr ""
289
 
290
  #: includes/class-post-meta-accordions-hook.php:377
291
- #: includes/class-post-meta-accordions-hook.php:438
292
  msgid "Activate event"
293
  msgstr ""
294
 
@@ -297,12 +233,12 @@ msgid "Activate event type for header."
297
  msgstr ""
298
 
299
  #: includes/class-post-meta-accordions-hook.php:383
300
- #: includes/class-post-meta-accordions-hook.php:444
301
  msgid "Click"
302
  msgstr ""
303
 
304
  #: includes/class-post-meta-accordions-hook.php:384
305
- #: includes/class-post-meta-accordions-hook.php:445
306
  msgid "Mouseover"
307
  msgstr ""
308
 
@@ -310,430 +246,435 @@ msgstr ""
310
  msgid "Focus"
311
  msgstr ""
312
 
313
- #: includes/class-post-meta-accordions-hook.php:414
314
  msgid "Tabs options"
315
  msgstr ""
316
 
317
- #: includes/class-post-meta-accordions-hook.php:415
318
  msgid "Settings for tabs"
319
  msgstr ""
320
 
321
- #: includes/class-post-meta-accordions-hook.php:423
322
  msgid "Make tabs collapsible."
323
  msgstr ""
324
 
325
- #: includes/class-post-meta-accordions-hook.php:439
326
  msgid "Event for activate tabs"
327
  msgstr ""
328
 
329
- #: includes/class-post-meta-accordions-hook.php:530
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
330
  msgid "Accordion icons"
331
  msgstr ""
332
 
333
- #: includes/class-post-meta-accordions-hook.php:531
334
  msgid "Customize accordion icons."
335
  msgstr ""
336
 
337
- #: includes/class-post-meta-accordions-hook.php:538
338
  msgid "Active icon"
339
  msgstr ""
340
 
341
- #: includes/class-post-meta-accordions-hook.php:539
342
  msgid ""
343
  "Icon for idle, you can use <a target=\"_blank\" href=\"https://fontawesome."
344
  "com/icons\">Font Awesome</a> icon html <code>&lt;i class=\"fas fa-chevron-"
345
  "right\">&lt;/i></code>"
346
  msgstr ""
347
 
348
- #: includes/class-post-meta-accordions-hook.php:551
349
  msgid "Inactive icon"
350
  msgstr ""
351
 
352
- #: includes/class-post-meta-accordions-hook.php:552
353
  msgid ""
354
  "Icon for activate, you can use <a target=\"_blank\" href=\"https://"
355
  "fontawesome.com/icons\">Font Awesome</a> icon html <code>&lt;i class=\"fas "
356
  "fa-chevron-down\">&lt;/i></code>"
357
  msgstr ""
358
 
359
- #: includes/class-post-meta-accordions-hook.php:565
360
- #: includes/class-post-meta-accordions-hook.php:721
361
- #: includes/class-post-meta-accordions-hook.php:825
362
  msgid "Color"
363
  msgstr ""
364
 
365
- #: includes/class-post-meta-accordions-hook.php:566
366
  msgid "Color for icons"
367
  msgstr ""
368
 
369
- #: includes/class-post-meta-accordions-hook.php:579
370
  msgid "Hover color"
371
  msgstr ""
372
 
373
- #: includes/class-post-meta-accordions-hook.php:580
374
  msgid "Color for icons on mousehover"
375
  msgstr ""
376
 
377
- #: includes/class-post-meta-accordions-hook.php:593
378
- #: includes/class-post-meta-accordions-hook.php:693
379
- #: includes/class-post-meta-accordions-hook.php:870
380
- #: includes/class-post-meta-accordions-hook.php:949
381
  msgid "Background color"
382
  msgstr ""
383
 
384
- #: includes/class-post-meta-accordions-hook.php:594
385
  msgid "Background color for icons"
386
  msgstr ""
387
 
388
- #: includes/class-post-meta-accordions-hook.php:606
389
- #: includes/class-post-meta-accordions-hook.php:748
390
- #: includes/class-post-meta-accordions-hook.php:841
391
  msgid "Font size"
392
  msgstr ""
393
 
394
- #: includes/class-post-meta-accordions-hook.php:607
395
  msgid "You can set custom font size."
396
  msgstr ""
397
 
398
- #: includes/class-post-meta-accordions-hook.php:620
399
- #: includes/class-post-meta-accordions-hook.php:774
400
- #: includes/class-post-meta-accordions-hook.php:886
401
- #: includes/class-post-meta-accordions-hook.php:935
402
  msgid "Padding"
403
  msgstr ""
404
 
405
- #: includes/class-post-meta-accordions-hook.php:621
406
  msgid "Choose icon area padding"
407
  msgstr ""
408
 
409
- #: includes/class-post-meta-accordions-hook.php:633
410
- #: includes/class-post-meta-accordions-hook.php:787
411
- #: includes/class-post-meta-accordions-hook.php:902
412
  msgid "Margin"
413
  msgstr ""
414
 
415
- #: includes/class-post-meta-accordions-hook.php:634
416
- #: includes/class-post-meta-accordions-hook.php:788
417
  msgid "Choose header area margin"
418
  msgstr ""
419
 
420
- #: includes/class-post-meta-accordions-hook.php:647
421
- msgid "position"
422
  msgstr ""
423
 
424
- #: includes/class-post-meta-accordions-hook.php:648
425
  msgid "Set icon position"
426
  msgstr ""
427
 
428
- #: includes/class-post-meta-accordions-hook.php:653
429
  #: includes/class-settings-hook.php:33
430
  msgid "None"
431
  msgstr ""
432
 
433
- #: includes/class-post-meta-accordions-hook.php:654
434
- #: includes/class-post-meta-accordions-hook.php:969
435
- msgid "Left"
436
- msgstr ""
437
-
438
- #: includes/class-post-meta-accordions-hook.php:655
439
- #: includes/class-post-meta-accordions-hook.php:970
440
- msgid "Right"
441
- msgstr ""
442
-
443
- #: includes/class-post-meta-accordions-hook.php:667
444
  msgid "Accordion header style"
445
  msgstr ""
446
 
447
- #: includes/class-post-meta-accordions-hook.php:668
448
  msgid "Customize accordion header."
449
  msgstr ""
450
 
451
- #: includes/class-post-meta-accordions-hook.php:675
452
- #: includes/class-post-meta-accordions-hook.php:810
453
  msgid "Add class"
454
  msgstr ""
455
 
456
- #: includes/class-post-meta-accordions-hook.php:676
457
  msgid ""
458
  "Header style class, ex: <code>border-flat, border-semi-round, border-round, "
459
  "border-1px border-2px border-3px, shadow-bottom, shadow-top shadow-bottom-"
460
  "right, shadow-bottom-left</code>"
461
  msgstr ""
462
 
463
- #: includes/class-post-meta-accordions-hook.php:694
464
  msgid "Background color of header on idle"
465
  msgstr ""
466
 
467
- #: includes/class-post-meta-accordions-hook.php:707
468
  msgid "Active background color"
469
  msgstr ""
470
 
471
- #: includes/class-post-meta-accordions-hook.php:708
472
  msgid "Background color of header on active stats"
473
  msgstr ""
474
 
475
- #: includes/class-post-meta-accordions-hook.php:722
476
- #: includes/class-post-meta-accordions-hook.php:736
477
  msgid "Font color for accordion headers"
478
  msgstr ""
479
 
480
- #: includes/class-post-meta-accordions-hook.php:735
481
  msgid "Color on hover"
482
  msgstr ""
483
 
484
- #: includes/class-post-meta-accordions-hook.php:749
485
  msgid "Choose font size for header text"
486
  msgstr ""
487
 
488
- #: includes/class-post-meta-accordions-hook.php:762
489
- #: includes/class-post-meta-accordions-hook.php:854
490
  msgid "Font family"
491
  msgstr ""
492
 
493
- #: includes/class-post-meta-accordions-hook.php:763
494
  msgid "Choose font family for header text"
495
  msgstr ""
496
 
497
- #: includes/class-post-meta-accordions-hook.php:775
498
  msgid "Choose header area padding"
499
  msgstr ""
500
 
501
- #: includes/class-post-meta-accordions-hook.php:801
502
  msgid "Accordions content style"
503
  msgstr ""
504
 
505
- #: includes/class-post-meta-accordions-hook.php:802
506
  msgid "Customize accordion content."
507
  msgstr ""
508
 
509
- #: includes/class-post-meta-accordions-hook.php:811
510
  msgid ""
511
  "Body style class, ex: <code>border-flat, border-semi-round, border-round, "
512
  "border-1px border-2px border-3px, shadow-bottom, shadow-top shadow-bottom-"
513
  "right, shadow-bottom-left</code>"
514
  msgstr ""
515
 
516
- #: includes/class-post-meta-accordions-hook.php:826
517
  msgid "You can choose custom color for accordion content"
518
  msgstr ""
519
 
520
- #: includes/class-post-meta-accordions-hook.php:842
521
  msgid "You can set custom font size for accordion content"
522
  msgstr ""
523
 
524
- #: includes/class-post-meta-accordions-hook.php:855
525
  msgid "Choose font family for accordion content text"
526
  msgstr ""
527
 
528
- #: includes/class-post-meta-accordions-hook.php:871
529
  msgid "You can choose custom background color for accordion content area"
530
  msgstr ""
531
 
532
- #: includes/class-post-meta-accordions-hook.php:887
533
  msgid "You can set custom padding for accordion content"
534
  msgstr ""
535
 
536
- #: includes/class-post-meta-accordions-hook.php:903
537
  msgid "You can set custom margin for accordion content"
538
  msgstr ""
539
 
540
- #: includes/class-post-meta-accordions-hook.php:916
541
  msgid "Container style"
542
  msgstr ""
543
 
544
- #: includes/class-post-meta-accordions-hook.php:917
545
  msgid "Customize container style optons."
546
  msgstr ""
547
 
548
- #: includes/class-post-meta-accordions-hook.php:936
549
  msgid "Set container padding"
550
  msgstr ""
551
 
552
- #: includes/class-post-meta-accordions-hook.php:950
553
  msgid "Set container background color"
554
  msgstr ""
555
 
556
- #: includes/class-post-meta-accordions-hook.php:963
557
  msgid "Text align"
558
  msgstr ""
559
 
560
- #: includes/class-post-meta-accordions-hook.php:964
561
  msgid "Set container text align"
562
  msgstr ""
563
 
564
- #: includes/class-post-meta-accordions-hook.php:971
565
  msgid "Center"
566
  msgstr ""
567
 
568
- #: includes/class-post-meta-accordions-hook.php:972
569
  msgid "Justify"
570
  msgstr ""
571
 
572
- #: includes/class-post-meta-accordions-hook.php:983
573
  msgid "Background image"
574
  msgstr ""
575
 
576
- #: includes/class-post-meta-accordions-hook.php:984
577
  msgid "Set container background image"
578
  msgstr ""
579
 
580
- #: includes/class-post-meta-accordions-hook.php:998
581
  msgid "Container width"
582
  msgstr ""
583
 
584
- #: includes/class-post-meta-accordions-hook.php:999
585
  msgid "Set accordion width."
586
  msgstr ""
587
 
588
- #: includes/class-post-meta-accordions-hook.php:1005
589
  msgid "In desktop"
590
  msgstr ""
591
 
592
- #: includes/class-post-meta-accordions-hook.php:1006
593
  msgid "min-width: 1200px, ex: 300px"
594
  msgstr ""
595
 
596
- #: includes/class-post-meta-accordions-hook.php:1015
597
  msgid "In tablet & small desktop"
598
  msgstr ""
599
 
600
- #: includes/class-post-meta-accordions-hook.php:1016
601
  msgid "min-width: 992px, ex: 90%"
602
  msgstr ""
603
 
604
- #: includes/class-post-meta-accordions-hook.php:1025
605
  msgid "In mobile"
606
  msgstr ""
607
 
608
- #: includes/class-post-meta-accordions-hook.php:1026
609
  msgid "min-width: 576px, ex: 90%"
610
  msgstr ""
611
 
612
- #: includes/class-post-meta-accordions-hook.php:1064
613
  msgid "Accordions content"
614
  msgstr ""
615
 
616
- #: includes/class-post-meta-accordions-hook.php:1065
617
  msgid "Add you accordion content here."
618
  msgstr ""
619
 
620
- #: includes/class-post-meta-accordions-hook.php:1078
621
  msgid "Header"
622
  msgstr ""
623
 
624
- #: includes/class-post-meta-accordions-hook.php:1079
625
  msgid "Accordion header."
626
  msgstr ""
627
 
628
- #: includes/class-post-meta-accordions-hook.php:1088
629
  msgid "Body"
630
  msgstr ""
631
 
632
- #: includes/class-post-meta-accordions-hook.php:1089
633
  msgid "Accordion body content."
634
  msgstr ""
635
 
636
- #: includes/class-post-meta-accordions-hook.php:1098
637
  msgid "Hide"
638
  msgstr ""
639
 
640
- #: includes/class-post-meta-accordions-hook.php:1099
641
  msgid "Hide this."
642
  msgstr ""
643
 
644
- #: includes/class-post-meta-accordions-hook.php:1116
645
  msgid "Accordion content"
646
  msgstr ""
647
 
648
- #: includes/class-post-meta-accordions-hook.php:1117
649
  msgid "Set accordion content & title here."
650
  msgstr ""
651
 
652
- #: includes/class-post-meta-accordions-hook.php:1158
653
  msgid "Accordions Scripts"
654
  msgstr ""
655
 
656
- #: includes/class-post-meta-accordions-hook.php:1159
657
  msgid "Add your own CSS & Scripts."
658
  msgstr ""
659
 
660
- #: includes/class-post-meta-accordions-hook.php:1165
661
  msgid "Custom Js"
662
  msgstr ""
663
 
664
- #: includes/class-post-meta-accordions-hook.php:1166
665
  msgid ""
666
  "You can add custom scripts here, do not use <code>&lt;script&gt; &lt;/"
667
  "script&gt;</code> tag"
668
  msgstr ""
669
 
670
- #: includes/class-post-meta-accordions-hook.php:1177
671
  msgid "Custom CSS"
672
  msgstr ""
673
 
674
- #: includes/class-post-meta-accordions-hook.php:1178
675
  msgid ""
676
  "You can add custom css here, do not use <code> &lt;style&gt; &lt;/style&gt;"
677
  "</code> tag"
678
  msgstr ""
679
 
680
- #: includes/class-post-meta-accordions-hook.php:1205
681
  #: includes/class-settings-hook.php:192
682
  msgid "Get support"
683
  msgstr ""
684
 
685
- #: includes/class-post-meta-accordions-hook.php:1206
686
  #: includes/class-settings-hook.php:193
687
  msgid "Use following to get help and support from our expert team."
688
  msgstr ""
689
 
690
- #: includes/class-post-meta-accordions-hook.php:1214
691
  #: includes/class-settings-hook.php:201
692
  msgid ""
693
  "Ask question for free on our forum and get quick reply from our expert team "
694
  "members."
695
  msgstr ""
696
 
697
- #: includes/class-post-meta-accordions-hook.php:1215
698
  #: includes/class-settings-hook.php:202
699
  msgid "Create support ticket"
700
  msgstr ""
701
 
702
- #: includes/class-post-meta-accordions-hook.php:1217
703
  #: includes/class-settings-hook.php:204
704
  msgid "Read our documentation before asking your question."
705
  msgstr ""
706
 
707
- #: includes/class-post-meta-accordions-hook.php:1218
708
  #: includes/class-settings-hook.php:205
709
  msgid "Documentation"
710
  msgstr ""
711
 
712
- #: includes/class-post-meta-accordions-hook.php:1220
713
  #: includes/class-settings-hook.php:207
714
  msgid "Watch video tutorials."
715
  msgstr ""
716
 
717
- #: includes/class-post-meta-accordions-hook.php:1221
718
  #: includes/class-settings-hook.php:208
719
  msgid "All tutorials"
720
  msgstr ""
721
 
722
- #: includes/class-post-meta-accordions-hook.php:1238
723
  #: includes/class-settings-hook.php:225
724
  msgid "Ask question"
725
  msgstr ""
726
 
727
- #: includes/class-post-meta-accordions-hook.php:1263
728
  #: includes/class-settings-hook.php:250
729
  msgid "Submit reviews"
730
  msgstr ""
731
 
732
- #: includes/class-post-meta-accordions-hook.php:1360
733
- #: includes/class-settings-hook.php:347
734
- msgid "Reset migration"
735
- msgstr ""
736
-
737
  #: includes/class-post-meta-accordions.php:19
738
  msgid "Accordions data"
739
  msgstr ""
@@ -895,275 +836,307 @@ msgstr ""
895
  msgid "Import"
896
  msgstr ""
897
 
898
- #: includes/class-settings-hook.php:390
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
899
  msgid "Get Premium"
900
  msgstr ""
901
 
902
- #: includes/class-settings-hook.php:391
903
  msgid ""
904
  "Thanks for using our plugin, if you looking for some advance feature please "
905
  "buy premium version."
906
  msgstr ""
907
 
908
- #: includes/class-settings-hook.php:399
909
  msgid ""
910
  "If you love our plugin and want more feature please consider to buy pro "
911
  "version."
912
  msgstr ""
913
 
914
- #: includes/class-settings-hook.php:400 includes/class-settings-hook.php:747
915
  msgid "Buy premium"
916
  msgstr ""
917
 
918
- #: includes/class-settings-hook.php:401
919
  msgid "See all demo"
920
  msgstr ""
921
 
922
- #: includes/class-settings-hook.php:403
923
  msgid "See the differences"
924
  msgstr ""
925
 
926
- #: includes/class-settings-hook.php:408 includes/class-settings-hook.php:740
927
  msgid "Features"
928
  msgstr ""
929
 
930
- #: includes/class-settings-hook.php:409 includes/class-settings-hook.php:741
931
  msgid "Free"
932
  msgstr ""
933
 
934
- #: includes/class-settings-hook.php:410 includes/class-settings-hook.php:742
935
  msgid "Premium"
936
  msgstr ""
937
 
938
- #: includes/class-settings-hook.php:415
939
  msgid "Nested/multi level accordion"
940
  msgstr ""
941
 
942
- #: includes/class-settings-hook.php:426
 
 
 
 
943
  msgid "Header text toggle"
944
  msgstr ""
945
 
946
- #: includes/class-settings-hook.php:431
947
  msgid "Display expand/collapse all button"
948
  msgstr ""
949
 
950
- #: includes/class-settings-hook.php:436
951
  msgid "Expand/collapse all text"
952
  msgstr ""
953
 
954
- #: includes/class-settings-hook.php:441
955
  msgid "Expand/collapse all button background color"
956
  msgstr ""
957
 
958
- #: includes/class-settings-hook.php:446
959
  msgid "Header click track & stats"
960
  msgstr ""
961
 
962
- #: includes/class-settings-hook.php:452
963
  msgid "Header background image"
964
  msgstr ""
965
 
966
- #: includes/class-settings-hook.php:458
967
  msgid "Custom background color"
968
  msgstr ""
969
 
970
- #: includes/class-settings-hook.php:464
971
  msgid "Active accordion on page load"
972
  msgstr ""
973
 
974
- #: includes/class-settings-hook.php:470
975
  msgid "Icon position to right"
976
  msgstr ""
977
 
978
- #: includes/class-settings-hook.php:481
 
 
 
 
979
  msgid "Search placeholder text"
980
  msgstr ""
981
 
982
- #: includes/class-settings-hook.php:504
983
  msgid "3rd party shortcode on content"
984
  msgstr ""
985
 
986
- #: includes/class-settings-hook.php:514
987
  msgid "Schema for FAQ page"
988
  msgstr ""
989
 
990
- #: includes/class-settings-hook.php:520
991
  msgid "Accordion feature collapsible"
992
  msgstr ""
993
 
994
- #: includes/class-settings-hook.php:525
995
  msgid "Accordion feature keep expanded others"
996
  msgstr ""
997
 
998
- #: includes/class-settings-hook.php:530
999
  msgid "Accordion feature content height style"
1000
  msgstr ""
1001
 
1002
- #: includes/class-settings-hook.php:535
1003
  msgid "Accordion feature activate event"
1004
  msgstr ""
1005
 
1006
- #: includes/class-settings-hook.php:540
1007
  msgid "Accordion custom active icon"
1008
  msgstr ""
1009
 
1010
- #: includes/class-settings-hook.php:545
1011
  msgid "Accordion custom inactive icon"
1012
  msgstr ""
1013
 
1014
- #: includes/class-settings-hook.php:551
1015
  msgid "Accordion icons text color"
1016
  msgstr ""
1017
 
1018
- #: includes/class-settings-hook.php:556
1019
  msgid "Accordion icons hover color"
1020
  msgstr ""
1021
 
1022
- #: includes/class-settings-hook.php:561
1023
  msgid "Accordion icons background color"
1024
  msgstr ""
1025
 
1026
- #: includes/class-settings-hook.php:566
1027
  msgid "Accordion icons font size"
1028
  msgstr ""
1029
 
1030
- #: includes/class-settings-hook.php:571
1031
  msgid "Accordion icons padding"
1032
  msgstr ""
1033
 
1034
- #: includes/class-settings-hook.php:576
1035
  msgid "Accordion icons margin"
1036
  msgstr ""
1037
 
1038
- #: includes/class-settings-hook.php:582
1039
  msgid "Accordion header custom class"
1040
  msgstr ""
1041
 
1042
- #: includes/class-settings-hook.php:588
1043
  msgid "Accordion header background color"
1044
  msgstr ""
1045
 
1046
- #: includes/class-settings-hook.php:594
1047
  msgid "Accordion header Active background color"
1048
  msgstr ""
1049
 
1050
- #: includes/class-settings-hook.php:599
1051
  msgid "Accordion header text color"
1052
  msgstr ""
1053
 
1054
- #: includes/class-settings-hook.php:605
1055
  msgid "Accordion header hover text color"
1056
  msgstr ""
1057
 
1058
- #: includes/class-settings-hook.php:611
1059
  msgid "Accordion header font size"
1060
  msgstr ""
1061
 
1062
- #: includes/class-settings-hook.php:616
1063
  msgid "Accordion header padding"
1064
  msgstr ""
1065
 
1066
- #: includes/class-settings-hook.php:621
1067
  msgid "Accordion header margin"
1068
  msgstr ""
1069
 
1070
- #: includes/class-settings-hook.php:626
1071
  msgid "Accordion header font family"
1072
  msgstr ""
1073
 
1074
- #: includes/class-settings-hook.php:634
1075
  msgid "Accordion content custom class"
1076
  msgstr ""
1077
 
1078
- #: includes/class-settings-hook.php:640
1079
  msgid "Accordion content background color"
1080
  msgstr ""
1081
 
1082
- #: includes/class-settings-hook.php:646
1083
  msgid "Accordion content text color"
1084
  msgstr ""
1085
 
1086
- #: includes/class-settings-hook.php:653
1087
  msgid "Accordion content font size"
1088
  msgstr ""
1089
 
1090
- #: includes/class-settings-hook.php:658
1091
  msgid "Accordion content padding"
1092
  msgstr ""
1093
 
1094
- #: includes/class-settings-hook.php:663
1095
  msgid "Accordion content margin"
1096
  msgstr ""
1097
 
1098
- #: includes/class-settings-hook.php:668
1099
  msgid "Accordion content font family"
1100
  msgstr ""
1101
 
1102
- #: includes/class-settings-hook.php:676
1103
  msgid "Accordion container padding"
1104
  msgstr ""
1105
 
1106
- #: includes/class-settings-hook.php:681
1107
  msgid "Accordion container background color"
1108
  msgstr ""
1109
 
1110
- #: includes/class-settings-hook.php:686
1111
  msgid "Accordion container background image"
1112
  msgstr ""
1113
 
1114
- #: includes/class-settings-hook.php:691
1115
  msgid "Accordion container text align"
1116
  msgstr ""
1117
 
1118
- #: includes/class-settings-hook.php:696
1119
  msgid "Sort accordion content"
1120
  msgstr ""
1121
 
1122
- #: includes/class-settings-hook.php:702
1123
  msgid "Hide accordion content"
1124
  msgstr ""
1125
 
1126
- #: includes/class-settings-hook.php:708
1127
  msgid "WP editor for accordion content"
1128
  msgstr ""
1129
 
1130
- #: includes/class-settings-hook.php:714
1131
  msgid "Font-awesome version selection"
1132
  msgstr ""
1133
 
1134
- #: includes/class-settings-hook.php:720
1135
  msgid "Accordions preview on frontend"
1136
  msgstr ""
1137
 
1138
- #: includes/class-settings-hook.php:726
1139
  msgid "Export accordion"
1140
  msgstr ""
1141
 
1142
- #: includes/class-settings-hook.php:732
1143
  msgid "Import accordion"
1144
  msgstr ""
1145
 
1146
- #: includes/class-settings-hook.php:745
1147
  msgid "Buy now"
1148
  msgstr ""
1149
 
1150
- #: includes/class-settings-hook.php:760
1151
  msgid "Get pro version"
1152
  msgstr ""
1153
 
1154
- #: includes/class-settings-tabs.php:318
1155
  msgid "Placeholder.jpg"
1156
  msgstr ""
1157
 
1158
- #: includes/class-settings-tabs.php:374 includes/class-settings-tabs.php:455
1159
  msgid "Upload"
1160
  msgstr ""
1161
 
1162
- #: includes/class-settings-tabs.php:375 includes/class-settings-tabs.php:456
1163
  msgid "Clear"
1164
  msgstr ""
1165
 
1166
- #: includes/class-settings-tabs.php:566 includes/class-settings-tabs.php:837
1167
  msgid "Add"
1168
  msgstr ""
1169
 
@@ -1191,30 +1164,35 @@ msgstr ""
1191
  msgid "FAQ"
1192
  msgstr ""
1193
 
1194
- #: includes/functions.php:107
1195
  msgid "Shortcode"
1196
  msgstr ""
1197
 
1198
- #: includes/menu/settings.php:20
 
 
 
 
 
1199
  #, php-format
1200
  msgid "%s Help & support"
1201
  msgstr ""
1202
 
1203
- #: includes/menu/settings.php:27
1204
  #, php-format
1205
  msgid "%s Buy Pro"
1206
  msgstr ""
1207
 
1208
- #: includes/menu/settings.php:58
1209
  #, php-format
1210
  msgid "%s Settings"
1211
  msgstr ""
1212
 
1213
- #: includes/menu/settings.php:68
1214
  msgid "Changes Saved."
1215
  msgstr ""
1216
 
1217
- #: includes/menu/settings.php:133
1218
  msgid "Save Changes"
1219
  msgstr ""
1220
 
@@ -1223,14 +1201,14 @@ msgstr ""
1223
  msgid "%s Settings - Update"
1224
  msgstr ""
1225
 
1226
- #: templates/accordion/accordion-hook.php:482 templates/tabs/tabs-hook.php:389
1227
  msgid "Edit this accordion"
1228
  msgstr ""
1229
 
1230
- #: templates/accordion/accordion-hook.php:482 templates/tabs/tabs-hook.php:389
1231
  msgid "Only admin can see this."
1232
  msgstr ""
1233
 
1234
- #: templates/accordion/accordion-hook.php:597 templates/tabs/tabs-hook.php:477
1235
  msgid "Content missing"
1236
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Accordions\n"
5
+ "POT-Creation-Date: 2020-03-18 14:51+0600\n"
6
  "PO-Revision-Date: 2018-10-08 21:27+0600\n"
7
  "Last-Translator: \n"
8
  "Language-Team: PickPlugins <support@pickplugins.com>\n"
17
  "X-Poedit-SearchPath-0: includes\n"
18
  "X-Poedit-SearchPath-1: templates\n"
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #: includes/class-admin-notices.php:38
21
  #, php-format
22
  msgid ""
23
  "Data migration required for <b>Accordions by PickPlugins</b> plugin, please "
24
  "<a class=\"button button-primary\" href=\"%s\">click to start</a> migration. "
25
+ "Watch this <a target=\"_blank\" href=\"https://youtu.be/DDKMWphWLGI\">video</"
26
  "a> first"
27
  msgstr ""
28
 
 
 
 
 
 
 
 
 
29
  #: includes/class-post-meta-accordions-hook.php:21
30
  msgid "Shortcodes"
31
  msgstr ""
88
  msgid "Some general options"
89
  msgstr ""
90
 
91
+ #: includes/class-post-meta-accordions-hook.php:189
92
+ #: includes/class-settings-hook.php:849
93
+ msgid "Enable lazy load"
94
+ msgstr ""
95
+
96
  #: includes/class-post-meta-accordions-hook.php:190
97
  msgid "Accordion content will be hidden until page load completed."
98
  msgstr ""
120
  msgstr ""
121
 
122
  #: includes/class-post-meta-accordions-hook.php:205
123
+ #: includes/class-settings-hook.php:855
124
  msgid "Lazy load image"
125
  msgstr ""
126
 
128
  msgid "Set custom image source for lazy load icon."
129
  msgstr ""
130
 
131
+ #: includes/class-post-meta-accordions-hook.php:218
132
+ msgid "Hide edit link"
133
+ msgstr ""
134
+
135
  #: includes/class-post-meta-accordions-hook.php:219
136
  msgid "You can display/hide accordion edit link on front-end"
137
  msgstr ""
138
 
139
  #: includes/class-post-meta-accordions-hook.php:235
140
+ #: includes/class-settings-hook.php:860
141
  msgid "Enable autoembed"
142
  msgstr ""
143
 
154
  msgstr ""
155
 
156
  #: includes/class-post-meta-accordions-hook.php:267
157
+ #: includes/class-settings-hook.php:870
158
  msgid "Enable wpautop"
159
  msgstr ""
160
 
179
  msgstr ""
180
 
181
  #: includes/class-post-meta-accordions-hook.php:328
182
+ #: includes/class-post-meta-accordions-hook.php:423
183
  msgid "Collapsible"
184
  msgstr ""
185
 
188
  msgstr ""
189
 
190
  #: includes/class-post-meta-accordions-hook.php:334
191
+ #: includes/class-post-meta-accordions-hook.php:429
192
+ #: includes/class-post-meta-accordions-hook.php:1123
193
  msgid "True"
194
  msgstr ""
195
 
196
  #: includes/class-post-meta-accordions-hook.php:335
197
+ #: includes/class-post-meta-accordions-hook.php:430
198
+ #: includes/class-post-meta-accordions-hook.php:1124
199
  msgid "False"
200
  msgstr ""
201
 
224
  msgstr ""
225
 
226
  #: includes/class-post-meta-accordions-hook.php:377
227
+ #: includes/class-post-meta-accordions-hook.php:439
228
  msgid "Activate event"
229
  msgstr ""
230
 
233
  msgstr ""
234
 
235
  #: includes/class-post-meta-accordions-hook.php:383
236
+ #: includes/class-post-meta-accordions-hook.php:445
237
  msgid "Click"
238
  msgstr ""
239
 
240
  #: includes/class-post-meta-accordions-hook.php:384
241
+ #: includes/class-post-meta-accordions-hook.php:446
242
  msgid "Mouseover"
243
  msgstr ""
244
 
246
  msgid "Focus"
247
  msgstr ""
248
 
249
+ #: includes/class-post-meta-accordions-hook.php:415
250
  msgid "Tabs options"
251
  msgstr ""
252
 
253
+ #: includes/class-post-meta-accordions-hook.php:416
254
  msgid "Settings for tabs"
255
  msgstr ""
256
 
257
+ #: includes/class-post-meta-accordions-hook.php:424
258
  msgid "Make tabs collapsible."
259
  msgstr ""
260
 
261
+ #: includes/class-post-meta-accordions-hook.php:440
262
  msgid "Event for activate tabs"
263
  msgstr ""
264
 
265
+ #: includes/class-post-meta-accordions-hook.php:455
266
+ msgid "Navs alignment"
267
+ msgstr ""
268
+
269
+ #: includes/class-post-meta-accordions-hook.php:456
270
+ msgid "Set navs alignment"
271
+ msgstr ""
272
+
273
+ #: includes/class-post-meta-accordions-hook.php:461
274
+ #: includes/class-post-meta-accordions-hook.php:673
275
+ #: includes/class-post-meta-accordions-hook.php:988
276
+ msgid "Left"
277
+ msgstr ""
278
+
279
+ #: includes/class-post-meta-accordions-hook.php:462
280
+ #: includes/class-post-meta-accordions-hook.php:674
281
+ #: includes/class-post-meta-accordions-hook.php:989
282
+ msgid "Right"
283
+ msgstr ""
284
+
285
+ #: includes/class-post-meta-accordions-hook.php:549
286
  msgid "Accordion icons"
287
  msgstr ""
288
 
289
+ #: includes/class-post-meta-accordions-hook.php:550
290
  msgid "Customize accordion icons."
291
  msgstr ""
292
 
293
+ #: includes/class-post-meta-accordions-hook.php:557
294
  msgid "Active icon"
295
  msgstr ""
296
 
297
+ #: includes/class-post-meta-accordions-hook.php:558
298
  msgid ""
299
  "Icon for idle, you can use <a target=\"_blank\" href=\"https://fontawesome."
300
  "com/icons\">Font Awesome</a> icon html <code>&lt;i class=\"fas fa-chevron-"
301
  "right\">&lt;/i></code>"
302
  msgstr ""
303
 
304
+ #: includes/class-post-meta-accordions-hook.php:570
305
  msgid "Inactive icon"
306
  msgstr ""
307
 
308
+ #: includes/class-post-meta-accordions-hook.php:571
309
  msgid ""
310
  "Icon for activate, you can use <a target=\"_blank\" href=\"https://"
311
  "fontawesome.com/icons\">Font Awesome</a> icon html <code>&lt;i class=\"fas "
312
  "fa-chevron-down\">&lt;/i></code>"
313
  msgstr ""
314
 
315
+ #: includes/class-post-meta-accordions-hook.php:584
316
+ #: includes/class-post-meta-accordions-hook.php:740
317
+ #: includes/class-post-meta-accordions-hook.php:844
318
  msgid "Color"
319
  msgstr ""
320
 
321
+ #: includes/class-post-meta-accordions-hook.php:585
322
  msgid "Color for icons"
323
  msgstr ""
324
 
325
+ #: includes/class-post-meta-accordions-hook.php:598
326
  msgid "Hover color"
327
  msgstr ""
328
 
329
+ #: includes/class-post-meta-accordions-hook.php:599
330
  msgid "Color for icons on mousehover"
331
  msgstr ""
332
 
333
+ #: includes/class-post-meta-accordions-hook.php:612
334
+ #: includes/class-post-meta-accordions-hook.php:712
335
+ #: includes/class-post-meta-accordions-hook.php:889
336
+ #: includes/class-post-meta-accordions-hook.php:968
337
  msgid "Background color"
338
  msgstr ""
339
 
340
+ #: includes/class-post-meta-accordions-hook.php:613
341
  msgid "Background color for icons"
342
  msgstr ""
343
 
344
+ #: includes/class-post-meta-accordions-hook.php:625
345
+ #: includes/class-post-meta-accordions-hook.php:767
346
+ #: includes/class-post-meta-accordions-hook.php:860
347
  msgid "Font size"
348
  msgstr ""
349
 
350
+ #: includes/class-post-meta-accordions-hook.php:626
351
  msgid "You can set custom font size."
352
  msgstr ""
353
 
354
+ #: includes/class-post-meta-accordions-hook.php:639
355
+ #: includes/class-post-meta-accordions-hook.php:793
356
+ #: includes/class-post-meta-accordions-hook.php:905
357
+ #: includes/class-post-meta-accordions-hook.php:954
358
  msgid "Padding"
359
  msgstr ""
360
 
361
+ #: includes/class-post-meta-accordions-hook.php:640
362
  msgid "Choose icon area padding"
363
  msgstr ""
364
 
365
+ #: includes/class-post-meta-accordions-hook.php:652
366
+ #: includes/class-post-meta-accordions-hook.php:806
367
+ #: includes/class-post-meta-accordions-hook.php:921
368
  msgid "Margin"
369
  msgstr ""
370
 
371
+ #: includes/class-post-meta-accordions-hook.php:653
372
+ #: includes/class-post-meta-accordions-hook.php:807
373
  msgid "Choose header area margin"
374
  msgstr ""
375
 
376
+ #: includes/class-post-meta-accordions-hook.php:666
377
+ msgid "Position"
378
  msgstr ""
379
 
380
+ #: includes/class-post-meta-accordions-hook.php:667
381
  msgid "Set icon position"
382
  msgstr ""
383
 
384
+ #: includes/class-post-meta-accordions-hook.php:672
385
  #: includes/class-settings-hook.php:33
386
  msgid "None"
387
  msgstr ""
388
 
389
+ #: includes/class-post-meta-accordions-hook.php:686
 
 
 
 
 
 
 
 
 
 
390
  msgid "Accordion header style"
391
  msgstr ""
392
 
393
+ #: includes/class-post-meta-accordions-hook.php:687
394
  msgid "Customize accordion header."
395
  msgstr ""
396
 
397
+ #: includes/class-post-meta-accordions-hook.php:694
398
+ #: includes/class-post-meta-accordions-hook.php:829
399
  msgid "Add class"
400
  msgstr ""
401
 
402
+ #: includes/class-post-meta-accordions-hook.php:695
403
  msgid ""
404
  "Header style class, ex: <code>border-flat, border-semi-round, border-round, "
405
  "border-1px border-2px border-3px, shadow-bottom, shadow-top shadow-bottom-"
406
  "right, shadow-bottom-left</code>"
407
  msgstr ""
408
 
409
+ #: includes/class-post-meta-accordions-hook.php:713
410
  msgid "Background color of header on idle"
411
  msgstr ""
412
 
413
+ #: includes/class-post-meta-accordions-hook.php:726
414
  msgid "Active background color"
415
  msgstr ""
416
 
417
+ #: includes/class-post-meta-accordions-hook.php:727
418
  msgid "Background color of header on active stats"
419
  msgstr ""
420
 
421
+ #: includes/class-post-meta-accordions-hook.php:741
422
+ #: includes/class-post-meta-accordions-hook.php:755
423
  msgid "Font color for accordion headers"
424
  msgstr ""
425
 
426
+ #: includes/class-post-meta-accordions-hook.php:754
427
  msgid "Color on hover"
428
  msgstr ""
429
 
430
+ #: includes/class-post-meta-accordions-hook.php:768
431
  msgid "Choose font size for header text"
432
  msgstr ""
433
 
434
+ #: includes/class-post-meta-accordions-hook.php:781
435
+ #: includes/class-post-meta-accordions-hook.php:873
436
  msgid "Font family"
437
  msgstr ""
438
 
439
+ #: includes/class-post-meta-accordions-hook.php:782
440
  msgid "Choose font family for header text"
441
  msgstr ""
442
 
443
+ #: includes/class-post-meta-accordions-hook.php:794
444
  msgid "Choose header area padding"
445
  msgstr ""
446
 
447
+ #: includes/class-post-meta-accordions-hook.php:820
448
  msgid "Accordions content style"
449
  msgstr ""
450
 
451
+ #: includes/class-post-meta-accordions-hook.php:821
452
  msgid "Customize accordion content."
453
  msgstr ""
454
 
455
+ #: includes/class-post-meta-accordions-hook.php:830
456
  msgid ""
457
  "Body style class, ex: <code>border-flat, border-semi-round, border-round, "
458
  "border-1px border-2px border-3px, shadow-bottom, shadow-top shadow-bottom-"
459
  "right, shadow-bottom-left</code>"
460
  msgstr ""
461
 
462
+ #: includes/class-post-meta-accordions-hook.php:845
463
  msgid "You can choose custom color for accordion content"
464
  msgstr ""
465
 
466
+ #: includes/class-post-meta-accordions-hook.php:861
467
  msgid "You can set custom font size for accordion content"
468
  msgstr ""
469
 
470
+ #: includes/class-post-meta-accordions-hook.php:874
471
  msgid "Choose font family for accordion content text"
472
  msgstr ""
473
 
474
+ #: includes/class-post-meta-accordions-hook.php:890
475
  msgid "You can choose custom background color for accordion content area"
476
  msgstr ""
477
 
478
+ #: includes/class-post-meta-accordions-hook.php:906
479
  msgid "You can set custom padding for accordion content"
480
  msgstr ""
481
 
482
+ #: includes/class-post-meta-accordions-hook.php:922
483
  msgid "You can set custom margin for accordion content"
484
  msgstr ""
485
 
486
+ #: includes/class-post-meta-accordions-hook.php:935
487
  msgid "Container style"
488
  msgstr ""
489
 
490
+ #: includes/class-post-meta-accordions-hook.php:936
491
  msgid "Customize container style optons."
492
  msgstr ""
493
 
494
+ #: includes/class-post-meta-accordions-hook.php:955
495
  msgid "Set container padding"
496
  msgstr ""
497
 
498
+ #: includes/class-post-meta-accordions-hook.php:969
499
  msgid "Set container background color"
500
  msgstr ""
501
 
502
+ #: includes/class-post-meta-accordions-hook.php:982
503
  msgid "Text align"
504
  msgstr ""
505
 
506
+ #: includes/class-post-meta-accordions-hook.php:983
507
  msgid "Set container text align"
508
  msgstr ""
509
 
510
+ #: includes/class-post-meta-accordions-hook.php:990
511
  msgid "Center"
512
  msgstr ""
513
 
514
+ #: includes/class-post-meta-accordions-hook.php:991
515
  msgid "Justify"
516
  msgstr ""
517
 
518
+ #: includes/class-post-meta-accordions-hook.php:1002
519
  msgid "Background image"
520
  msgstr ""
521
 
522
+ #: includes/class-post-meta-accordions-hook.php:1003
523
  msgid "Set container background image"
524
  msgstr ""
525
 
526
+ #: includes/class-post-meta-accordions-hook.php:1017
527
  msgid "Container width"
528
  msgstr ""
529
 
530
+ #: includes/class-post-meta-accordions-hook.php:1018
531
  msgid "Set accordion width."
532
  msgstr ""
533
 
534
+ #: includes/class-post-meta-accordions-hook.php:1024
535
  msgid "In desktop"
536
  msgstr ""
537
 
538
+ #: includes/class-post-meta-accordions-hook.php:1025
539
  msgid "min-width: 1200px, ex: 300px"
540
  msgstr ""
541
 
542
+ #: includes/class-post-meta-accordions-hook.php:1034
543
  msgid "In tablet & small desktop"
544
  msgstr ""
545
 
546
+ #: includes/class-post-meta-accordions-hook.php:1035
547
  msgid "min-width: 992px, ex: 90%"
548
  msgstr ""
549
 
550
+ #: includes/class-post-meta-accordions-hook.php:1044
551
  msgid "In mobile"
552
  msgstr ""
553
 
554
+ #: includes/class-post-meta-accordions-hook.php:1045
555
  msgid "min-width: 576px, ex: 90%"
556
  msgstr ""
557
 
558
+ #: includes/class-post-meta-accordions-hook.php:1083
559
  msgid "Accordions content"
560
  msgstr ""
561
 
562
+ #: includes/class-post-meta-accordions-hook.php:1084
563
  msgid "Add you accordion content here."
564
  msgstr ""
565
 
566
+ #: includes/class-post-meta-accordions-hook.php:1097
567
  msgid "Header"
568
  msgstr ""
569
 
570
+ #: includes/class-post-meta-accordions-hook.php:1098
571
  msgid "Accordion header."
572
  msgstr ""
573
 
574
+ #: includes/class-post-meta-accordions-hook.php:1107
575
  msgid "Body"
576
  msgstr ""
577
 
578
+ #: includes/class-post-meta-accordions-hook.php:1108
579
  msgid "Accordion body content."
580
  msgstr ""
581
 
582
+ #: includes/class-post-meta-accordions-hook.php:1117
583
  msgid "Hide"
584
  msgstr ""
585
 
586
+ #: includes/class-post-meta-accordions-hook.php:1118
587
  msgid "Hide this."
588
  msgstr ""
589
 
590
+ #: includes/class-post-meta-accordions-hook.php:1135
591
  msgid "Accordion content"
592
  msgstr ""
593
 
594
+ #: includes/class-post-meta-accordions-hook.php:1136
595
  msgid "Set accordion content & title here."
596
  msgstr ""
597
 
598
+ #: includes/class-post-meta-accordions-hook.php:1177
599
  msgid "Accordions Scripts"
600
  msgstr ""
601
 
602
+ #: includes/class-post-meta-accordions-hook.php:1178
603
  msgid "Add your own CSS & Scripts."
604
  msgstr ""
605
 
606
+ #: includes/class-post-meta-accordions-hook.php:1184
607
  msgid "Custom Js"
608
  msgstr ""
609
 
610
+ #: includes/class-post-meta-accordions-hook.php:1185
611
  msgid ""
612
  "You can add custom scripts here, do not use <code>&lt;script&gt; &lt;/"
613
  "script&gt;</code> tag"
614
  msgstr ""
615
 
616
+ #: includes/class-post-meta-accordions-hook.php:1196
617
  msgid "Custom CSS"
618
  msgstr ""
619
 
620
+ #: includes/class-post-meta-accordions-hook.php:1197
621
  msgid ""
622
  "You can add custom css here, do not use <code> &lt;style&gt; &lt;/style&gt;"
623
  "</code> tag"
624
  msgstr ""
625
 
626
+ #: includes/class-post-meta-accordions-hook.php:1224
627
  #: includes/class-settings-hook.php:192
628
  msgid "Get support"
629
  msgstr ""
630
 
631
+ #: includes/class-post-meta-accordions-hook.php:1225
632
  #: includes/class-settings-hook.php:193
633
  msgid "Use following to get help and support from our expert team."
634
  msgstr ""
635
 
636
+ #: includes/class-post-meta-accordions-hook.php:1233
637
  #: includes/class-settings-hook.php:201
638
  msgid ""
639
  "Ask question for free on our forum and get quick reply from our expert team "
640
  "members."
641
  msgstr ""
642
 
643
+ #: includes/class-post-meta-accordions-hook.php:1234
644
  #: includes/class-settings-hook.php:202
645
  msgid "Create support ticket"
646
  msgstr ""
647
 
648
+ #: includes/class-post-meta-accordions-hook.php:1236
649
  #: includes/class-settings-hook.php:204
650
  msgid "Read our documentation before asking your question."
651
  msgstr ""
652
 
653
+ #: includes/class-post-meta-accordions-hook.php:1237
654
  #: includes/class-settings-hook.php:205
655
  msgid "Documentation"
656
  msgstr ""
657
 
658
+ #: includes/class-post-meta-accordions-hook.php:1239
659
  #: includes/class-settings-hook.php:207
660
  msgid "Watch video tutorials."
661
  msgstr ""
662
 
663
+ #: includes/class-post-meta-accordions-hook.php:1240
664
  #: includes/class-settings-hook.php:208
665
  msgid "All tutorials"
666
  msgstr ""
667
 
668
+ #: includes/class-post-meta-accordions-hook.php:1257
669
  #: includes/class-settings-hook.php:225
670
  msgid "Ask question"
671
  msgstr ""
672
 
673
+ #: includes/class-post-meta-accordions-hook.php:1282
674
  #: includes/class-settings-hook.php:250
675
  msgid "Submit reviews"
676
  msgstr ""
677
 
 
 
 
 
 
678
  #: includes/class-post-meta-accordions.php:19
679
  msgid "Accordions data"
680
  msgstr ""
836
  msgid "Import"
837
  msgstr ""
838
 
839
+ #: includes/class-settings-hook.php:348
840
+ msgid "Reset migration"
841
+ msgstr ""
842
+
843
+ #: includes/class-settings-hook.php:374
844
+ msgid "Older version"
845
+ msgstr ""
846
+
847
+ #: includes/class-settings-hook.php:408
848
+ msgid "3rd party plugin data import"
849
+ msgstr ""
850
+
851
+ #: includes/class-settings-hook.php:409
852
+ msgid "Import from 3rd party plugin data for accordion and tabs."
853
+ msgstr ""
854
+
855
+ #: includes/class-settings-hook.php:714
856
+ msgid "Import data"
857
+ msgstr ""
858
+
859
+ #: includes/class-settings-hook.php:715
860
+ msgid "Please contact our support form to add new 3rd party plugin source."
861
+ msgstr ""
862
+
863
+ #: includes/class-settings-hook.php:751
864
  msgid "Get Premium"
865
  msgstr ""
866
 
867
+ #: includes/class-settings-hook.php:752
868
  msgid ""
869
  "Thanks for using our plugin, if you looking for some advance feature please "
870
  "buy premium version."
871
  msgstr ""
872
 
873
+ #: includes/class-settings-hook.php:760
874
  msgid ""
875
  "If you love our plugin and want more feature please consider to buy pro "
876
  "version."
877
  msgstr ""
878
 
879
+ #: includes/class-settings-hook.php:761 includes/class-settings-hook.php:1108
880
  msgid "Buy premium"
881
  msgstr ""
882
 
883
+ #: includes/class-settings-hook.php:762
884
  msgid "See all demo"
885
  msgstr ""
886
 
887
+ #: includes/class-settings-hook.php:764
888
  msgid "See the differences"
889
  msgstr ""
890
 
891
+ #: includes/class-settings-hook.php:769 includes/class-settings-hook.php:1101
892
  msgid "Features"
893
  msgstr ""
894
 
895
+ #: includes/class-settings-hook.php:770 includes/class-settings-hook.php:1102
896
  msgid "Free"
897
  msgstr ""
898
 
899
+ #: includes/class-settings-hook.php:771 includes/class-settings-hook.php:1103
900
  msgid "Premium"
901
  msgstr ""
902
 
903
+ #: includes/class-settings-hook.php:776
904
  msgid "Nested/multi level accordion"
905
  msgstr ""
906
 
907
+ #: includes/class-settings-hook.php:781
908
+ msgid "Click header to scroll top"
909
+ msgstr ""
910
+
911
+ #: includes/class-settings-hook.php:787
912
  msgid "Header text toggle"
913
  msgstr ""
914
 
915
+ #: includes/class-settings-hook.php:792
916
  msgid "Display expand/collapse all button"
917
  msgstr ""
918
 
919
+ #: includes/class-settings-hook.php:797
920
  msgid "Expand/collapse all text"
921
  msgstr ""
922
 
923
+ #: includes/class-settings-hook.php:802
924
  msgid "Expand/collapse all button background color"
925
  msgstr ""
926
 
927
+ #: includes/class-settings-hook.php:807
928
  msgid "Header click track & stats"
929
  msgstr ""
930
 
931
+ #: includes/class-settings-hook.php:813
932
  msgid "Header background image"
933
  msgstr ""
934
 
935
+ #: includes/class-settings-hook.php:819
936
  msgid "Custom background color"
937
  msgstr ""
938
 
939
+ #: includes/class-settings-hook.php:825
940
  msgid "Active accordion on page load"
941
  msgstr ""
942
 
943
+ #: includes/class-settings-hook.php:831
944
  msgid "Icon position to right"
945
  msgstr ""
946
 
947
+ #: includes/class-settings-hook.php:837
948
+ msgid "Enable search"
949
+ msgstr ""
950
+
951
+ #: includes/class-settings-hook.php:842
952
  msgid "Search placeholder text"
953
  msgstr ""
954
 
955
+ #: includes/class-settings-hook.php:865
956
  msgid "3rd party shortcode on content"
957
  msgstr ""
958
 
959
+ #: includes/class-settings-hook.php:875
960
  msgid "Schema for FAQ page"
961
  msgstr ""
962
 
963
+ #: includes/class-settings-hook.php:881
964
  msgid "Accordion feature collapsible"
965
  msgstr ""
966
 
967
+ #: includes/class-settings-hook.php:886
968
  msgid "Accordion feature keep expanded others"
969
  msgstr ""
970
 
971
+ #: includes/class-settings-hook.php:891
972
  msgid "Accordion feature content height style"
973
  msgstr ""
974
 
975
+ #: includes/class-settings-hook.php:896
976
  msgid "Accordion feature activate event"
977
  msgstr ""
978
 
979
+ #: includes/class-settings-hook.php:901
980
  msgid "Accordion custom active icon"
981
  msgstr ""
982
 
983
+ #: includes/class-settings-hook.php:906
984
  msgid "Accordion custom inactive icon"
985
  msgstr ""
986
 
987
+ #: includes/class-settings-hook.php:912
988
  msgid "Accordion icons text color"
989
  msgstr ""
990
 
991
+ #: includes/class-settings-hook.php:917
992
  msgid "Accordion icons hover color"
993
  msgstr ""
994
 
995
+ #: includes/class-settings-hook.php:922
996
  msgid "Accordion icons background color"
997
  msgstr ""
998
 
999
+ #: includes/class-settings-hook.php:927
1000
  msgid "Accordion icons font size"
1001
  msgstr ""
1002
 
1003
+ #: includes/class-settings-hook.php:932
1004
  msgid "Accordion icons padding"
1005
  msgstr ""
1006
 
1007
+ #: includes/class-settings-hook.php:937
1008
  msgid "Accordion icons margin"
1009
  msgstr ""
1010
 
1011
+ #: includes/class-settings-hook.php:943
1012
  msgid "Accordion header custom class"
1013
  msgstr ""
1014
 
1015
+ #: includes/class-settings-hook.php:949
1016
  msgid "Accordion header background color"
1017
  msgstr ""
1018
 
1019
+ #: includes/class-settings-hook.php:955
1020
  msgid "Accordion header Active background color"
1021
  msgstr ""
1022
 
1023
+ #: includes/class-settings-hook.php:960
1024
  msgid "Accordion header text color"
1025
  msgstr ""
1026
 
1027
+ #: includes/class-settings-hook.php:966
1028
  msgid "Accordion header hover text color"
1029
  msgstr ""
1030
 
1031
+ #: includes/class-settings-hook.php:972
1032
  msgid "Accordion header font size"
1033
  msgstr ""
1034
 
1035
+ #: includes/class-settings-hook.php:977
1036
  msgid "Accordion header padding"
1037
  msgstr ""
1038
 
1039
+ #: includes/class-settings-hook.php:982
1040
  msgid "Accordion header margin"
1041
  msgstr ""
1042
 
1043
+ #: includes/class-settings-hook.php:987
1044
  msgid "Accordion header font family"
1045
  msgstr ""
1046
 
1047
+ #: includes/class-settings-hook.php:995
1048
  msgid "Accordion content custom class"
1049
  msgstr ""
1050
 
1051
+ #: includes/class-settings-hook.php:1001
1052
  msgid "Accordion content background color"
1053
  msgstr ""
1054
 
1055
+ #: includes/class-settings-hook.php:1007
1056
  msgid "Accordion content text color"
1057
  msgstr ""
1058
 
1059
+ #: includes/class-settings-hook.php:1014
1060
  msgid "Accordion content font size"
1061
  msgstr ""
1062
 
1063
+ #: includes/class-settings-hook.php:1019
1064
  msgid "Accordion content padding"
1065
  msgstr ""
1066
 
1067
+ #: includes/class-settings-hook.php:1024
1068
  msgid "Accordion content margin"
1069
  msgstr ""
1070
 
1071
+ #: includes/class-settings-hook.php:1029
1072
  msgid "Accordion content font family"
1073
  msgstr ""
1074
 
1075
+ #: includes/class-settings-hook.php:1037
1076
  msgid "Accordion container padding"
1077
  msgstr ""
1078
 
1079
+ #: includes/class-settings-hook.php:1042
1080
  msgid "Accordion container background color"
1081
  msgstr ""
1082
 
1083
+ #: includes/class-settings-hook.php:1047
1084
  msgid "Accordion container background image"
1085
  msgstr ""
1086
 
1087
+ #: includes/class-settings-hook.php:1052
1088
  msgid "Accordion container text align"
1089
  msgstr ""
1090
 
1091
+ #: includes/class-settings-hook.php:1057
1092
  msgid "Sort accordion content"
1093
  msgstr ""
1094
 
1095
+ #: includes/class-settings-hook.php:1063
1096
  msgid "Hide accordion content"
1097
  msgstr ""
1098
 
1099
+ #: includes/class-settings-hook.php:1069
1100
  msgid "WP editor for accordion content"
1101
  msgstr ""
1102
 
1103
+ #: includes/class-settings-hook.php:1075
1104
  msgid "Font-awesome version selection"
1105
  msgstr ""
1106
 
1107
+ #: includes/class-settings-hook.php:1081
1108
  msgid "Accordions preview on frontend"
1109
  msgstr ""
1110
 
1111
+ #: includes/class-settings-hook.php:1087
1112
  msgid "Export accordion"
1113
  msgstr ""
1114
 
1115
+ #: includes/class-settings-hook.php:1093
1116
  msgid "Import accordion"
1117
  msgstr ""
1118
 
1119
+ #: includes/class-settings-hook.php:1106
1120
  msgid "Buy now"
1121
  msgstr ""
1122
 
1123
+ #: includes/class-settings-hook.php:1121
1124
  msgid "Get pro version"
1125
  msgstr ""
1126
 
1127
+ #: includes/class-settings-tabs.php:319
1128
  msgid "Placeholder.jpg"
1129
  msgstr ""
1130
 
1131
+ #: includes/class-settings-tabs.php:375 includes/class-settings-tabs.php:456
1132
  msgid "Upload"
1133
  msgstr ""
1134
 
1135
+ #: includes/class-settings-tabs.php:376 includes/class-settings-tabs.php:457
1136
  msgid "Clear"
1137
  msgstr ""
1138
 
1139
+ #: includes/class-settings-tabs.php:563 includes/class-settings-tabs.php:834
1140
  msgid "Add"
1141
  msgstr ""
1142
 
1164
  msgid "FAQ"
1165
  msgstr ""
1166
 
1167
+ #: includes/functions.php:303
1168
  msgid "Shortcode"
1169
  msgstr ""
1170
 
1171
+ #: includes/menu/settings.php:18
1172
+ #, php-format
1173
+ msgid "%s 3rd party import"
1174
+ msgstr ""
1175
+
1176
+ #: includes/menu/settings.php:25
1177
  #, php-format
1178
  msgid "%s Help & support"
1179
  msgstr ""
1180
 
1181
+ #: includes/menu/settings.php:32
1182
  #, php-format
1183
  msgid "%s Buy Pro"
1184
  msgstr ""
1185
 
1186
+ #: includes/menu/settings.php:63
1187
  #, php-format
1188
  msgid "%s Settings"
1189
  msgstr ""
1190
 
1191
+ #: includes/menu/settings.php:73
1192
  msgid "Changes Saved."
1193
  msgstr ""
1194
 
1195
+ #: includes/menu/settings.php:138
1196
  msgid "Save Changes"
1197
  msgstr ""
1198
 
1201
  msgid "%s Settings - Update"
1202
  msgstr ""
1203
 
1204
+ #: templates/accordion/accordion-hook.php:507 templates/tabs/tabs-hook.php:504
1205
  msgid "Edit this accordion"
1206
  msgstr ""
1207
 
1208
+ #: templates/accordion/accordion-hook.php:507 templates/tabs/tabs-hook.php:504
1209
  msgid "Only admin can see this."
1210
  msgstr ""
1211
 
1212
+ #: templates/accordion/accordion-hook.php:614 templates/tabs/tabs-hook.php:592
1213
  msgid "Content missing"
1214
  msgstr ""
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.3
7
- Stable tag: 2.2.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -139,6 +139,22 @@ then paste this shortcode anywhere in your page to display accordions<br />
139
 
140
  == Changelog ==
141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  = 2.2.6=
143
  * 2020-03-17 - fix - WooCommerce product FAQ tab remove issue fixed.
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: 5.3
7
+ Stable tag: 2.2.10
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.10=
143
+ * 2020-03-19 - add - data migration tutorial update and linked help section
144
+
145
+ = 2.2.9=
146
+ * 2020-03-18 - update - data migration post status to any.
147
+ * 2020-03-18 - update - import accordion any post status
148
+ * 2020-03-18 - fix - security issue on import accordion fixed.
149
+
150
+
151
+
152
+ = 2.2.8=
153
+ * 2020-03-18 - fix - minor security issue fixed.
154
+
155
+ = 2.2.7=
156
+ * 2020-03-18 - add - older version plugin link added under help section.
157
+
158
  = 2.2.6=
159
  * 2020-03-17 - fix - WooCommerce product FAQ tab remove issue fixed.
160
 
templates/accordion/accordion-hook.php CHANGED
@@ -343,7 +343,7 @@ function accordions_main_items($atts){
343
  $inactive_icon = !empty($accordion['inactive_icon']) ? $accordion['inactive_icon'] : $icon_inactive;
344
 
345
 
346
- $accordion_body = apply_filters( 'accordions_item_header', $accordion_body, $post_id );
347
 
348
  if(($accordion_is_active =='yes')){
349
  $active_index[$index] = $item_count;
@@ -412,7 +412,7 @@ function accordions_main_items($atts){
412
  }
413
  else:
414
 
415
- do_action('accordions_main_no_content');
416
  endif;
417
 
418
  ?>
@@ -501,7 +501,7 @@ function accordions_main_edit_link($atts){
501
 
502
  if(current_user_can('administrator') && $hide_edit == 'no'){
503
  $admin_url = admin_url();
504
- $accordion_edit_url = apply_filters('accordion_edit_url', ''.$admin_url.'post.php?post='.$post_id.'&action=edit' );
505
 
506
  ?>
507
  <div class="accordion-edit"><a href="<?php echo $accordion_edit_url; ?>"><?php echo __('Edit this accordion','accordions'); ?></a>, <?php echo __("Only admin can see this.",'accordions')?></div>
@@ -584,7 +584,7 @@ function accordions_main_scripts($atts){
584
  heightStyle: "<?php echo $height_style; ?>",
585
  animate: ("<?php echo $animate_style; ?>", <?php echo $animate_delay; ?>),
586
  navigation: true,
587
- active: 99999,
588
  });
589
  })
590
  </script>
343
  $inactive_icon = !empty($accordion['inactive_icon']) ? $accordion['inactive_icon'] : $icon_inactive;
344
 
345
 
346
+ $accordion_header = apply_filters( 'accordions_item_header', $accordion_header, $post_id );
347
 
348
  if(($accordion_is_active =='yes')){
349
  $active_index[$index] = $item_count;
412
  }
413
  else:
414
 
415
+ do_action('accordions_main_no_content', $post_id);
416
  endif;
417
 
418
  ?>
501
 
502
  if(current_user_can('administrator') && $hide_edit == 'no'){
503
  $admin_url = admin_url();
504
+ $accordion_edit_url = apply_filters('accordions_edit_url', ''.$admin_url.'post.php?post='.$post_id.'&action=edit', $post_id );
505
 
506
  ?>
507
  <div class="accordion-edit"><a href="<?php echo $accordion_edit_url; ?>"><?php echo __('Edit this accordion','accordions'); ?></a>, <?php echo __("Only admin can see this.",'accordions')?></div>
584
  heightStyle: "<?php echo $height_style; ?>",
585
  animate: ("<?php echo $animate_style; ?>", <?php echo $animate_delay; ?>),
586
  navigation: true,
587
+ active: 999,
588
  });
589
  })
590
  </script>
templates/tabs/tabs-hook.php CHANGED
@@ -354,7 +354,7 @@ function accordions_tabs_main_items($atts){
354
  $inactive_icon = !empty($accordion['inactive_icon']) ? $accordion['inactive_icon'] : $icon_inactive;
355
 
356
 
357
- $accordion_body = apply_filters( 'accordions_item_header', $accordion_body, $post_id );
358
 
359
  if(($accordion_is_active =='yes')){
360
  $active_index[$index] = $item_count;
@@ -439,7 +439,7 @@ function accordions_tabs_main_items($atts){
439
  }
440
  else:
441
 
442
- do_action('accordions_tabs_main_no_content');
443
  endif;
444
 
445
  ?>
@@ -498,7 +498,7 @@ function accordions_tabs_main_edit_link($atts){
498
 
499
  if(current_user_can('administrator') && $hide_edit == 'no'){
500
  $admin_url = admin_url();
501
- $accordion_edit_url = apply_filters('accordion_edit_url', ''.$admin_url.'post.php?post='.$post_id.'&action=edit' );
502
 
503
  ?>
504
  <div class="accordion-edit"><a href="<?php echo $accordion_edit_url; ?>"><?php echo __('Edit this accordion','accordions'); ?></a>, <?php echo __("Only admin can see this.",'accordions')?></div>
354
  $inactive_icon = !empty($accordion['inactive_icon']) ? $accordion['inactive_icon'] : $icon_inactive;
355
 
356
 
357
+ $accordion_header = apply_filters( 'accordions_item_header', $accordion_header, $post_id );
358
 
359
  if(($accordion_is_active =='yes')){
360
  $active_index[$index] = $item_count;
439
  }
440
  else:
441
 
442
+ do_action('accordions_tabs_main_no_content', $post_id);
443
  endif;
444
 
445
  ?>
498
 
499
  if(current_user_can('administrator') && $hide_edit == 'no'){
500
  $admin_url = admin_url();
501
+ $accordion_edit_url = apply_filters('accordions_edit_url', ''.$admin_url.'post.php?post='.$post_id.'&action=edit' );
502
 
503
  ?>
504
  <div class="accordion-edit"><a href="<?php echo $accordion_edit_url; ?>"><?php echo __('Edit this accordion','accordions'); ?></a>, <?php echo __("Only admin can see this.",'accordions')?></div>