Plugin Directory

Changeset 3267559


Ignore:
Timestamp:
04/06/2025 09:03:16 PM (12 months ago)
Author:
cod24
Message:
  • Bugs fixes and improvements
Location:
cod24-shipping
Files:
26 added
7 edited

Legend:

Unmodified
Added
Removed
  • cod24-shipping/tags/4.0.1/assets/js/cod24-woo-admin.js

    r3255043 r3267559  
    246246    function getSelectedOrderIDs() {
    247247        var orderIDs = [];
    248         $('input[name="id[]"]:checked').each(function () {
     248        $('input[name="id[]"]:checked, input[name="post[]"]:checked').each(function () {
    249249            orderIDs.push($(this).val());
    250250        });
  • cod24-shipping/tags/4.0.2/assets/js/cod24-woo-admin.js

    r3257813 r3267559  
    246246    function getSelectedOrderIDs() {
    247247        var orderIDs = [];
    248         $('input[name="id[]"]:checked').each(function () {
     248        $('input[name="id[]"]:checked, input[name="post[]"]:checked').each(function () {
    249249            orderIDs.push($(this).val());
    250250        });
  • cod24-shipping/tags/4.0.3/assets/js/cod24-woo-admin.js

    r3264094 r3267559  
    246246    function getSelectedOrderIDs() {
    247247        var orderIDs = [];
    248         $('input[name="id[]"]:checked').each(function () {
     248        $('input[name="id[]"]:checked, input[name="post[]"]:checked').each(function () {
    249249            orderIDs.push($(this).val());
    250250        });
  • cod24-shipping/tags/4.0/assets/js/cod24-woo-admin.js

    r3254068 r3267559  
    246246    function getSelectedOrderIDs() {
    247247        var orderIDs = [];
    248         $('input[name="id[]"]:checked').each(function () {
     248        $('input[name="id[]"]:checked, input[name="post[]"]:checked').each(function () {
    249249            orderIDs.push($(this).val());
    250250        });
  • cod24-shipping/trunk/assets/js/cod24-woo-admin.js

    r3254068 r3267559  
    246246    function getSelectedOrderIDs() {
    247247        var orderIDs = [];
    248         $('input[name="id[]"]:checked').each(function () {
     248        $('input[name="id[]"]:checked, input[name="post[]"]:checked').each(function () {
    249249            orderIDs.push($(this).val());
    250250        });
  • cod24-shipping/trunk/cod24-shipping.php

    r3264094 r3267559  
    33Plugin Name: COD24 Shipping For Woocommerce
    44Description: This plugin is adding COD24 shipping methods to woocommerce.
    5 Version: 4.0.3
     5Version: 4.0.4
    66Author: COD24
    77Author URI: https://cod24.ir
     
    2727        public function __construct()
    2828        {
    29             define('COD24_PLUGIN_VERSION', '4.0.3');
     29            define('COD24_PLUGIN_VERSION', '4.0.4');
    3030            define('COD24_PLUGIN_DIR', plugin_dir_path(__FILE__));
    3131            define('COD24_PLUGIN_URL', plugin_dir_url(__FILE__));
  • cod24-shipping/trunk/readme.txt

    r3264094 r3267559  
    44Requires at least: 5.0
    55Tested up to: 6.7
    6 Stable tag: 4.0.3
     6Stable tag: 4.0.4
    77License: GPL-2.0+
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4343
    4444== Changelog ==
     45
     46= 4.0.4 =
     47* Bugs fixes and improvements
    4548
    4649= 4.0.3 =
Note: See TracChangeset for help on using the changeset viewer.