Version Description
- New: Added options to enable/disable Breadcrumbs, Above and Below Header.
- New: Introduced "No Change" option in Dropdown for all settings.
- Improvement: Converted Checkboxes to Dropdowns for settings.
Download this release
Release Info
Developer | patilvikasj |
Plugin | Astra Bulk Edit |
Version | 1.2.0 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.2.0
- assets/css/astra-admin.css +3 -2
- assets/js/astra-admin.js +70 -11
- astra-bulk-edit.php +5 -6
- classes/class-astra-blk-meta-boxes-bulk-edit.php +146 -47
- languages/astra-bulk-edit.pot +97 -42
- readme.txt +8 -3
assets/css/astra-admin.css
CHANGED
@@ -14,6 +14,7 @@
|
|
14 |
float: left;
|
15 |
}
|
16 |
|
17 |
-
#wpbody-content .quick-edit-row-page .astra-bulk-settings .inline-edit-col-left
|
18 |
-
|
|
|
19 |
}
|
14 |
float: left;
|
15 |
}
|
16 |
|
17 |
+
#wpbody-content .quick-edit-row-page .astra-bulk-settings .inline-edit-col-left,
|
18 |
+
#wpbody-content .quick-edit-row-post .astra-bulk-settings .inline-edit-col-left {
|
19 |
+
width: 25%;
|
20 |
}
|
assets/js/astra-admin.js
CHANGED
@@ -8,7 +8,6 @@ jQuery(document).ready(function($){
|
|
8 |
//Prepopulating our quick-edit post info
|
9 |
var $inline_editor = inlineEditPost.edit;
|
10 |
inlineEditPost.edit = function(id){
|
11 |
-
|
12 |
//call old copy
|
13 |
$inline_editor.apply( this, arguments);
|
14 |
|
@@ -36,10 +35,13 @@ jQuery(document).ready(function($){
|
|
36 |
var new_field = $row.find( '#' + field_name );
|
37 |
var new_field_type = new_field.attr('type');
|
38 |
var new_field_tag = new_field.prop("tagName");
|
39 |
-
|
40 |
|
41 |
if ( 'SELECT' == new_field_tag ) {
|
42 |
new_field.val( field_val );
|
|
|
|
|
|
|
|
|
43 |
}else if ( 'checkbox' == new_field_type ) {
|
44 |
|
45 |
if ( 'disabled' == field_val || 'on' == field_val ) {
|
@@ -49,6 +51,8 @@ jQuery(document).ready(function($){
|
|
49 |
});
|
50 |
|
51 |
toggleStickyHeader();
|
|
|
|
|
52 |
}
|
53 |
}
|
54 |
}
|
@@ -85,26 +89,81 @@ jQuery(document).ready(function($){
|
|
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 |
-
|
96 |
-
$( el ).parents( '.inline-edit-col' ).find(
|
97 |
-
$( el ).parents( '.inline-edit-col' ).find(
|
98 |
-
$( el ).parents( '.inline-edit-col' ).find(
|
99 |
} else {
|
100 |
-
$( el ).parents( '.inline-edit-col' ).find(
|
101 |
-
$( el ).parents( '.inline-edit-col' ).find(
|
102 |
-
$( el ).parents( '.inline-edit-col' ).find(
|
103 |
}
|
104 |
-
|
105 |
});
|
106 |
-
|
107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
}
|
109 |
|
110 |
});
|
8 |
//Prepopulating our quick-edit post info
|
9 |
var $inline_editor = inlineEditPost.edit;
|
10 |
inlineEditPost.edit = function(id){
|
|
|
11 |
//call old copy
|
12 |
$inline_editor.apply( this, arguments);
|
13 |
|
35 |
var new_field = $row.find( '#' + field_name );
|
36 |
var new_field_type = new_field.attr('type');
|
37 |
var new_field_tag = new_field.prop("tagName");
|
|
|
38 |
|
39 |
if ( 'SELECT' == new_field_tag ) {
|
40 |
new_field.val( field_val );
|
41 |
+
|
42 |
+
if ( '' == field_val && 'adv-header-id-meta' != field_name ) {
|
43 |
+
new_field.val( 'no-change' );
|
44 |
+
}
|
45 |
}else if ( 'checkbox' == new_field_type ) {
|
46 |
|
47 |
if ( 'disabled' == field_val || 'on' == field_val ) {
|
51 |
});
|
52 |
|
53 |
toggleStickyHeader();
|
54 |
+
toggleStickyHeaderOnLoad();
|
55 |
+
|
56 |
}
|
57 |
}
|
58 |
}
|
89 |
|
90 |
jQuery( ".inline-edit select[name=stick-header-meta]" ).on( "change", function(e) {
|
91 |
toggleStickyHeader();
|
92 |
+
|
93 |
});
|
94 |
toggleStickyHeader();
|
95 |
|
96 |
+
|
97 |
+
var sticky_above_header = 'false';
|
98 |
+
var sticky_main_header = 'false';
|
99 |
+
var sticky_below_header = 'false';
|
100 |
function toggleStickyHeader() {
|
101 |
|
102 |
$( 'select[name=stick-header-meta]' ).each(function(index, el) {
|
103 |
var value = $( el ).val() || '';
|
104 |
+
if ( 'enabled' == value ) {
|
105 |
+
$( el ).parents( '.inline-edit-col' ).find(".sticky-header-above-stick-meta").slideDown();
|
106 |
+
$( el ).parents( '.inline-edit-col' ).find(".sticky-header-main-stick-meta").slideDown();
|
107 |
+
$( el ).parents( '.inline-edit-col' ).find(".sticky-header-below-stick-meta").slideDown();
|
108 |
} else {
|
109 |
+
$( el ).parents( '.inline-edit-col' ).find(".sticky-header-above-stick-meta").slideUp();
|
110 |
+
$( el ).parents( '.inline-edit-col' ).find(".sticky-header-main-stick-meta").slideUp();
|
111 |
+
$( el ).parents( '.inline-edit-col' ).find(".sticky-header-below-stick-meta").slideUp();
|
112 |
}
|
|
|
113 |
});
|
|
|
114 |
|
115 |
+
|
116 |
+
$('#ast-above-header-display').on("change", function ( e ) {
|
117 |
+
var value = $( e.target ).val() || '';
|
118 |
+
if ( 'disabled' == value ) {
|
119 |
+
toggleStickyHeaderOnLoad();
|
120 |
+
sticky_above_header = 'true';
|
121 |
+
$(".sticky-header-above-stick-meta").slideUp();
|
122 |
+
} else {
|
123 |
+
sticky_above_header = 'false';
|
124 |
+
$(".stick-header-meta-visibility").show();
|
125 |
+
$(".sticky-header-above-stick-meta").slideDown();
|
126 |
+
}
|
127 |
+
});
|
128 |
+
|
129 |
+
$('#ast-main-header-display').on("change", function ( e ) {
|
130 |
+
var value = $( e.target ).val() || '';
|
131 |
+
if ( 'disabled' == value ) {
|
132 |
+
toggleStickyHeaderOnLoad();
|
133 |
+
sticky_main_header = 'true';
|
134 |
+
$(".sticky-header-main-stick-meta").slideUp();
|
135 |
+
} else {
|
136 |
+
sticky_main_header = 'false';
|
137 |
+
$(".stick-header-meta-visibility").show();
|
138 |
+
$(".sticky-header-main-stick-meta").slideDown();
|
139 |
+
}
|
140 |
+
});
|
141 |
+
|
142 |
+
$('#ast-below-header-display').on("change", function ( e ) {
|
143 |
+
var value = $( e.target ).val() || '';
|
144 |
+
if ( 'disabled' == value ) {
|
145 |
+
toggleStickyHeaderOnLoad();
|
146 |
+
sticky_below_header = 'true';
|
147 |
+
$(".sticky-header-below-stick-meta").slideUp();
|
148 |
+
} else {
|
149 |
+
sticky_below_header = 'false';
|
150 |
+
$(".stick-header-meta-visibility").show();
|
151 |
+
$(".sticky-header-below-stick-meta").slideDown();
|
152 |
+
}
|
153 |
+
});
|
154 |
+
}
|
155 |
+
|
156 |
+
function toggleStickyHeaderOnLoad() {
|
157 |
+
var above_header_display = $( '#ast-above-header-display' ).val();
|
158 |
+
var main_header_display = $( '#ast-main-header-display' ).val();
|
159 |
+
var below_header_display = $( '#ast-below-header-display' ).val();
|
160 |
+
console.log(above_header_display);
|
161 |
+
if( 'disabled' == above_header_display && 'disabled' == main_header_display && 'disabled' == below_header_display ){
|
162 |
+
$(".stick-header-meta-visibility").hide();
|
163 |
+
$(".sticky-header-above-stick-meta").hide();
|
164 |
+
$(".sticky-header-main-stick-meta").hide();
|
165 |
+
$(".sticky-header-below-stick-meta").hide();
|
166 |
+
}
|
167 |
}
|
168 |
|
169 |
});
|
astra-bulk-edit.php
CHANGED
@@ -1,22 +1,21 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Astra Bulk Edit
|
4 |
-
* Plugin URI:
|
5 |
* Description: Easier way to edit Astra meta options in bulk.
|
6 |
-
* Version: 1.
|
7 |
* Author: Brainstorm Force
|
8 |
-
* Author URI:
|
9 |
* Domain Path: /languages
|
10 |
* Text Domain: astra-bulk-edit
|
11 |
-
* Version: 1.0.0
|
12 |
*
|
13 |
-
* @package
|
14 |
*/
|
15 |
|
16 |
/**
|
17 |
* Set constants.
|
18 |
*/
|
19 |
-
define( 'ASTRA_BLK_VER',
|
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 ) );
|
1 |
<?php
|
2 |
/**
|
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.2.0
|
7 |
* Author: Brainstorm Force
|
8 |
+
* Author URI: https://www.brainstormforce.com
|
9 |
* Domain Path: /languages
|
10 |
* Text Domain: astra-bulk-edit
|
|
|
11 |
*
|
12 |
+
* @package Astra Bulk Edit
|
13 |
*/
|
14 |
|
15 |
/**
|
16 |
* Set constants.
|
17 |
*/
|
18 |
+
define( 'ASTRA_BLK_VER', '1.2.0' );
|
19 |
define( 'ASTRA_BLK_FILE', __FILE__ );
|
20 |
define( 'ASTRA_BLK_BASE', plugin_basename( ASTRA_BLK_FILE ) );
|
21 |
define( 'ASTRA_BLK_DIR', plugin_dir_path( ASTRA_BLK_FILE ) );
|
classes/class-astra-blk-meta-boxes-bulk-edit.php
CHANGED
@@ -98,45 +98,68 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
98 |
*/
|
99 |
self::$meta_option = apply_filters(
|
100 |
'astra_meta_box_bulk_edit_options', array(
|
|
|
|
|
|
|
|
|
101 |
'ast-main-header-display' => array(
|
|
|
|
|
|
|
|
|
|
|
102 |
'sanitize' => 'FILTER_DEFAULT',
|
103 |
),
|
104 |
'ast-featured-img' => array(
|
|
|
105 |
'sanitize' => 'FILTER_DEFAULT',
|
106 |
),
|
107 |
'site-post-title' => array(
|
|
|
108 |
'sanitize' => 'FILTER_DEFAULT',
|
109 |
),
|
110 |
'site-sidebar-layout' => array(
|
111 |
-
'default' => '
|
112 |
'sanitize' => 'FILTER_DEFAULT',
|
113 |
),
|
114 |
'site-content-layout' => array(
|
115 |
-
'default' => '
|
116 |
'sanitize' => 'FILTER_DEFAULT',
|
117 |
),
|
118 |
'footer-sml-layout' => array(
|
|
|
119 |
'sanitize' => 'FILTER_DEFAULT',
|
120 |
),
|
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 |
)
|
@@ -197,11 +220,9 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
197 |
break;
|
198 |
}
|
199 |
|
200 |
-
// Store values.
|
201 |
-
if ( $meta_value ) {
|
202 |
update_post_meta( $post_id, $key, $meta_value );
|
203 |
-
} else {
|
204 |
-
delete_post_meta( $post_id, $key );
|
205 |
}
|
206 |
}
|
207 |
|
@@ -247,11 +268,9 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
247 |
break;
|
248 |
}
|
249 |
|
250 |
-
// Store values.
|
251 |
-
if ( $meta_value ) {
|
252 |
update_post_meta( $post_id, $key, $meta_value );
|
253 |
-
} else {
|
254 |
-
delete_post_meta( $post_id, $key );
|
255 |
}
|
256 |
}
|
257 |
}
|
@@ -335,13 +354,14 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
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
|
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="
|
|
|
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>
|
347 |
<option value="no-sidebar"><?php _e( 'No Sidebar', 'astra-bulk-edit' ); ?></option>
|
@@ -351,8 +371,9 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
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="
|
355 |
-
<option value="
|
|
|
356 |
<option value="content-boxed-container"><?php _e( 'Content Boxed', 'astra-bulk-edit' ); ?></option>
|
357 |
<option value="plain-container"><?php _e( 'Full Width / Contained', 'astra-bulk-edit' ); ?></option>
|
358 |
<option value="page-builder"><?php _e( 'Full Width / Stretched', 'astra-bulk-edit' ); ?></option>
|
@@ -362,20 +383,89 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
362 |
<?php do_action( 'astra_meta_bulk_edit_left_bottom' ); ?>
|
363 |
</div>
|
364 |
|
365 |
-
<div class="ast-float-left inline-edit-col-
|
366 |
<label class="inline-edit" for="ast-main-header-display">
|
367 |
-
<
|
368 |
-
|
|
|
|
|
|
|
|
|
369 |
</label>
|
370 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
<label class="inline-edit" for="site-post-title">
|
372 |
-
<
|
373 |
-
|
|
|
|
|
|
|
|
|
374 |
</label>
|
375 |
|
376 |
<label class="inline-edit" for="ast-featured-img">
|
377 |
-
<
|
378 |
-
|
|
|
|
|
|
|
|
|
379 |
</label>
|
380 |
|
381 |
<?php
|
@@ -383,8 +473,12 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
383 |
if ( 'disabled' != $footer_adv_layout ) {
|
384 |
?>
|
385 |
<label class="inline-edit" for="footer-adv-display">
|
386 |
-
<
|
387 |
-
|
|
|
|
|
|
|
|
|
388 |
</label>
|
389 |
<?php } ?>
|
390 |
|
@@ -393,8 +487,12 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
393 |
if ( 'disabled' != $footer_sml_layout ) {
|
394 |
?>
|
395 |
<label class="inline-edit" for="footer-sml-layout">
|
396 |
-
<
|
397 |
-
|
|
|
|
|
|
|
|
|
398 |
</label>
|
399 |
<?php } ?>
|
400 |
|
@@ -404,17 +502,6 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
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
|
@@ -439,9 +526,10 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
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>
|
@@ -453,9 +541,13 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
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 |
-
<
|
|
|
|
|
|
|
|
|
459 |
</label>
|
460 |
<?php
|
461 |
}
|
@@ -464,9 +556,13 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
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 |
-
<
|
|
|
|
|
|
|
|
|
470 |
</label>
|
471 |
<?php
|
472 |
}
|
@@ -475,15 +571,18 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
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
|
480 |
-
<
|
|
|
|
|
|
|
|
|
481 |
</label>
|
482 |
<?php
|
483 |
}
|
484 |
}
|
485 |
?>
|
486 |
-
|
487 |
</div>
|
488 |
<?php endif; ?>
|
489 |
|
@@ -492,7 +591,7 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
492 |
</div>
|
493 |
|
494 |
</div>
|
495 |
-
</fieldset
|
496 |
<?php
|
497 |
}
|
498 |
}
|
98 |
*/
|
99 |
self::$meta_option = apply_filters(
|
100 |
'astra_meta_box_bulk_edit_options', array(
|
101 |
+
'ast-above-header-display' => array(
|
102 |
+
'default' => 'no-change',
|
103 |
+
'sanitize' => 'FILTER_DEFAULT',
|
104 |
+
),
|
105 |
'ast-main-header-display' => array(
|
106 |
+
'default' => 'no-change',
|
107 |
+
'sanitize' => 'FILTER_DEFAULT',
|
108 |
+
),
|
109 |
+
'ast-below-header-display' => array(
|
110 |
+
'default' => 'no-change',
|
111 |
'sanitize' => 'FILTER_DEFAULT',
|
112 |
),
|
113 |
'ast-featured-img' => array(
|
114 |
+
'default' => 'no-change',
|
115 |
'sanitize' => 'FILTER_DEFAULT',
|
116 |
),
|
117 |
'site-post-title' => array(
|
118 |
+
'default' => 'no-change',
|
119 |
'sanitize' => 'FILTER_DEFAULT',
|
120 |
),
|
121 |
'site-sidebar-layout' => array(
|
122 |
+
'default' => 'no-change',
|
123 |
'sanitize' => 'FILTER_DEFAULT',
|
124 |
),
|
125 |
'site-content-layout' => array(
|
126 |
+
'default' => 'no-change',
|
127 |
'sanitize' => 'FILTER_DEFAULT',
|
128 |
),
|
129 |
'footer-sml-layout' => array(
|
130 |
+
'default' => 'no-change',
|
131 |
'sanitize' => 'FILTER_DEFAULT',
|
132 |
),
|
133 |
'footer-adv-display' => array(
|
134 |
+
'default' => 'no-change',
|
135 |
'sanitize' => 'FILTER_DEFAULT',
|
136 |
),
|
137 |
'theme-transparent-header-meta' => array(
|
138 |
+
'default' => 'no-change',
|
139 |
'sanitize' => 'FILTER_DEFAULT',
|
140 |
),
|
141 |
'adv-header-id-meta' => array(
|
142 |
+
// 'default' => 'SELECT',
|
143 |
'sanitize' => 'FILTER_DEFAULT',
|
144 |
),
|
145 |
'stick-header-meta' => array(
|
146 |
+
'default' => 'no-change',
|
147 |
'sanitize' => 'FILTER_DEFAULT',
|
148 |
),
|
149 |
'header-above-stick-meta' => array(
|
150 |
+
'default' => 'no-change',
|
151 |
'sanitize' => 'FILTER_DEFAULT',
|
152 |
),
|
153 |
'header-main-stick-meta' => array(
|
154 |
+
'default' => 'no-change',
|
155 |
'sanitize' => 'FILTER_DEFAULT',
|
156 |
),
|
157 |
'header-below-stick-meta' => array(
|
158 |
+
'default' => 'no-change',
|
159 |
+
'sanitize' => 'FILTER_DEFAULT',
|
160 |
+
),
|
161 |
+
'ast-breadcrumbs-content' => array(
|
162 |
+
'default' => 'no-change',
|
163 |
'sanitize' => 'FILTER_DEFAULT',
|
164 |
),
|
165 |
)
|
220 |
break;
|
221 |
}
|
222 |
|
223 |
+
// Store values.
|
224 |
+
if ( 'no-change' !== $meta_value ) {
|
225 |
update_post_meta( $post_id, $key, $meta_value );
|
|
|
|
|
226 |
}
|
227 |
}
|
228 |
|
268 |
break;
|
269 |
}
|
270 |
|
271 |
+
// Store values.
|
272 |
+
if ( 'no-change' !== $meta_value ) {
|
273 |
update_post_meta( $post_id, $key, $meta_value );
|
|
|
|
|
274 |
}
|
275 |
}
|
276 |
}
|
354 |
if ( 'astra-settings' == $column ) { ?>
|
355 |
<fieldset class="astra-bulk-settings inline-edit-col ">
|
356 |
<div class="inline-edit-col wp-clearfix">
|
357 |
+
<h4 class="title"><?php esc_html_e( 'Astra Settings', 'astra-bulk-edit' ); ?></h4>
|
358 |
|
359 |
<div class="ast-float-left inline-edit-col-left wp-clearfix">
|
360 |
<label class="inline-edit" for="site-sidebar-layout">
|
361 |
<span class="title"><?php esc_html_e( 'Sidebar', 'astra-bulk-edit' ); ?></span>
|
362 |
<select name="site-sidebar-layout" id="site-sidebar-layout">
|
363 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
364 |
+
<option value="default"><?php _e( 'Customizer Setting', 'astra-bulk-edit' ); ?></option>
|
365 |
<option value="left-sidebar"><?php _e( 'Left Sidebar', 'astra-bulk-edit' ); ?></option>
|
366 |
<option value="right-sidebar"><?php _e( 'Right Sidebar', 'astra-bulk-edit' ); ?></option>
|
367 |
<option value="no-sidebar"><?php _e( 'No Sidebar', 'astra-bulk-edit' ); ?></option>
|
371 |
<label class="inline-edit" for="site-content-layout">
|
372 |
<span class="title"><?php esc_html_e( 'Content Layout', 'astra-bulk-edit' ); ?></span>
|
373 |
<select name="site-content-layout" id="site-content-layout">
|
374 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
375 |
+
<option value="default"><?php _e( 'Customizer Setting', 'astra-bulk-edit' ); ?></option>
|
376 |
+
<option value="boxed-container"><?php _e( 'Boxed', 'astra-bulk-edit' ); ?></option>
|
377 |
<option value="content-boxed-container"><?php _e( 'Content Boxed', 'astra-bulk-edit' ); ?></option>
|
378 |
<option value="plain-container"><?php _e( 'Full Width / Contained', 'astra-bulk-edit' ); ?></option>
|
379 |
<option value="page-builder"><?php _e( 'Full Width / Stretched', 'astra-bulk-edit' ); ?></option>
|
383 |
<?php do_action( 'astra_meta_bulk_edit_left_bottom' ); ?>
|
384 |
</div>
|
385 |
|
386 |
+
<div class="ast-float-left inline-edit-col-left wp-clearfix" id="center-col">
|
387 |
<label class="inline-edit" for="ast-main-header-display">
|
388 |
+
<span class="title"><?php esc_html_e( 'Primary Header', 'astra-bulk-edit' ); ?></span>
|
389 |
+
<select name="ast-main-header-display" id="ast-main-header-display">
|
390 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
391 |
+
<option value="enabled"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
392 |
+
<option value="disabled"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
393 |
+
</select>
|
394 |
</label>
|
395 |
+
<?php if ( is_callable( 'Astra_Ext_Extension::is_active' ) ) : ?>
|
396 |
+
<?php
|
397 |
+
if ( Astra_Ext_Extension::is_active( 'header-sections' ) ) {
|
398 |
+
$above_header_layout = astra_get_option( 'above-header-layout' );
|
399 |
+
if ( 'disabled' != $above_header_layout ) {
|
400 |
+
?>
|
401 |
+
<label class="inline-edit" for="ast-above-header-display">
|
402 |
+
<span class="title"><?php esc_html_e( 'Above Header', 'astra-bulk-edit' ); ?></span>
|
403 |
+
<select name="ast-above-header-display" id="ast-above-header-display">
|
404 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
405 |
+
<option value="enabled"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
406 |
+
<option value="disabled"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
407 |
+
</select>
|
408 |
+
</label>
|
409 |
+
<?php } ?>
|
410 |
+
<?php
|
411 |
+
$below_header_layout = astra_get_option( 'below-header-layout' );
|
412 |
+
if ( 'disabled' != $below_header_layout ) {
|
413 |
+
?>
|
414 |
+
<label class="inline-edit" for="ast-below-header-display">
|
415 |
+
<span class="title"><?php esc_html_e( 'Below Header', 'astra-bulk-edit' ); ?></span>
|
416 |
+
<select name="ast-below-header-display" id="ast-below-header-display">
|
417 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
418 |
+
<option value="enabled"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
419 |
+
<option value="disabled"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
420 |
+
</select>
|
421 |
+
</label>
|
422 |
+
<?php }
|
423 |
+
}?>
|
424 |
+
<?php endif; ?>
|
425 |
+
|
426 |
+
<?php $ast_theme_transparent_header = astra_get_option( 'theme-transparent-header-meta' );
|
427 |
+
if ( 'disabled' != $ast_theme_transparent_header ) { ?>
|
428 |
+
<label class="inline-edit" for="theme-transparent-header-meta">
|
429 |
+
<span class="title"><?php esc_html_e( 'Transparent Header', 'astra-bulk-edit' ); ?></span>
|
430 |
+
<select name="theme-transparent-header-meta" id="theme-transparent-header-meta">
|
431 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
432 |
+
<option value="default"> <?php esc_html_e( 'Customizer Setting', 'astra-bulk-edit' ); ?> </option>
|
433 |
+
<option value="enabled"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
434 |
+
<option value="disabled"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
435 |
+
</select>
|
436 |
+
</label>
|
437 |
+
<?php } ?>
|
438 |
+
<?php
|
439 |
+
// Breadcrumbs.
|
440 |
+
$ast_breadcrumbs_content = astra_get_option( 'ast-breadcrumbs-content' );
|
441 |
+
if ( 'disabled' != $ast_breadcrumbs_content && 'none' !== astra_get_option( 'breadcrumb-position' ) ) {
|
442 |
+
?>
|
443 |
+
<label class="inline-edit" for="ast-breadcrumbs-content">
|
444 |
+
<span class="title"><?php esc_html_e( 'Breadcrumbs', 'astra-bulk-edit' ); ?></span>
|
445 |
+
<select name="ast-breadcrumbs-content" id="ast-breadcrumbs-content">
|
446 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
447 |
+
<option value="enabled"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
448 |
+
<option value="disabled"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
449 |
+
</select>
|
450 |
+
</label>
|
451 |
+
<?php
|
452 |
+
} ?>
|
453 |
<label class="inline-edit" for="site-post-title">
|
454 |
+
<span class="title"><?php esc_html_e( 'Title', 'astra-bulk-edit' ); ?></span>
|
455 |
+
<select name="site-post-title" id="site-post-title">
|
456 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
457 |
+
<option value="enabled"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
458 |
+
<option value="disabled"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
459 |
+
</select>
|
460 |
</label>
|
461 |
|
462 |
<label class="inline-edit" for="ast-featured-img">
|
463 |
+
<span class="title"><?php esc_html_e( 'Featured Image', 'astra-bulk-edit' ); ?></span>
|
464 |
+
<select name="ast-featured-img" id="ast-featured-img">
|
465 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
466 |
+
<option value="enabled"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
467 |
+
<option value="disabled"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
468 |
+
</select>
|
469 |
</label>
|
470 |
|
471 |
<?php
|
473 |
if ( 'disabled' != $footer_adv_layout ) {
|
474 |
?>
|
475 |
<label class="inline-edit" for="footer-adv-display">
|
476 |
+
<span class="title"><?php esc_html_e( 'Footer Widgets', 'astra-bulk-edit' ); ?></span>
|
477 |
+
<select name="footer-adv-display" id="footer-adv-display">
|
478 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
479 |
+
<option value="enabled"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
480 |
+
<option value="disabled"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
481 |
+
</select>
|
482 |
</label>
|
483 |
<?php } ?>
|
484 |
|
487 |
if ( 'disabled' != $footer_sml_layout ) {
|
488 |
?>
|
489 |
<label class="inline-edit" for="footer-sml-layout">
|
490 |
+
<span class="title"><?php esc_html_e( 'Footer Bar', 'astra-bulk-edit' ); ?></span>
|
491 |
+
<select name="footer-sml-layout" id="footer-sml-layout">
|
492 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
493 |
+
<option value="enabled"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
494 |
+
<option value="disabled"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
495 |
+
</select>
|
496 |
</label>
|
497 |
<?php } ?>
|
498 |
|
502 |
<div class="ast-float-left inline-edit-col-left wp-clearfix">
|
503 |
|
504 |
<?php if ( is_callable( 'Astra_Ext_Extension::is_active' ) ) : ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
|
506 |
<?php if ( Astra_Ext_Extension::is_active( 'advanced-headers' ) ) : ?>
|
507 |
<?php
|
526 |
<?php endif; ?>
|
527 |
|
528 |
<?php if ( Astra_Ext_Extension::is_active( 'sticky-header' ) ) : ?>
|
529 |
+
<label class="inline-edit stick-header-meta-visibility" for="stick-header-meta">
|
530 |
<span class="title"><?php esc_html_e( 'Sticky Header', 'astra-bulk-edit' ); ?></span>
|
531 |
<select name="stick-header-meta" id="stick-header-meta">
|
532 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
533 |
<option value="default"><?php esc_html_e( 'Customizer Setting', 'astra-bulk-edit' ); ?> </option>
|
534 |
<option value="enabled"><?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
535 |
<option value="disabled"><?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
541 |
// Above Header Layout.
|
542 |
$above_header_layout = astra_get_option( 'above-header-layout' );
|
543 |
if ( 'disabled' != $above_header_layout ) { ?>
|
544 |
+
<label class="inline-edit sticky-header-above-stick-meta" for="header-above-stick-meta">
|
545 |
<span class="title"><?php esc_html_e( 'Stick Above Header', 'astra-bulk-edit' ); ?></span>
|
546 |
+
<select name="header-above-stick-meta" id="header-above-stick-meta">
|
547 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
548 |
+
<option value="on"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
549 |
+
<option value="off"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
550 |
+
</select>
|
551 |
</label>
|
552 |
<?php
|
553 |
}
|
556 |
$header_layouts = astra_get_option( 'header-layouts' );
|
557 |
if ( 'header-main-layout-5' != $header_layouts ) {
|
558 |
?>
|
559 |
+
<label class="inline-edit sticky-header-main-stick-meta" for="header-main-stick-meta">
|
560 |
<span class="title"><?php esc_html_e( 'Stick Primary Header', 'astra-bulk-edit' ); ?></span>
|
561 |
+
<select name="header-main-stick-meta" id="header-main-stick-meta">
|
562 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
563 |
+
<option value="enabled"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
564 |
+
<option value="disabled"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
565 |
+
</select>
|
566 |
</label>
|
567 |
<?php
|
568 |
}
|
571 |
$below_header_layout = astra_get_option( 'below-header-layout' );
|
572 |
if ( 'disabled' != $below_header_layout ) {
|
573 |
?>
|
574 |
+
<label class="inline-edit sticky-header-below-stick-meta" for="header-below-stick-meta">
|
575 |
+
<span class="title"><?php esc_html_e( 'Stick Below Header', 'astra-bulk-edit' ); ?></span>
|
576 |
+
<select name="header-below-stick-meta" id="header-below-stick-meta">
|
577 |
+
<option value="no-change" selected="selected"><?php _e( '— No Change —', 'astra-bulk-edit' ); ?></option>
|
578 |
+
<option value="on"> <?php esc_html_e( 'Enabled', 'astra-bulk-edit' ); ?> </option>
|
579 |
+
<option value="off"> <?php esc_html_e( 'Disabled', 'astra-bulk-edit' ); ?> </option>
|
580 |
+
</select>
|
581 |
</label>
|
582 |
<?php
|
583 |
}
|
584 |
}
|
585 |
?>
|
|
|
586 |
</div>
|
587 |
<?php endif; ?>
|
588 |
|
591 |
</div>
|
592 |
|
593 |
</div>
|
594 |
+
</fieldset>
|
595 |
<?php
|
596 |
}
|
597 |
}
|
languages/astra-bulk-edit.pot
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
# Copyright (C)
|
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:
|
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:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
"Language: en\n"
|
@@ -22,110 +22,165 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-Bookmarks: \n"
|
24 |
"X-Textdomain-Support: yes\n"
|
25 |
-
"X-Generator: grunt-wp-
|
26 |
|
27 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
28 |
-
msgid "Astra
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
32 |
msgid "Sidebar"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
36 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
37 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
38 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
msgid "Customizer Setting"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
43 |
msgid "Left Sidebar"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
47 |
msgid "Right Sidebar"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
51 |
msgid "No Sidebar"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
55 |
msgid "Content Layout"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
59 |
msgid "Boxed"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
63 |
msgid "Content Boxed"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
67 |
msgid "Full Width / Contained"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
71 |
msgid "Full Width / Stretched"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
75 |
-
msgid "
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
83 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
87 |
-
msgid "
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
91 |
-
msgid "
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
95 |
msgid "Transparent Header"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
99 |
-
|
100 |
-
msgid "Enabled"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
104 |
-
|
105 |
-
|
|
|
|
|
|
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "No Page Headers Found"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
113 |
msgid "Page Header"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
117 |
msgid "Sticky Header"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
121 |
msgid "Stick Above Header"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:
|
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 ""
|
1 |
+
# Copyright (C) 2019 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: 2019-08-21 12:06:33+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: 2019-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"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-Bookmarks: \n"
|
24 |
"X-Textdomain-Support: yes\n"
|
25 |
+
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
26 |
|
27 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:357
|
28 |
+
msgid "Astra Settings"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:361
|
32 |
msgid "Sidebar"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:363
|
36 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:374
|
37 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:390
|
38 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:404
|
39 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:417
|
40 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:431
|
41 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:446
|
42 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:456
|
43 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:465
|
44 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:478
|
45 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:492
|
46 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:532
|
47 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:547
|
48 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:562
|
49 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:577
|
50 |
+
msgid "— No Change —"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:364
|
54 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:375
|
55 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:432
|
56 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:533
|
57 |
msgid "Customizer Setting"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:365
|
61 |
msgid "Left Sidebar"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:366
|
65 |
msgid "Right Sidebar"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:367
|
69 |
msgid "No Sidebar"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:372
|
73 |
msgid "Content Layout"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:376
|
77 |
msgid "Boxed"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:377
|
81 |
msgid "Content Boxed"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:378
|
85 |
msgid "Full Width / Contained"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:379
|
89 |
msgid "Full Width / Stretched"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:388
|
93 |
+
msgid "Primary Header"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:391
|
97 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:405
|
98 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:418
|
99 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:433
|
100 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:447
|
101 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:457
|
102 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:466
|
103 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:479
|
104 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:493
|
105 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:534
|
106 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:548
|
107 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:563
|
108 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:578
|
109 |
+
msgid "Enabled"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:392
|
113 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:406
|
114 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:419
|
115 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:434
|
116 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:448
|
117 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:458
|
118 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:467
|
119 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:480
|
120 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:494
|
121 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:535
|
122 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:549
|
123 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:564
|
124 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:579
|
125 |
+
msgid "Disabled"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:402
|
129 |
+
msgid "Above Header"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:415
|
133 |
+
msgid "Below Header"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:429
|
137 |
msgid "Transparent Header"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:444
|
141 |
+
msgid "Breadcrumbs"
|
|
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:454
|
145 |
+
msgid "Title"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:463
|
149 |
+
msgid "Featured Image"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:476
|
153 |
+
msgid "Footer Widgets"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:490
|
157 |
+
msgid "Footer Bar"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:512
|
161 |
msgid "No Page Headers Found"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:518
|
165 |
msgid "Page Header"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:530
|
169 |
msgid "Sticky Header"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:545
|
173 |
msgid "Stick Above Header"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:560
|
|
|
177 |
msgid "Stick Primary Header"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: classes/class-astra-blk-meta-boxes-bulk-edit.php:575
|
181 |
+
msgid "Stick Below Header"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
#. Plugin Name of the plugin/theme
|
185 |
msgid "Astra Bulk Edit"
|
186 |
msgstr ""
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ 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.
|
7 |
-
Stable tag: 1.
|
8 |
Requires PHP: 5.2
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -61,6 +61,11 @@ Astra Bulk Edit plugin can be used only with the Astra theme.
|
|
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.
|
@@ -68,4 +73,4 @@ Astra Bulk Edit plugin can be used only with the Astra theme.
|
|
68 |
|
69 |
= 1.0 =
|
70 |
* Initial Release
|
71 |
-
== Upgrade Notice ==
|
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.2
|
7 |
+
Stable tag: 1.2.0
|
8 |
Requires PHP: 5.2
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
61 |
|
62 |
== Changelog ==
|
63 |
|
64 |
+
= 1.2.0 =
|
65 |
+
- New: Added options to enable/disable Breadcrumbs, Above and Below Header.
|
66 |
+
- New: Introduced "No Change" option in Dropdown for all settings.
|
67 |
+
- Improvement: Converted Checkboxes to Dropdowns for settings.
|
68 |
+
|
69 |
= 1.1.0 =
|
70 |
* New: Added Astra Pro 'Transparent Header' addon meta box support in bulk edit.
|
71 |
* New: Added Astra Pro 'Page Header' addon meta box support in bulk edit.
|
73 |
|
74 |
= 1.0 =
|
75 |
* Initial Release
|
76 |
+
== Upgrade Notice ==
|