Astra Bulk Edit - Version 1.1.0

Version Description

  • New: Added Astra Pro 'Transparent Header' addon meta box support in bulk edit.
  • New: Added Astra Pro 'Page Header' addon meta box support in bulk edit.
  • New: Added Astra Pro 'Sticky Header' addon meta box support in bulk edit.
Download this release

Release Info

Developer Nikschavan
Plugin Icon 128x128 Astra Bulk Edit
Version 1.1.0
Comparing to
See all releases

Code changes from version 1.0.0 to 1.1.0

assets/css/astra-admin.css CHANGED
@@ -12,4 +12,8 @@
12
  }
13
  .ast-float-left {
14
  float: left;
 
 
 
 
15
  }
12
  }
13
  .ast-float-left {
14
  float: left;
15
+ }
16
+
17
+ #wpbody-content .quick-edit-row-page .astra-bulk-settings .inline-edit-col-left {
18
+ width: 33.33%;
19
  }
assets/js/astra-admin.js CHANGED
@@ -42,16 +42,17 @@ jQuery(document).ready(function($){
42
  new_field.val( field_val );
43
  }else if ( 'checkbox' == new_field_type ) {
44
 
45
- if ( 'disabled' == field_val ) {
46
  new_field.prop( "checked", true );
47
  }
48
  }
49
  });
 
 
50
  }
51
  }
52
  }
53
 
54
-
55
  jQuery( "#bulk_edit" ).on( "click", function(e) {
56
 
57
  // e.preventDefault();
@@ -75,6 +76,35 @@ jQuery(document).ready(function($){
75
  data: post_data,
76
  type: 'POST',
77
  dataType: 'json',
78
- });
 
 
 
 
 
 
 
 
79
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  });
42
  new_field.val( field_val );
43
  }else if ( 'checkbox' == new_field_type ) {
44
 
45
+ if ( 'disabled' == field_val || 'on' == field_val ) {
46
  new_field.prop( "checked", true );
47
  }
48
  }
49
  });
50
+
51
+ toggleStickyHeader();
52
  }
53
  }
54
  }
55
 
 
56
  jQuery( "#bulk_edit" ).on( "click", function(e) {
57
 
58
  // e.preventDefault();
76
  data: post_data,
77
  type: 'POST',
78
  dataType: 'json',
79
+ })
80
+ .done(function() {
81
+ toggleStickyHeader();
82
+ })
83
+
84
+ });
85
+
86
+ jQuery( ".inline-edit select[name=stick-header-meta]" ).on( "change", function(e) {
87
+ toggleStickyHeader();
88
  });
89
+ toggleStickyHeader();
90
+
91
+ function toggleStickyHeader() {
92
+
93
+ $( 'select[name=stick-header-meta]' ).each(function(index, el) {
94
+ var value = $( el ).val() || '';
95
+ if ( 'enabled' == value ) {
96
+ $( el ).parents( '.inline-edit-col' ).find( '.header-above-stick-meta' ).parents('.inline-edit').slideDown();
97
+ $( el ).parents( '.inline-edit-col' ).find( '.header-main-stick-meta' ).parents('.inline-edit').slideDown();
98
+ $( el ).parents( '.inline-edit-col' ).find( '.header-below-stick-meta' ).parents('.inline-edit').slideDown();
99
+ } else {
100
+ $( el ).parents( '.inline-edit-col' ).find( '.header-above-stick-meta' ).parents('.inline-edit').slideUp();
101
+ $( el ).parents( '.inline-edit-col' ).find( '.header-main-stick-meta' ).parents('.inline-edit').slideUp();
102
+ $( el ).parents( '.inline-edit-col' ).find( '.header-below-stick-meta' ).parents('.inline-edit').slideUp();
103
+ }
104
+
105
+ });
106
+
107
+
108
+ }
109
+
110
  });
astra-bulk-edit.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Astra Bulk Edit
4
  * Plugin URI: http://www.wpastra.com/pro/
5
  * Description: Easier way to edit Astra meta options in bulk.
