Version Description
(2021-04-11) = * Fixed: Free shipping contains price issue has been solved.
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 4.3.64 |
Comparing to | |
See all releases |
Code changes from version 4.3.63 to 4.3.64
- README.txt +4 -1
- includes/classes/class-woo-feed-shipping.php +5 -2
- woo-feed.php +2 -2
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: Product Feed, WooCommerce, Google Shopping, Google Merchant, Facebook Cata
|
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.7
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 4.3.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -498,6 +498,9 @@ Using pro version:
|
|
498 |
|
499 |
== Changelog ==
|
500 |
|
|
|
|
|
|
|
501 |
= 4.3.63 (2021-04-08) =
|
502 |
* Added: Ratings in the review template has been added.
|
503 |
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.7
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 4.3.64
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
498 |
|
499 |
== Changelog ==
|
500 |
|
501 |
+
= 4.3.64 (2021-04-11) =
|
502 |
+
* Fixed: Free shipping contains price issue has been solved.
|
503 |
+
|
504 |
= 4.3.63 (2021-04-08) =
|
505 |
* Added: Ratings in the review template has been added.
|
506 |
|
includes/classes/class-woo-feed-shipping.php
CHANGED
@@ -212,8 +212,11 @@ class Woo_Feed_Shipping {
|
|
212 |
continue 3;
|
213 |
}
|
214 |
|
215 |
-
|
216 |
-
|
|
|
|
|
|
|
217 |
|
218 |
}
|
219 |
$shipping_info[] = $shipping;
|
212 |
continue 3;
|
213 |
}
|
214 |
|
215 |
+
|
216 |
+
if( 'free_shipping' !== $method->id ) {
|
217 |
+
$shipping_cost = $this->get_shipping_cost($shipping);
|
218 |
+
$shipping['price'] = (string) $shipping_cost;
|
219 |
+
}
|
220 |
|
221 |
}
|
222 |
$shipping_info[] = $shipping;
|
woo-feed.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: CTX Feed
|
11 |
* Plugin URI: https://webappick.com/
|
12 |
* Description: Easily generate woocommerce product feed for any marketing channel like Google Shopping(Merchant), Facebook Remarketing, Bing, eBay & more. Support 100+ Merchants.
|
13 |
-
* Version: 4.3.
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|
@@ -39,7 +39,7 @@ if ( ! defined( 'WOO_FEED_FREE_VERSION' ) ) {
|
|
39 |
* @var string
|
40 |
* @since 3.1.6
|
41 |
*/
|
42 |
-
define( 'WOO_FEED_FREE_VERSION', '4.3.
|
43 |
}
|
44 |
|
45 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|
10 |
* Plugin Name: CTX Feed
|
11 |
* Plugin URI: https://webappick.com/
|
12 |
* Description: Easily generate woocommerce product feed for any marketing channel like Google Shopping(Merchant), Facebook Remarketing, Bing, eBay & more. Support 100+ Merchants.
|
13 |
+
* Version: 4.3.64
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|
39 |
* @var string
|
40 |
* @since 3.1.6
|
41 |
*/
|
42 |
+
define( 'WOO_FEED_FREE_VERSION', '4.3.64' );
|
43 |
}
|
44 |
|
45 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|