Changeset 3360756
- Timestamp:
- 09/12/2025 08:17:09 PM (7 months ago)
- Location:
- hippoo-shippo-integration-for-woocommerce/trunk
- Files:
-
- 3 edited
-
hippoo-shippo.php (modified) (1 diff)
-
inc/hooks.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hippoo-shippo-integration-for-woocommerce/trunk/hippoo-shippo.php
r3359066 r3360756 5 5 Description: 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. 6 6 Short Description: Generate Shippo carrier labels inside WooCommerce Admin with real-time shipping rates at checkout. 7 Version: 1.1. 17 Version: 1.1.2 8 8 Author: Hippoo Team 9 9 License: GPLv2 or later -
hippoo-shippo-integration-for-woocommerce/trunk/inc/hooks.php
r3359066 r3360756 25 25 add_filter( 'manage_edit-shop_order_columns', array( $this, 'add_custom_order_column' ), 9999 ); 26 26 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 ); 27 29 // calc order total 28 30 add_filter( 'woocommerce_calculated_total', array( $this, 'recalculate_price' ), 100, 2 ); … … 613 615 function populate_custom_order_column( $column, $post_id ) { 614 616 if ( $column === 'shippo' ) { 617 if ( is_object( $post_id ) ) { 618 $post_id = $post_id->get_id(); 619 } 620 615 621 hippshipp_modal_form( $post_id ); 616 622 -
hippoo-shippo-integration-for-woocommerce/trunk/readme.txt
r3359066 r3360756 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 18 Stable tag: 1.1.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 95 95 == Changelog == 96 96 97 = 1.1.2 = 98 99 * Compatibility with HPOS (High-Performance Order Storage) 100 97 101 = 1.1.1 = 98 102
Note: See TracChangeset
for help on using the changeset viewer.