Plugin Directory

Changeset 3131481


Ignore:
Timestamp:
08/06/2024 09:33:53 AM (19 months ago)
Author:
litexten
Message:

bug fixes

Location:
litcommerce/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • litcommerce/trunk/changelog.txt

    r2575233 r3131481  
     1== Changelog ==
     2= 1.1.5 2024-03-15 =
     3
     4*Add: Order Custom Tax Rate
     5
     6= 1.1.6 2024-04-22 =
     7*Add: "Compatible with the 'Sequential Order Numbers for WooCommerce by SkyVerge' plugin."
     8
     9= 1.1.7 2024-08-02 =
     10
     11*Fix Bug
  • litcommerce/trunk/litcommerce.php

    r3074752 r3131481  
    33Plugin Name: LitCommerce
    44Description: Helps you easily integrate your WooCommerce store with LitCommerce.
    5 Version: 1.1.6
     5Version: 1.1.7
    66Author: LitCommerce
    77Author URI: https://litcommerce.com
     
    348348        }
    349349    }
    350     foreach ($response->data['meta_data'] as $meta_data) {
     350    if(@$response->data['meta_data']){
     351        foreach ($response->data['meta_data'] as $meta_data) {
    351352        if ($meta_data->key == '_yoast_wpseo_primary_yith_product_brand') {
    352353            $brand_id = $meta_data->value;
     
    364365        }
    365366    }
     367    }
     368
    366369    return $response;
    367370}
Note: See TracChangeset for help on using the changeset viewer.