Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Bulk select not working with WP-6.5 #62

Merged
merged 2 commits into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.2.10
**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.2.10 ###
- 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.2.10
* 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.2.10' );
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.2.10
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.2.10 ###
- 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
Loading