Astra Bulk Edit - Version 1.2.2

Version Description

  • Fix: CartFlows step template changes to default.
Download this release

Release Info

Developer patilvikasj
Plugin Icon 128x128 Astra Bulk Edit
Version 1.2.2
Comparing to
See all releases

Code changes from version 1.2.1 to 1.2.2

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.1
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.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 ) );
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.2
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.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 ) );
classes/class-astra-blk-meta-boxes-bulk-edit.php CHANGED
@@ -601,8 +601,9 @@ 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
- 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
  }
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
+ $post_type = get_post_type();
606
+ if ( 'product' !== $post_type && 'cartflows_flow' !== $post_type && 'cartflows_step' !== $post_type ) {
607
  wp_enqueue_script( 'astra-blk-admin', ASTRA_BLK_URI . 'assets/js/astra-admin.js', array( 'jquery', 'inline-edit-post' ), ASTRA_BLK_VER );
608
  }
609
  }
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.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,9 @@ Astra Bulk Edit plugin can be used only with the Astra theme.
61
 
62
  == Changelog ==
63
 
 
 
 
64
  = 1.2.1 =
65
  - Fix: Quick Edit not working with WooCommerce plugin.
66
 
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.2
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.2 =
65
+ - Fix: CartFlows step template changes to default.
66
+
67
  = 1.2.1 =
68
  - Fix: Quick Edit not working with WooCommerce plugin.
69