Plugin Directory

Changeset 2366790


Ignore:
Timestamp:
08/21/2020 08:44:14 PM (6 years ago)
Author:
frile
Message:

version 3.1 - WP 5.5 support

Location:
bulk-remove-posts-from-category
Files:
8 added
3 edited

Legend:

Unmodified
Added
Removed
  • bulk-remove-posts-from-category/trunk/js/wpbulkremove.js

    r2244629 r2366790  
    3434jQuery(function($){
    3535    $( 'body' ).on( 'click', 'input[name="bulk_edit"]', function() {
    36  
     36       
    3737        $( this ).after('<span class="spinner is-active"></span>');
    3838 
     
    4040        var $bulktax = wpbulkremove.wpbulkremove_tax;
    4141        var bulk_edit_row = $( 'tr#bulk-edit' );
    42         remcat = bulk_edit_row.find( 'input[name="remove_cat"]' ).attr('checked') ? 1 : 0;
    43        
     42        remcat = bulk_edit_row.find( 'input[name="remove_cat"]' ).is(':checked') ? 1 : 0;
     43   
    4444        if(remcat == 1){
    4545                post_ids = new Array();
     
    5858                    url: ajaxurl,
    5959                    type: 'POST',
    60                     async: false,
     60                    async: true,
    6161                    cache: false,
    6262                    data: {
     
    6767                        type: $bulktype,
    6868                        taxonomy: $bulktax
    69                     }
     69                    }               
    7070                });
    7171        }
  • bulk-remove-posts-from-category/trunk/readme.txt

    r2244629 r2366790  
    44Tags: post categories, bulk edit, bulk remove, product categories
    55Requires at least: 4.6
    6 Tested up to: 5.3.2
    7 Stable tag: 3.0
     6Tested up to: 5.5
     7Stable tag: 3.1
     8WC tested up to: 4.4.1
    89License: GPLv2 or later
    910License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3839== Changelog ==
    3940
     41= 3.1 =
     42* WordPress 5.5 compatibility
     43
    4044= 3.0 =
    4145* Custom Post Type support
  • bulk-remove-posts-from-category/trunk/wpbulkremove.php

    r2244629 r2366790  
    77 * Plugin URI:   https://masterns-studio.com/code-factory/wordpress-plugin/bulk-remove-from-category/
    88 * Description: Bulk remove posts from category
    9  * Version: 3.0
     9 * Version: 3.1
    1010 * Author: MasterNs
    1111 * Author URI: https://masterns-studio.com/
    1212 * License: GPLv2 or later
    1313 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    14  * Tested up to: 5.3.2
     14 * Tested up to: 5.5
    1515 * Text Domain: bulk-remove-posts-from-category
    1616 * Domain Path: languages/
    17   *
     17 *
     18 * WC tested up to: 4.4.1
     19 *
    1820 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
    1921 * General Public License version 2, as published by the Free Software Foundation. You may NOT assume
Note: See TracChangeset for help on using the changeset viewer.