Version Description
No Upgrade required at this time.
Download this release
Release Info
Developer | digitalchild |
Plugin | WC Vendors |
Version | 1.7.3 |
Comparing to | |
See all releases |
Code changes from version 1.7.2 to 1.7.3
- changelog.txt +4 -0
- class-wc-vendors.php +1 -1
- classes/gateways/PayPal_AdvPayments/paypal_ap.php +1 -1
- readme.txt +5 -1
changelog.txt
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
Changelog for WC Vendors
|
2 |
|
|
|
|
|
|
|
|
|
3 |
Version 1.7.2
|
4 |
|
5 |
* Added: Filters for seller tab #141
|
1 |
Changelog for WC Vendors
|
2 |
|
3 |
+
Version 1.7.3
|
4 |
+
|
5 |
+
* Fixed: Paypal AP IPN url issue
|
6 |
+
|
7 |
Version 1.7.2
|
8 |
|
9 |
* Added: Filters for seller tab #141
|
class-wc-vendors.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Author: WC Vendors
|
8 |
* Author URI: http://wcvendors.com
|
9 |
*
|
10 |
-
* Version: 1.7.
|
11 |
* Requires at least: 4.0.0
|
12 |
* Tested up to: 4.2.2
|
13 |
*
|
7 |
* Author: WC Vendors
|
8 |
* Author URI: http://wcvendors.com
|
9 |
*
|
10 |
+
* Version: 1.7.3
|
11 |
* Requires at least: 4.0.0
|
12 |
* Tested up to: 4.2.2
|
13 |
*
|
classes/gateways/PayPal_AdvPayments/paypal_ap.php
CHANGED
@@ -358,7 +358,7 @@ class WC_PaypalAP extends WC_Payment_Gateway
|
|
358 |
'order_id' => $order_id,
|
359 |
);
|
360 |
|
361 |
-
$payRequest->ipnNotificationUrl =
|
362 |
$payRequest->memo = !empty( $order->customer_note ) ? $order->customer_note : '';
|
363 |
$payRequest->reverseAllParallelPaymentsOnError = true;
|
364 |
|
358 |
'order_id' => $order_id,
|
359 |
);
|
360 |
|
361 |
+
$payRequest->ipnNotificationUrl = str_replace( 'https:', 'http:', add_query_arg( $args, home_url( '/' ) ) );
|
362 |
$payRequest->memo = !empty( $order->customer_note ) ? $order->customer_note : '';
|
363 |
$payRequest->reverseAllParallelPaymentsOnError = true;
|
364 |
|
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.2.2
|
9 |
-
Stable tag: 1.7.
|
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,6 +58,10 @@ No Upgrade required at this time.
|
|
58 |
|
59 |
== Changelog ==
|
60 |
|
|
|
|
|
|
|
|
|
61 |
= Version 1.7.2 - May 8th 2015 =
|
62 |
|
63 |
* Added: Filters for seller tab #141
|
6 |
Plugin URI: http://www.wcvendors.com/
|
7 |
Requires at least: 4.0
|
8 |
Tested up to: 4.2.2
|
9 |
+
Stable tag: 1.7.3
|
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.7.3 - 13th may 2015 =
|
62 |
+
|
63 |
+
* Fixed: Paypal AP IPN url issue
|
64 |
+
|
65 |
= Version 1.7.2 - May 8th 2015 =
|
66 |
|
67 |
* Added: Filters for seller tab #141
|