Plugin Directory

Changeset 3403900


Ignore:
Timestamp:
11/27/2025 09:03:21 AM (3 months ago)
Author:
boxodev
Message:

Update to version 0.0.65 from GitHub

Location:
boxo-return
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • boxo-return/tags/0.0.65/boxo-return.php

    r3394986 r3403900  
    22/*
    33* Plugin Name: BOXO Return
    4 * Version: 0.0.64
     4* Version: 0.0.65
    55* Requires at least: 6.5
    66* Requires PHP: 7.1
     
    2222}
    2323
    24 const BOXO_RETURN_PLUGIN_VERSION = "0.0.64";
     24const BOXO_RETURN_PLUGIN_VERSION = "0.0.65";
    2525
    2626include plugin_dir_path(__FILE__) . 'includes/constants.php';
  • boxo-return/tags/0.0.65/checkout/boxo-checkout.js

    r3394986 r3403900  
    2525            // If anything goes wrong, do not block the AJAX request.
    2626            try {
    27                 if (!options.url?.includes('wc-ajax=update_order_review')) {
     27                if (!options.url?.match(/(wc-ajax=update_order_review|wc-ajax=checkout)/)) {
    2828                    return
    2929                }
  • boxo-return/tags/0.0.65/checkout/checkout.php

    r3394986 r3403900  
    239239            }
    240240
    241             $selected_packaging = self::get_selected_packaging();
    242             $packaging = self::boxo_available_for_request()['available'] && is_string($selected_packaging)
    243                 ? sanitize_text_field($selected_packaging)
     241            $selected = self::get_selected_packaging();
     242            $packaging = self::boxo_available_for_request()['available'] && is_string($selected)
     243                ? sanitize_text_field($selected)
    244244                : Boxo_Constants::PACKAGING_DISPOSABLE;
    245245            $order->update_meta_data('boxo_packaging', $packaging);
  • boxo-return/tags/0.0.65/readme.txt

    r3394986 r3403900  
    44Requires at least: 6.5
    55Tested up to: 6.8.3
    6 Stable tag: 0.0.64
     6Stable tag: 0.0.65
    77Requires PHP: 7.1
    88License: GPLv2 or later
     
    2626
    2727== Changelog ==
     28
     29= 0.0.65 =
     30Expand support for custom checkouts.
    2831
    2932= 0.0.64 =
  • boxo-return/trunk/boxo-return.php

    r3394986 r3403900  
    22/*
    33* Plugin Name: BOXO Return
    4 * Version: 0.0.64
     4* Version: 0.0.65
    55* Requires at least: 6.5
    66* Requires PHP: 7.1
     
    2222}
    2323
    24 const BOXO_RETURN_PLUGIN_VERSION = "0.0.64";
     24const BOXO_RETURN_PLUGIN_VERSION = "0.0.65";
    2525
    2626include plugin_dir_path(__FILE__) . 'includes/constants.php';
  • boxo-return/trunk/checkout/boxo-checkout.js

    r3394986 r3403900  
    2525            // If anything goes wrong, do not block the AJAX request.
    2626            try {
    27                 if (!options.url?.includes('wc-ajax=update_order_review')) {
     27                if (!options.url?.match(/(wc-ajax=update_order_review|wc-ajax=checkout)/)) {
    2828                    return
    2929                }
  • boxo-return/trunk/checkout/checkout.php

    r3394986 r3403900  
    239239            }
    240240
    241             $selected_packaging = self::get_selected_packaging();
    242             $packaging = self::boxo_available_for_request()['available'] && is_string($selected_packaging)
    243                 ? sanitize_text_field($selected_packaging)
     241            $selected = self::get_selected_packaging();
     242            $packaging = self::boxo_available_for_request()['available'] && is_string($selected)
     243                ? sanitize_text_field($selected)
    244244                : Boxo_Constants::PACKAGING_DISPOSABLE;
    245245            $order->update_meta_data('boxo_packaging', $packaging);
  • boxo-return/trunk/readme.txt

    r3394986 r3403900  
    44Requires at least: 6.5
    55Tested up to: 6.8.3
    6 Stable tag: 0.0.64
     6Stable tag: 0.0.65
    77Requires PHP: 7.1
    88License: GPLv2 or later
     
    2626
    2727== Changelog ==
     28
     29= 0.0.65 =
     30Expand support for custom checkouts.
    2831
    2932= 0.0.64 =
Note: See TracChangeset for help on using the changeset viewer.