Plugin Directory

Changeset 3360756


Ignore:
Timestamp:
09/12/2025 08:17:09 PM (7 months ago)
Author:
hippooo
Message:

1.1.2

Location:
hippoo-shippo-integration-for-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • hippoo-shippo-integration-for-woocommerce/trunk/hippoo-shippo.php

    r3359066 r3360756  
    55Description: Hippoo Shippo Integration connects Shippo with the WooCommerce Admin app, allowing you to generate carrier shipping labels directly from your dashboard. Get real-time shipping rates at checkout and support for shipments. Designed by the Hippoo team to streamline your shipping process.
    66Short Description: Generate Shippo carrier labels inside WooCommerce Admin with real-time shipping rates at checkout.
    7 Version: 1.1.1
     7Version: 1.1.2
    88Author: Hippoo Team
    99License: GPLv2 or later
  • hippoo-shippo-integration-for-woocommerce/trunk/inc/hooks.php

    r3359066 r3360756  
    2525        add_filter( 'manage_edit-shop_order_columns', array( $this, 'add_custom_order_column' ), 9999 );
    2626        add_action( 'manage_shop_order_posts_custom_column', array( $this, 'populate_custom_order_column' ), 10, 2 );
     27        add_filter( 'manage_woocommerce_page_wc-orders_columns', array( $this, 'add_custom_order_column' ), 9999 );
     28        add_action( 'manage_woocommerce_page_wc-orders_custom_column', array( $this, 'populate_custom_order_column' ), 10, 2 );
    2729        // calc order total
    2830        add_filter( 'woocommerce_calculated_total', array( $this, 'recalculate_price' ), 100, 2 );
     
    613615    function populate_custom_order_column( $column, $post_id ) {
    614616        if ( $column === 'shippo' ) {
     617            if ( is_object( $post_id ) ) {
     618                $post_id = $post_id->get_id();
     619            }
     620           
    615621            hippshipp_modal_form( $post_id );
    616622   
  • hippoo-shippo-integration-for-woocommerce/trunk/readme.txt

    r3359066 r3360756  
    66Tested up to: 6.7
    77Requires PHP: 7.4
    8 Stable tag: 1.1.1
     8Stable tag: 1.1.2
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9595== Changelog ==
    9696
     97= 1.1.2 =
     98
     99* Compatibility with HPOS (High-Performance Order Storage)
     100
    97101= 1.1.1 =
    98102
Note: See TracChangeset for help on using the changeset viewer.