Plugin Directory

Changeset 2345213


Ignore:
Timestamp:
07/23/2020 07:44:15 AM (6 years ago)
Author:
returnedx
Message:

Newer version

Location:
orderbee/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orderbee/trunk/includes/class-orderbee-product-list.php

    r2345087 r2345213  
    2828                'SKU'            => $product_info->sku,
    2929                '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),
    3131                'name'           => $product_info->name,
    3232                'price'          => $product_info->price,
    3333                '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() ),
    3436                'stock_quantity' => $product_info->stock_quantity,
     37                'meta_data'      => $product_info->get_meta_data(),
    3538                'variations'     => array()
    3639            );
     
    5760                        'regular_price'  => $prod_var_info['display_regular_price'],
    5861                        'attributes'     => $prod_var_info['attributes'],
    59                         'meta_data'     => $prod_var_info['meta_data']
     62                        'meta_data'     => $variation_o->get_meta_data()
    6063                    );
    6164                }
     
    7174        exit;
    7275    }
    73 
    7476}
  • orderbee/trunk/orderbee.php

    r2345087 r2345213  
    1717 * Plugin URI:        #
    1818 * Description:       This plugin makes a fast and safe connection between your Woocommerce and OrderBee.
    19  * Version:           1.0.1
     19 * Version:           1.0.5
    2020 * Author:            OrderBee
    2121 * Author URI:        https://www.orderbee.be
     
    3535 * Rename this for your plugin and update it as you release new versions.
    3636 */
    37 define('ORDERBEE_VERSION', '1.0.1');
     37define('ORDERBEE_VERSION', '1.0.5');
    3838
    3939/**
Note: See TracChangeset for help on using the changeset viewer.