6
- * Version: 1.0.0
7
  * Author: Brainstorm Force
8
  * Author URI: http://www.brainstormforce.com
9
  * Domain Path: /languages
@@ -16,7 +16,7 @@
16
  /**
17
  * Set constants.
18
  */
19
- define( 'ASTRA_BLK_VER', '1.0.0' );
20
  define( 'ASTRA_BLK_FILE', __FILE__ );
21
  define( 'ASTRA_BLK_BASE', plugin_basename( ASTRA_BLK_FILE ) );
22
  define( 'ASTRA_BLK_DIR', plugin_dir_path( ASTRA_BLK_FILE ) );
3
  * Plugin Name: Astra Bulk Edit
4
  * Plugin URI: http://www.wpastra.com/pro/
5
  * Description: Easier way to edit Astra meta options in bulk.
6
+ * Version: 1.1.0
7
  * Author: Brainstorm Force
8
  * Author URI: http://www.brainstormforce.com
9
  * Domain Path: /languages
16
  /**
17
  * Set constants.
18
  */
19
+ define( 'ASTRA_BLK_VER', '1.1.0' );
20
  define( 'ASTRA_BLK_FILE', __FILE__ );
21
  define( 'ASTRA_BLK_BASE', plugin_basename( ASTRA_BLK_FILE ) );
22
  define( 'ASTRA_BLK_DIR', plugin_dir_path( ASTRA_BLK_FILE ) );
classes/class-astra-blk-meta-boxes-bulk-edit.php CHANGED
@@ -121,6 +121,24 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
121
  'footer-adv-display' => array(
122
  'sanitize' => 'FILTER_DEFAULT',
123
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  )
125
  );
126
  }
@@ -312,19 +330,17 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
312
 
313
  $html = '';
314
 
315
- wp_nonce_field( basename( __FILE__ ), 'astra_settings_bulk_meta_box' );
316
 
317
  if ( 'astra-settings' == $column ) { ?>
318
  <fieldset class="astra-bulk-settings inline-edit-col ">
319
  <div class="inline-edit-col wp-clearfix">
320
-
321
- <h4 class="title"><?php esc_html_e( 'Astra Setting', 'astra-bulk-edit' ); ?></h4>
322
 
323
  <div class="ast-float-left inline-edit-col-left wp-clearfix">
324
  <label class="inline-edit" for="site-sidebar-layout">
325
  <span class="title"><?php esc_html_e( 'Sidebar', 'astra-bulk-edit' ); ?></span>
326
-
327
- <select name="site-sidebar-layout" id="site-sidebar-layout">
328
  <option value="default" selected="selected"><?php _e( 'Customizer Setting', 'astra-bulk-edit' ); ?></option>
329
  <option value="left-sidebar"><?php _e( 'Left Sidebar', 'astra-bulk-edit' ); ?></option>
330
  <option value="right-sidebar"><?php _e( 'Right Sidebar', 'astra-bulk-edit' ); ?></option>
@@ -334,8 +350,7 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
334
 
335
  <label class="inline-edit" for="site-content-layout">
336
  <span class="title"><?php esc_html_e( 'Content Layout', 'astra-bulk-edit' ); ?></span>
337
-
338
- <select name="site-content-layout" id="site-content-layout">
339
  <option value="default" selected="selected"><?php _e( 'Customizer Setting', 'astra-bulk-edit' ); ?></option>
340
  <option value="content-boxed-container"><?php _e( 'Boxed', 'astra-bulk-edit' ); ?></option>
341
  <option value="content-boxed-container"><?php _e( 'Content Boxed', 'astra-bulk-edit' ); ?></option>
@@ -347,7 +362,7 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
347
  <?php do_action( 'astra_meta_bulk_edit_left_bottom' ); ?>
348
  </div>
349
 
350
- <div class="ast-float-left inline-edit-col-center wp-clearfix">
351
  <label class="inline-edit" for="ast-main-header-display">
352
  <input type="checkbox" id="ast-main-header-display" name="ast-main-header-display" value="disabled"/>
353
  <?php _e( 'Disable Primary Header', 'astra-bulk-edit' ); ?>
@@ -385,6 +400,97 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
385
 
386
  <?php do_action( 'astra_meta_bulk_edit_center_bottom' ); ?>
387
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
388
  </div>
389
  </fieldset>;
390
  <?php
121
  'footer-adv-display' => array(
122
  'sanitize' => 'FILTER_DEFAULT',
123
  ),
124
+ 'theme-transparent-header-meta' => array(
125
+ 'sanitize' => 'FILTER_DEFAULT',
126
+ ),
127
+ 'adv-header-id-meta' => array(
128
+ 'sanitize' => 'FILTER_DEFAULT',
129
+ ),
130
+ 'stick-header-meta' => array(
131
+ 'sanitize' => 'FILTER_DEFAULT',
132
+ ),
133
+ 'header-above-stick-meta' => array(
134
+ 'sanitize' => 'FILTER_DEFAULT',
135
+ ),
136
+ 'header-main-stick-meta' => array(
137
+ 'sanitize' => 'FILTER_DEFAULT',
138
+ ),
139
+ 'header-below-stick-meta' => array(
140
+ 'sanitize' => 'FILTER_DEFAULT',
141
+ ),
142
  )
