Plugin Directory

Changeset 3351656


Ignore:
Timestamp:
08/28/2025 03:41:36 AM (5 months ago)
Author:
aarsiv
Message:

virtual issue fixed

Location:
a2z-fedex-shipping
Files:
63 added
2 edited

Legend:

Unmodified
Added
Removed
  • a2z-fedex-shipping/trunk/a2zfedex_basic.php

    r3348466 r3351656  
    44 * Plugin URI: https://myshipi.com/
    55 * Description: Realtime Shipping Rates, shipping labels.
    6  * Version: 5.0.9
     6 * Version: 5.0.10
    77 * Author: Shipi
    88 * Author URI: https://myshipi.com/
     
    31393139                    $getproduct = wc_get_product( $product_variation_id );
    31403140                }
    3141 
    3142                 if ($getproduct->is_virtual()) {
    3143                     continue;
    3144                 }
    31453141       
    31463142                if (empty($getproduct)) {
    31473143                    continue;
    31483144                }
     3145
     3146                if ( $getproduct && is_object($getproduct) && method_exists($getproduct, 'is_virtual') && $getproduct->is_virtual() ) {
     3147                    continue;
     3148                }
     3149
    31493150                $skip = apply_filters("a2z_fedex_skip_sku_from_label", false, $getproduct->get_sku());
    31503151                if($skip){
  • a2z-fedex-shipping/trunk/readme.txt

    r3348466 r3351656  
    55Tested up to: 6.8
    66Requires PHP: 5.6
    7 Stable tag: 5.0.9
     7Stable tag: 5.0.10
    88License: GPLv3 or later License
    99URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    159159
    160160== Changelog ==
     161= 5.0.10 =
     162    > [Bug Fix] Virtual product issue is fixed.
    161163= 5.0.9 =
    162164    > [New] Added Label format PDF and ZPL.
Note: See TracChangeset for help on using the changeset viewer.