Plugin Directory

Changeset 3156194


Ignore:
Timestamp:
09/23/2024 09:29:08 AM (18 months ago)
Author:
shipbubble
Message:

Currncy plugin checkout support fix

Location:
shipbubble
Files:
43 added
3 edited

Legend:

Unmodified
Added
Removed
  • shipbubble/trunk/public/woocommerce/checkout.php

    r3101414 r3156194  
    166166
    167167    $post_data = [];
     168
    168169    if (isset($_POST['post_data'])) {
    169170        wp_parse_str($_POST['post_data'], $post_data);
    170171        // $post_data = array_map( 'sanitize_text_field', $post_data );
     172    } elseif (isset($_POST['shipbubble_courier_set'])) {
     173        $post_data = $_POST;
     174    }
     175
     176    if (!empty($post_data)) {
    171177        foreach ($post_data as $key => $value) {
    172178            if (is_array($value)) {
     
    176182            }
    177183        }
    178 
    179         // error_log(print_r($post_data, true));
    180184    }
    181185
  • shipbubble/trunk/readme.txt

    r3154860 r3156194  
    1 === Shipbubble - Shipping rates at checkout===
     1=== Shipbubble - Shipping Automation for Woocommerce ===
    22Contributors: Shipbubble
    33Donate link: https://www.shipbubble.com/
     
    55Requires at least: 4.0
    66Tested up to: 6.5
    7 Stable tag: 2.5.1
     7Stable tag: 2.5.2
    88Requires PHP: 5.6
    99License: GPLv3 or later
     
    7070
    7171== Changelog ==
     72= 2.5.2 =
     73* Currncy plugin checkout support fix.
     74
    7275= 2.5.1 =
    7376* Checkout error alert support for selected themes.
  • shipbubble/trunk/shipbubble.php

    r3149402 r3156194  
    99 * Requires at least: 4.0
    1010 * Tested up to: 6.5
    11  * Version: 2.5.1
     11 * Version: 2.5.2
    1212 * Requires PHP: 5.6
    1313 * Text Domain:  shipbubble
Note: See TracChangeset for help on using the changeset viewer.