143
  );
144
  }
330
 
331
  $html = '';
332
 
333
+ wp_nonce_field( basename( __FILE__ ), 'astra_settings_bulk_meta_box' );
334
 
335
  if ( 'astra-settings' == $column ) { ?>
336
  <fieldset class="astra-bulk-settings inline-edit-col ">
337
  <div class="inline-edit-col wp-clearfix">
338
+ <h4 class="title"><?php esc_html_e( 'Astra Setting', 'astra-bulk-edit' ); ?></h4>
 
339
 
340
  <div class="ast-float-left inline-edit-col-left wp-clearfix">
341
  <label class="inline-edit" for="site-sidebar-layout">
342
  <span class="title"><?php esc_html_e( 'Sidebar', 'astra-bulk-edit' ); ?></span>
343
+ <select name="site-sidebar-layout" id="site-sidebar-layout">
 
344
  <option value="default" selected="selected"><?php _e( 'Customizer Setting', 'astra-bulk-edit' ); ?></option>
345
  <option value="left-sidebar"><?php _e( 'Left Sidebar', 'astra-bulk-edit' ); ?></option>
346
  <option value="right-sidebar"><?php _e( 'Right Sidebar', 'astra-bulk-edit' ); ?></option>
350
 
351
  <label class="inline-edit" for="site-content-layout">
352
  <span class="title"><?php esc_html_e( 'Content Layout', 'astra-bulk-edit' ); ?></span>
353
+ <select name="site-content-layout" id="site-content-layout">
 
354
  <option value="default" selected="selected"><?php _e( 'Customizer Setting', 'astra-bulk-edit' ); ?></option>
355
  <option value="content-boxed-container"><?php _e( 'Boxed', 'astra-bulk-edit' ); ?></option>
356
  <option value="content-boxed-container"><?php _e( 'Content Boxed', 'astra-bulk-edit' ); ?></option>
362
  <?php do_action( 'astra_meta_bulk_edit_left_bottom' ); ?>
363
  </div>
364
 
365
+ <div class="ast-float-left inline-edit-col-center wp-clearfix" style="padding-right: 2em;">
366
  <label class="inline-edit" for="ast-main-header-display">
367
  <input type="checkbox" id="ast-main-header-display" name="ast-main-header-display" value="disabled"/>
368
  <?php _e( 'Disable Primary Header', 'astra-bulk-edit' ); ?>
400
 
401
  <?php do_action( 'astra_meta_bulk_edit_center_bottom' ); ?>
402
  </div>
403
+
404
+ <div class="ast-float-left inline-edit-col-left wp-clearfix">
405
+
406
+ <?php if ( is_callable( 'Astra_Ext_Extension::is_active' ) ) : ?>
407
+
408
+ <?php if ( Astra_Ext_Extension::is_active( 'transparent-header' ) ) : ?>
409
+ <label class="inline-edit" for="theme-transparent-header-meta">
410
+ <span class="title"><?php esc_html_e( 'Transparent Header', 'astra-bulk-edit' ); ?></span>
411
+ <select name="theme-transparent-header-meta" id="theme-transparent-header-meta">
412
+ <option value="default"> <?php esc_html_e( 'Customizer Setting', 'astra-bulk-edit' ); ?> </option>
413
+ <option value="enabled"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
414
+ <option value="disabled"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
415
+ </select>
416
+ </label>
417
+ <?php endif; ?>
418
+
419
+ <?php if ( Astra_Ext_Extension::is_active( 'advanced-headers' ) ) : ?>
420
+ <?php
421
+ $header_options = Astra_Target_Rules_Fields::get_post_selection( 'astra_adv_header' );
422
+ $show_meta_field = ! astra_check_is_bb_themer_layout();
423
+ if ( empty( $header_options ) ) {
424
+ $header_options = array(
425
+ '' => __( 'No Page Headers Found', 'astra-bulk-edit' ),
426
+ );
427
+ }
428
+ ?>
429
+ <?php if ( $show_meta_field ) { ?>
430
+ <label class="inline-edit" for="adv-header-id-meta">
431
+ <span class="title"><?php esc_html_e( 'Page Header', 'astra-bulk-edit' ); ?></span>
432
+ <select name="adv-header-id-meta" id="adv-header-id-meta">
433
+ <?php foreach ( $header_options as $key => $value ) { ?>
434
+ <option value="<?php echo esc_attr( $key ); ?>"> <?php echo $value; ?></option>
435
+ <?php } ?>
436
+ </select>
437
+ </label>
438
+ <?php } ?>
439
+ <?php endif; ?>
440
+
441
+ <?php if ( Astra_Ext_Extension::is_active( 'sticky-header' ) ) : ?>
442
+ <label class="inline-edit" for="stick-header-meta">
443
+ <span class="title"><?php esc_html_e( 'Sticky Header', 'astra-bulk-edit' ); ?></span>
444
+ <select name="stick-header-meta" id="stick-header-meta">
445
+ <option value="default"><?php esc_html_e( 'Customizer Setting', 'astra-bulk-edit' ); ?> </option>
446
+ <option value="enabled"><?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
447
+ <option value="disabled"><?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
448
+ </select>
449
+ </label>
450
+
451
+ <?php
452
+ if ( Astra_Ext_Extension::is_active( 'header-sections' ) ) {
453
+ // Above Header Layout.
454
+ $above_header_layout = astra_get_option( 'above-header-layout' );
455
+ if ( 'disabled' != $above_header_layout ) { ?>
456
+ <label class="inline-edit" for="header-above-stick-meta">
457
+ <span class="title"><?php esc_html_e( 'Stick Above Header', 'astra-bulk-edit' ); ?></span>
458
+ <input type="checkbox" class="header-above-stick-meta" id="header-above-stick-meta" name="header-above-stick-meta" value="on" />
459
+ </label>
460
+ <?php
461
+ }
462
+ }
463
+ // Main Header Layout.
464
+ $header_layouts = astra_get_option( 'header-layouts' );
465
+ if ( 'header-main-layout-5' != $header_layouts ) {
466
+ ?>
467
+ <label class="inline-edit" for="header-main-stick-meta">
468
+ <span class="title"><?php esc_html_e( 'Stick Primary Header', 'astra-bulk-edit' ); ?></span>
469
+ <input type="checkbox" class="header-main-stick-meta" id="header-main-stick-meta" name="header-main-stick-meta" value="on" />
470
+ </label>
471
+ <?php
472
+ }
473
+ if ( Astra_Ext_Extension::is_active( 'header-sections' ) ) {
474
+ // Below Header Layout.
475
+ $below_header_layout = astra_get_option( 'below-header-layout' );
476
+ if ( 'disabled' != $below_header_layout ) {
477
+ ?>
478
+ <label class="inline-edit" for="header-below-stick-meta">
479
+ <span class="title"><?php esc_html_e( 'Stick Primary Header', 'astra-bulk-edit' ); ?></span>
480
+ <input type="checkbox" class="header-below-stick-meta" id="header-below-stick-meta" name="header-below-stick-meta" value="on" />
481
+ </label>
482
+ <?php
483
+ }
484
+ }
485
+ ?>
486
+
487
+ </div>
488
+ <?php endif; ?>
489
+
490
+ <?php endif; ?>
491
+
492
+ </div>
493
+
494
  </div>
495
  </fieldset>;
496
  <?php
languages/astra-bulk-edit.pot CHANGED
@@ -1,94 +1,131 @@
1
- # Copyright (C) 2017 Brainstorm Force
2
  # This file is distributed under the same license as the Astra Bulk Edit package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Astra Bulk Edit 1.0.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/astra-bulk-edit\n"
7
- "POT-Creation-Date: 2017-11-14 05:12:01+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
- "X-Generator: grunt-wp-i18n 0.5.4\n"
15
- "X-Poedit-KeywordsList: "
16
- "__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
17
- "attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
18
  "Language: en\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
  "X-Poedit-Country: United States\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
 
22
  "X-Poedit-Basepath: ../\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-Bookmarks: \n"
25
  "X-Textdomain-Support: yes\n"
 
26
 
27
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:313
28
  msgid "Astra Setting"
29
  msgstr ""
30
 
31
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:317
32
  msgid "Sidebar"
33
  msgstr ""
34
 
35
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:320
36
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:331
 
 
37
  msgid "Customizer Setting"
38
  msgstr ""
39
 
40
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:321
41
  msgid "Left Sidebar"
42
  msgstr ""
43
 
44
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:322
45
  msgid "Right Sidebar"
46
  msgstr ""
47
 
48
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:323
49
  msgid "No Sidebar"
50
  msgstr ""
51
 
52
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:328
53
  msgid "Content Layout"
54
  msgstr ""
55
 
56
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:332
57
  msgid "Boxed"
58
  msgstr ""
59
 
60
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:333
61
  msgid "Content Boxed"
62
  msgstr ""
63
 
64
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:334
65
  msgid "Full Width / Contained"
66
  msgstr ""
67
 
68
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:335
69
  msgid "Full Width / Stretched"
70
  msgstr ""
71
 
72
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:345
73
  msgid "Disable Primary Header"
74
  msgstr ""
75
 
76
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:350
77
  msgid "Disable Title"
78
  msgstr ""
79
 
80
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:355
81
  msgid "Disable Featured Image"
82
  msgstr ""
83
 
84
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:364
85
  msgid "Disable Footer Widgets"
86
  msgstr ""
87
 
88
- #: classes/class-astra-blk-meta-boxes-bulk-edit.php:374
89
  msgid "Disable Footer Bar"
90
  msgstr ""
91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  #. Plugin Name of the plugin/theme
93
  msgid "Astra Bulk Edit"
94
  msgstr ""
1
+ # Copyright (C) 2018 Brainstorm Force
2
  # This file is distributed under the same license as the Astra Bulk Edit package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Astra Bulk Edit 1.1.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/astra-bulk-edit\n"
7
+ "POT-Creation-Date: 2018-07-23 07:14:41+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
 
 
 
 
14
  "Language: en\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-Country: United States\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: "
19
+ "__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
20
+ "attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
21
  "X-Poedit-Basepath: ../\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-Bookmarks: \n"
24
  "X-Textdomain-Support: yes\n"
25
+ "X-Generator: grunt-wp-i18n1.0.2\n"
26
 
27
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:338
28
  msgid "Astra Setting"
29
  msgstr ""
30
 
31
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:342
32
  msgid "Sidebar"
33
  msgstr ""
34
 
35
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:344
36
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:354
37
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:412
38
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:445
39
  msgid "Customizer Setting"
40
  msgstr ""
41
 
42
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:345
43
  msgid "Left Sidebar"
44
  msgstr ""
45
 
46
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:346
47
  msgid "Right Sidebar"
48
  msgstr ""
49
 
50
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:347
51
  msgid "No Sidebar"
52
  msgstr ""
53
 
54
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:352
55
  msgid "Content Layout"
56
  msgstr ""
57
 
58
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:355
59
  msgid "Boxed"
60
  msgstr ""
61
 
62
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:356
63
  msgid "Content Boxed"
64
  msgstr ""
65
 
66
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:357
67
  msgid "Full Width / Contained"
68
  msgstr ""
69
 
70
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:358
71
  msgid "Full Width / Stretched"
72
  msgstr ""
73
 
74
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:368
75
  msgid "Disable Primary Header"
76
  msgstr ""
77
 
78
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:373
79
  msgid "Disable Title"
80
  msgstr ""
81
 
82
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:378
83
  msgid "Disable Featured Image"
84
  msgstr ""
85
 
86
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:387
87
  msgid "Disable Footer Widgets"
88
  msgstr ""
89
 
90
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:397
91
  msgid "Disable Footer Bar"
92
  msgstr ""
93
 
94
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:410
95
+ msgid "Transparent Header"
96
+ msgstr ""
97
+
98
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:413
99
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:446
100
+ msgid "Enabled"
101
+ msgstr ""
102
+
103
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:414
104
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:447
105
+ msgid "Disabled"
106
+ msgstr ""
107
+
108
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:425
109
+ msgid "No Page Headers Found"
110
+ msgstr ""
111
+
112
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:431
113
+ msgid "Page Header"
114
+ msgstr ""
115
+
116
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:443
117
+ msgid "Sticky Header"
118
+ msgstr ""
119
+
120
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:457
121
+ msgid "Stick Above Header"
122
+ msgstr ""
123
+
124
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:468
125
+ #: classes/class-astra-blk-meta-boxes-bulk-edit.php:479
126
+ msgid "Stick Primary Header"
127
+ msgstr ""
128
+
129
  #. Plugin Name of the plugin/theme
130
  msgid "Astra Bulk Edit"
131
  msgstr ""
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Astra Bulk Edit ===
2
  Contributors: brainstormforce
3
- Donate link: https://wpastra.com/
4
  Tags: bulk edit Astra meta settings, Astra meta settings, meta settings bulk edit, wordpress bulk edit plugin, page bulk edit, post bulk edit
5
  Requires at least: 4.4
6
- Tested up to: 4.9
7
- Stable tag: 1.0.0
8
  Requires PHP: 5.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -58,8 +58,14 @@ Astra Bulk Edit plugin can be used only with the Astra theme.
58
  1. Bulk edit settings.
59
  2. Astra Meta Settings which can be bulk edited.
60
 
 
61
  == Changelog ==
62
 
 
 
 
 
 
63
  = 1.0 =
64
  * Initial Release
65
  == Upgrade Notice ==
1
  === Astra Bulk Edit ===
2
  Contributors: brainstormforce
3
+ Donate link: https://www.paypal.me/BrainstormForce
4
  Tags: bulk edit Astra meta settings, Astra meta settings, meta settings bulk edit, wordpress bulk edit plugin, page bulk edit, post bulk edit
5
  Requires at least: 4.4
6
+ Tested up to: 5.1
7
+ Stable tag: 1.1.0
8
  Requires PHP: 5.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
58
  1. Bulk edit settings.
59
  2. Astra Meta Settings which can be bulk edited.
60
 
61
+
62
  == Changelog ==
63
 
64
+ = 1.1.0 =
65
+ * New: Added Astra Pro 'Transparent Header' addon meta box support in bulk edit.
66
+ * New: Added Astra Pro 'Page Header' addon meta box support in bulk edit.
67
+ * New: Added Astra Pro 'Sticky Header' addon meta box support in bulk edit.
68
+
69
  = 1.0 =
70
  * Initial Release
71
  == Upgrade Notice ==