Changeset 2345213
- Timestamp:
- 07/23/2020 07:44:15 AM (6 years ago)
- Location:
- orderbee/trunk
- Files:
-
- 2 edited
-
includes/class-orderbee-product-list.php (modified) (3 diffs)
-
orderbee.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
orderbee/trunk/includes/class-orderbee-product-list.php
r2345087 r2345213 28 28 'SKU' => $product_info->sku, 29 29 'manage_stock' => $product_info->manage_stock, 30 'images -links' => wp_get_attachment_url($product_info->image_id),30 'images_links' => wp_get_attachment_url($product_info->image_id), 31 31 'name' => $product_info->name, 32 32 'price' => $product_info->price, 33 33 'regular_price' => $product_info->regular_price, 34 'tax_status' => $product_info->tax_status, 35 'tax_rate' => WC_Tax::get_rates( $product_info->get_tax_class() ), 34 36 'stock_quantity' => $product_info->stock_quantity, 37 'meta_data' => $product_info->get_meta_data(), 35 38 'variations' => array() 36 39 ); … … 57 60 'regular_price' => $prod_var_info['display_regular_price'], 58 61 'attributes' => $prod_var_info['attributes'], 59 'meta_data' => $ prod_var_info['meta_data']62 'meta_data' => $variation_o->get_meta_data() 60 63 ); 61 64 } … … 71 74 exit; 72 75 } 73 74 76 } -
orderbee/trunk/orderbee.php
r2345087 r2345213 17 17 * Plugin URI: # 18 18 * Description: This plugin makes a fast and safe connection between your Woocommerce and OrderBee. 19 * Version: 1.0. 119 * Version: 1.0.5 20 20 * Author: OrderBee 21 21 * Author URI: https://www.orderbee.be … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define('ORDERBEE_VERSION', '1.0. 1');37 define('ORDERBEE_VERSION', '1.0.5'); 38 38 39 39 /**
Note: See TracChangeset
for help on using the changeset viewer.