Skip to content

Commit

Permalink
Fix: Bulk select not working with WP-6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
garvits-bsf committed Mar 25, 2024
1 parent f5b4cbd commit 6bf3712
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
**Donate link:** https://www.paypal.me/BrainstormForce
**Tags:** bulk edit Astra meta settings, Astra meta settings, meta settings bulk edit, wordpress bulk edit plugin, page bulk edit, post bulk edit
**Requires at least:** 4.4
**Tested up to:** 6.4
**Stable tag:** 1.2.9
**Tested up to:** 6.5
**Stable tag:** 1.3.0
**Requires PHP:** 5.2
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -61,9 +61,12 @@ Astra Bulk Edit plugin can be used only with the Astra theme.

## Changelog ##

### 1.3.0 ###
- Fix: Compatibility issues with WordPress 6.5

### 1.2.9 ###
- Improvement: Compatibility with the Latest Astra Revamped Layout Options.
- fix: Few bulk edit settings were not working.
- Fix: Few bulk edit settings were not working.

### 1.2.8 ###
- Improved codebase for improved security. (Props - Patchstack)
Expand Down
4 changes: 2 additions & 2 deletions astra-bulk-edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Astra Bulk Edit
* Plugin URI: http://www.wpastra.com/pro/
* Description: Easier way to edit Astra meta options in bulk.
* Version: 1.2.9
* Version: 1.3.0
* Author: Brainstorm Force
* Author URI: https://www.brainstormforce.com
* Domain Path: /languages
Expand All @@ -19,7 +19,7 @@
/**
* Set constants.
*/
define( 'ASTRA_BLK_VER', '1.2.9' );
define( 'ASTRA_BLK_VER', '1.3.0' );
define( 'ASTRA_BLK_FILE', __FILE__ );
define( 'ASTRA_BLK_BASE', plugin_basename( ASTRA_BLK_FILE ) );
define( 'ASTRA_BLK_DIR', plugin_dir_path( ASTRA_BLK_FILE ) );
Expand Down
2 changes: 1 addition & 1 deletion classes/class-astra-blk-meta-boxes-bulk-edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ public function enqueue_admin_scripts_and_styles() {

$post_type = get_post_type();
if ( 'product' !== $post_type && 'cartflows_flow' !== $post_type && 'cartflows_step' !== $post_type ) {
wp_enqueue_script( 'astra-blk-admin', ASTRA_BLK_URI . 'assets/js/astra-admin.js', array( 'jquery', 'inline-edit-post' ), ASTRA_BLK_VER, false );
wp_enqueue_script( 'astra-blk-admin', ASTRA_BLK_URI . 'assets/js/astra-admin.js', array( 'jquery', 'inline-edit-post' ), ASTRA_BLK_VER, true );
wp_localize_script(
'astra-blk-admin',
'security',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "astra-bulk-edit",
"version": "1.2.2",
"version": "1.3.0",
"main": "Gruntfile.js",
"author": "",
"devDependencies": {
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: brainstormforce
Donate link: https://www.paypal.me/BrainstormForce
Tags: bulk edit Astra meta settings, Astra meta settings, meta settings bulk edit, wordpress bulk edit plugin, page bulk edit, post bulk edit
Requires at least: 4.4
Tested up to: 6.4
Stable tag: 1.2.9
Tested up to: 6.5
Stable tag: 1.3.0
Requires PHP: 5.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -61,6 +61,9 @@ Astra Bulk Edit plugin can be used only with the Astra theme.

== Changelog ==

### 1.3.0 ###
- Fix: Compatibility issues with WordPress 6.5

= 1.2.9 =
- Improvement: Compatibility with the Latest Astra Revamped Layout Options.
- fix: Few bulk edit settings were not working.
Expand Down

0 comments on commit 6bf3712

Please sign in to comment.