Version Description
(2020-08-15) = * Fix: Tax Class & Tax Status Product attribute added.
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 3.6.18 |
Comparing to | |
See all releases |
Code changes from version 3.6.17 to 3.6.18
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags:product feed,woocommerce product feed,google shopping feed,google shopping,
|
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.4
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 3.6.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -308,6 +308,9 @@ Using pro version:
|
|
308 |
|
309 |
== Changelog ==
|
310 |
|
|
|
|
|
|
|
311 |
= 3.6.17 (2020-08-13) =
|
312 |
* Fix: Product missing issue fixed.
|
313 |
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.4
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 3.6.18
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
308 |
|
309 |
== Changelog ==
|
310 |
|
311 |
+
= 3.6.18 (2020-08-15) =
|
312 |
+
* Fix: Tax Class & Tax Status Product attribute added.
|
313 |
+
|
314 |
= 3.6.17 (2020-08-13) =
|
315 |
* Fix: Product missing issue fixed.
|
316 |
|
includes/classes/class-woo-feed-dropdown.php
CHANGED
@@ -211,6 +211,8 @@ class Woo_Feed_Dropdown {
|
|
211 |
'author_email' => esc_html__( 'Author Email', 'woo-feed' ),
|
212 |
'date_created' => esc_html__( 'Date Created', 'woo-feed' ),
|
213 |
'date_updated' => esc_html__( 'Date Updated', 'woo-feed' ),
|
|
|
|
|
214 |
'---1' => '',
|
215 |
);
|
216 |
if ( class_exists( 'All_in_One_SEO_Pack' ) ) {
|
211 |
'author_email' => esc_html__( 'Author Email', 'woo-feed' ),
|
212 |
'date_created' => esc_html__( 'Date Created', 'woo-feed' ),
|
213 |
'date_updated' => esc_html__( 'Date Updated', 'woo-feed' ),
|
214 |
+
'tax_class' => esc_html__( 'Tax Class', 'woo-feed' ),
|
215 |
+
'tax_status' => esc_html__( 'Tax Status', 'woo-feed' ),
|
216 |
'---1' => '',
|
217 |
);
|
218 |
if ( class_exists( 'All_in_One_SEO_Pack' ) ) {
|
includes/classes/class-woo-feed-products-v3.php
CHANGED
@@ -2353,6 +2353,24 @@ class Woo_Feed_Products_v3
|
|
2353 |
return gmdate('Y-m-d', strtotime($product->get_date_modified()));
|
2354 |
}
|
2355 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2356 |
/**
|
2357 |
* Get Product Sale Price Effected Date for Google Shopping
|
2358 |
*
|
2353 |
return gmdate('Y-m-d', strtotime($product->get_date_modified()));
|
2354 |
}
|
2355 |
|
2356 |
+
/**
|
2357 |
+
* Get Product Tax class
|
2358 |
+
* @param WC_Product $product Product object.
|
2359 |
+
* @return string
|
2360 |
+
*/
|
2361 |
+
protected function tax_class($product){
|
2362 |
+
return $product->get_tax_class();
|
2363 |
+
}
|
2364 |
+
|
2365 |
+
/**
|
2366 |
+
* Get Product Tax Status
|
2367 |
+
* @param WC_Product $product Product object.
|
2368 |
+
* @return string
|
2369 |
+
*/
|
2370 |
+
protected function tax_status($product){
|
2371 |
+
return $product->get_tax_status();
|
2372 |
+
}
|
2373 |
+
|
2374 |
/**
|
2375 |
* Get Product Sale Price Effected Date for Google Shopping
|
2376 |
*
|
woo-feed.php
CHANGED
@@ -11,7 +11,7 @@
|
|
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 |
*
|
14 |
-
* Version: 3.6.
|
15 |
* Author: WebAppick
|
16 |
* Author URI: https://webappick.com/
|
17 |
* 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', '3.6.
|
43 |
}
|
44 |
|
45 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|
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 |
*
|
14 |
+
* Version: 3.6.18
|
15 |
* Author: WebAppick
|
16 |
* Author URI: https://webappick.com/
|
17 |
* License: GPL v2
|
39 |
* @var string
|
40 |
* @since 3.1.6
|
41 |
*/
|
42 |
+
define( 'WOO_FEED_FREE_VERSION', '3.6.18' );
|
43 |
}
|
44 |
|
45 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|