Version Description
No Upgrade required at this time.
Download this release
Release Info
Developer | digitalchild |
Plugin | WC Vendors |
Version | 1.6.0 |
Comparing to | |
See all releases |
Code changes from version 1.6.1 to 1.6.0
- changelog.txt +0 -4
- class-wc-vendors.php +1 -1
- classes/class-shipping.php +2 -2
- readme.txt +1 -5
changelog.txt
CHANGED
@@ -1,9 +1,5 @@
|
|
1 |
Changelog for WC Vendors
|
2 |
|
3 |
-
Version 1.6.1
|
4 |
-
|
5 |
-
* Fixed: Support for Per Product Shipping 2.2.x #126
|
6 |
-
|
7 |
Version 1.6.0
|
8 |
|
9 |
* Added: Admin notices for vendor page slug & permalinks
|
1 |
Changelog for WC Vendors
|
2 |
|
|
|
|
|
|
|
|
|
3 |
Version 1.6.0
|
4 |
|
5 |
* Added: Admin notices for vendor page slug & permalinks
|
class-wc-vendors.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Author: WC Vendors
|
8 |
* Author URI: http://wcvendors.com
|
9 |
*
|
10 |
-
* Version: 1.6.
|
11 |
* Requires at least: 4.0.0
|
12 |
* Tested up to: 4.1.1
|
13 |
*
|
7 |
* Author: WC Vendors
|
8 |
* Author URI: http://wcvendors.com
|
9 |
*
|
10 |
+
* Version: 1.6.0
|
11 |
* Requires at least: 4.0.0
|
12 |
* Tested up to: 4.1.1
|
13 |
*
|
classes/class-shipping.php
CHANGED
@@ -63,7 +63,7 @@ class WCV_Shipping
|
|
63 |
// $shipping_due = WCV_Shipping::trs2_get_due( $order_id, $product[ 'product_id' ] );
|
64 |
|
65 |
// Per Product Shipping 2
|
66 |
-
} else if (
|
67 |
$shipping_due = WCV_Shipping::pps_get_due( $order_id, $product );
|
68 |
|
69 |
// Local Delivery
|
@@ -101,7 +101,7 @@ class WCV_Shipping
|
|
101 |
*
|
102 |
* @return unknown
|
103 |
*/
|
104 |
-
public
|
105 |
{
|
106 |
global $woocommerce;
|
107 |
|
63 |
// $shipping_due = WCV_Shipping::trs2_get_due( $order_id, $product[ 'product_id' ] );
|
64 |
|
65 |
// Per Product Shipping 2
|
66 |
+
} else if ( function_exists( 'woocommerce_per_product_shipping' ) && $method == 'per_product' ) {
|
67 |
$shipping_due = WCV_Shipping::pps_get_due( $order_id, $product );
|
68 |
|
69 |
// Local Delivery
|
101 |
*
|
102 |
* @return unknown
|
103 |
*/
|
104 |
+
public function pps_get_due( $order_id, $product )
|
105 |
{
|
106 |
global $woocommerce;
|
107 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Author URI: http://www.wcvendors.com/
|
|
6 |
Plugin URI: http://www.wcvendors.com/
|
7 |
Requires at least: 4.0
|
8 |
Tested up to: 4.1.1
|
9 |
-
Stable tag: 1.6.
|
10 |
License: GPLv2 or later
|
11 |
|
12 |
The free multi-vendor plugin for WooCommerce. Now you can allow anyone to open a store on your site!
|
@@ -58,10 +58,6 @@ No Upgrade required at this time.
|
|
58 |
|
59 |
== Changelog ==
|
60 |
|
61 |
-
= Version 1.6.1 - April 10th 2015 =
|
62 |
-
|
63 |
-
* Fixed: Support for Per Product Shipping 2.2.x #126
|
64 |
-
|
65 |
= Version 1.6.0 - April 8th 2015 =
|
66 |
|
67 |
* Added: Admin notices for vendor page slug & permalinks
|
6 |
Plugin URI: http://www.wcvendors.com/
|
7 |
Requires at least: 4.0
|
8 |
Tested up to: 4.1.1
|
9 |
+
Stable tag: 1.6.0
|
10 |
License: GPLv2 or later
|
11 |
|
12 |
The free multi-vendor plugin for WooCommerce. Now you can allow anyone to open a store on your site!
|
58 |
|
59 |
== Changelog ==
|
60 |
|
|
|
|
|
|
|
|
|
61 |
= Version 1.6.0 - April 8th 2015 =
|
62 |
|
63 |
* Added: Admin notices for vendor page slug & permalinks
|