Version Description
(2020-06-29) = * Added: WooCommerce Bundle Product compatibility.
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 3.6.9 |
Comparing to | |
See all releases |
Code changes from version 3.6.8 to 3.6.9
- README.txt +4 -1
- includes/classes/class-woo-feed-products-v3.php +3 -2
- woo-feed.php +3 -3
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 |
|
@@ -305,6 +305,9 @@ Using pro version:
|
|
305 |
|
306 |
== Changelog ==
|
307 |
|
|
|
|
|
|
|
308 |
= 3.6.8 (2020-06-24) =
|
309 |
* Added: Google Shopping subscription_cost attribute added.
|
310 |
* Added: Subscription amount attribute added for WooCommerce Subscription.
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.4
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 3.6.9
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
305 |
|
306 |
== Changelog ==
|
307 |
|
308 |
+
= 3.6.9 (2020-06-29) =
|
309 |
+
* Added: WooCommerce Bundle Product compatibility.
|
310 |
+
|
311 |
= 3.6.8 (2020-06-24) =
|
312 |
* Added: Google Shopping subscription_cost attribute added.
|
313 |
* Added: Subscription amount attribute added for WooCommerce Subscription.
|
includes/classes/class-woo-feed-products-v3.php
CHANGED
@@ -157,7 +157,8 @@ class Woo_Feed_Products_v3
|
|
157 |
'grouped',
|
158 |
'external',
|
159 |
'subscription',
|
160 |
-
'variable-subscription'
|
|
|
161 |
);
|
162 |
/**
|
163 |
* Post meta prefix for dropdown item
|
@@ -198,7 +199,7 @@ class Woo_Feed_Products_v3
|
|
198 |
$args = array(
|
199 |
'limit' => 2e3, // phpcs:ignore
|
200 |
'status' => $this->post_status,
|
201 |
-
'type' => ['simple', 'variable', 'grouped', 'external','subscription', 'variable-subscription'],
|
202 |
'orderby' => 'date',
|
203 |
'order' => 'DESC',
|
204 |
'return' => 'ids',
|
157 |
'grouped',
|
158 |
'external',
|
159 |
'subscription',
|
160 |
+
'variable-subscription',
|
161 |
+
'bundle'
|
162 |
);
|
163 |
/**
|
164 |
* Post meta prefix for dropdown item
|
199 |
$args = array(
|
200 |
'limit' => 2e3, // phpcs:ignore
|
201 |
'status' => $this->post_status,
|
202 |
+
'type' => ['simple', 'variable', 'grouped', 'external','subscription', 'variable-subscription', 'bundle'],
|
203 |
'orderby' => 'date',
|
204 |
'order' => 'DESC',
|
205 |
'return' => 'ids',
|
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
|
@@ -26,7 +26,7 @@
|
|
26 |
*
|
27 |
* WC Requirement & Test
|
28 |
* WC requires at least: 3.2
|
29 |
-
* WC tested up to: 4.
|
30 |
*/
|
31 |
|
32 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -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.9
|
15 |
* Author: WebAppick
|
16 |
* Author URI: https://webappick.com/
|
17 |
* License: GPL v2
|
26 |
*
|
27 |
* WC Requirement & Test
|
28 |
* WC requires at least: 3.2
|
29 |
+
* WC tested up to: 4.2
|
30 |
*/
|
31 |
|
32 |
if ( ! defined( 'ABSPATH' ) ) {
|
39 |
* @var string
|
40 |
* @since 3.1.6
|
41 |
*/
|
42 |
+
define( 'WOO_FEED_FREE_VERSION', '3.6.9' );
|
43 |
}
|
44 |
|
45 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|