Version Description
- Fix: Quick Edit not working with WooCommerce plugin.
Download this release
Release Info
Developer | Nikschavan |
Plugin | Astra Bulk Edit |
Version | 1.2.1 |
Comparing to | |
See all releases |
Code changes from version 1.2.0 to 1.2.1
- assets/js/astra-admin.js +0 -1
- astra-bulk-edit.php +2 -2
- classes/class-astra-blk-meta-boxes-bulk-edit.php +4 -1
- readme.txt +4 -1
assets/js/astra-admin.js
CHANGED
@@ -157,7 +157,6 @@ jQuery(document).ready(function($){
|
|
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();
|
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 |
if( 'disabled' == above_header_display && 'disabled' == main_header_display && 'disabled' == below_header_display ){
|
161 |
$(".stick-header-meta-visibility").hide();
|
162 |
$(".sticky-header-above-stick-meta").hide();
|
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.2.
|
7 |
* Author: Brainstorm Force
|
8 |
* Author URI: https://www.brainstormforce.com
|
9 |
* Domain Path: /languages
|
@@ -15,7 +15,7 @@
|
|
15 |
/**
|
16 |
* Set constants.
|
17 |
*/
|
18 |
-
define( 'ASTRA_BLK_VER', '1.2.
|
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 ) );
|
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.1
|
7 |
* Author: Brainstorm Force
|
8 |
* Author URI: https://www.brainstormforce.com
|
9 |
* Domain Path: /languages
|
15 |
/**
|
16 |
* Set constants.
|
17 |
*/
|
18 |
+
define( 'ASTRA_BLK_VER', '1.2.1' );
|
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
@@ -601,7 +601,10 @@ if ( ! class_exists( 'Astra_Blk_Meta_Boxes_Bulk_Edit' ) ) {
|
|
601 |
*/
|
602 |
function enqueue_admin_scripts_and_styles() {
|
603 |
wp_enqueue_style( 'astra-blk-admin', ASTRA_BLK_URI . 'assets/css/astra-admin.css', array(), ASTRA_BLK_VER );
|
604 |
-
|
|
|
|
|
|
|
605 |
}
|
606 |
}
|
607 |
}// End if().
|
601 |
*/
|
602 |
function enqueue_admin_scripts_and_styles() {
|
603 |
wp_enqueue_style( 'astra-blk-admin', ASTRA_BLK_URI . 'assets/css/astra-admin.css', array(), ASTRA_BLK_VER );
|
604 |
+
|
605 |
+
if ( ! is_post_type_archive( 'product' ) ) {
|
606 |
+
wp_enqueue_script( 'astra-blk-admin', ASTRA_BLK_URI . 'assets/js/astra-admin.js', array( 'jquery', 'inline-edit-post' ), ASTRA_BLK_VER );
|
607 |
+
}
|
608 |
}
|
609 |
}
|
610 |
}// End if().
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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.
|
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,9 @@ Astra Bulk Edit plugin can be used only with the Astra theme.
|
|
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.
|
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.1
|
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.1 =
|
65 |
+
- Fix: Quick Edit not working with WooCommerce plugin.
|
66 |
+
|
67 |
= 1.2.0 =
|
68 |
- New: Added options to enable/disable Breadcrumbs, Above and Below Header.
|
69 |
- New: Introduced "No Change" option in Dropdown for all settings.
|