Version Description
(2020-08-13) = * Fix: Product missing issue fixed.
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 3.6.17 |
Comparing to | |
See all releases |
Code changes from version 3.6.16 to 3.6.17
- README.txt +4 -1
- includes/classes/class-woo-feed-products-v3.php +2 -2
- includes/classes/class-woo-feed-webappick-api.php +1 -18
- includes/helper.php +1 -1
- woo-feed.php +2 -2
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.16 (2020-08-10) =
|
312 |
* Added: Google product_details attribute added to Google Shopping template.
|
313 |
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.4
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 3.6.17
|
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.17 (2020-08-13) =
|
312 |
+
* Fix: Product missing issue fixed.
|
313 |
+
|
314 |
= 3.6.16 (2020-08-10) =
|
315 |
* Added: Google product_details attribute added to Google Shopping template.
|
316 |
|
includes/classes/class-woo-feed-products-v3.php
CHANGED
@@ -223,7 +223,7 @@ class Woo_Feed_Products_v3
|
|
223 |
$args = [];
|
224 |
if ('wc' === $type) {
|
225 |
$args = array(
|
226 |
-
'limit' =>
|
227 |
'status' => $this->post_status,
|
228 |
'type' => ['simple', 'variable', 'grouped', 'external','subscription', 'variable-subscription', 'bundle','yith_bundle'],
|
229 |
'orderby' => 'date',
|
@@ -234,7 +234,7 @@ class Woo_Feed_Products_v3
|
|
234 |
}
|
235 |
if ('wp' === $type) {
|
236 |
$args = array(
|
237 |
-
'posts_per_page' =>
|
238 |
'post_type' => 'product',
|
239 |
'post_status' => 'publish',
|
240 |
'order' => 'DESC',
|
223 |
$args = [];
|
224 |
if ('wc' === $type) {
|
225 |
$args = array(
|
226 |
+
'limit' => -1, // phpcs:ignore
|
227 |
'status' => $this->post_status,
|
228 |
'type' => ['simple', 'variable', 'grouped', 'external','subscription', 'variable-subscription', 'bundle','yith_bundle'],
|
229 |
'orderby' => 'date',
|
234 |
}
|
235 |
if ('wp' === $type) {
|
236 |
$args = array(
|
237 |
+
'posts_per_page' => -1, // phpcs:ignore
|
238 |
'post_type' => 'product',
|
239 |
'post_status' => 'publish',
|
240 |
'order' => 'DESC',
|
includes/classes/class-woo-feed-webappick-api.php
CHANGED
@@ -334,24 +334,7 @@ if ( ! class_exists( 'WooFeedWebAppickAPI' ) ) {
|
|
334 |
</div>
|
335 |
<?php
|
336 |
}
|
337 |
-
|
338 |
-
$limit_notice_pages = [ 'webappick-manage-feeds', 'webappick-new-feed', 'webappick-feed-settings' ];
|
339 |
-
if ( in_array( $plugin_page, $limit_notice_pages ) && false === get_option( 'woo_feed_product_limit_notice_hidden' ) ) {
|
340 |
-
$has_notice = true;
|
341 |
-
?>
|
342 |
-
<div class="woo-feed-notice notice notice-warning is-dismissible" data-which="product_limit">
|
343 |
-
<p><?php
|
344 |
-
printf(
|
345 |
-
/* translators: 1: This plugin name, 2: Opening Bold Tag 3: Closing Bold Tad */
|
346 |
-
esc_html__( 'You are awesome for using %1$s. Free version works great for up to %2$s2000 products including variations.%3$s', 'woo-feed' ),
|
347 |
-
$pluginName, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
348 |
-
'<b>',
|
349 |
-
'</b>'
|
350 |
-
);
|
351 |
-
?></p>
|
352 |
-
</div>
|
353 |
-
<?php
|
354 |
-
}
|
355 |
// Compatibility Notices.
|
356 |
if ( class_exists( 'SitePress' ) && false === get_option( 'woo_feed_wpml_notice_hidden' ) ) {
|
357 |
$has_notice = true;
|
334 |
</div>
|
335 |
<?php
|
336 |
}
|
337 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
338 |
// Compatibility Notices.
|
339 |
if ( class_exists( 'SitePress' ) && false === get_option( 'woo_feed_wpml_notice_hidden' ) ) {
|
340 |
$has_notice = true;
|
includes/helper.php
CHANGED
@@ -2051,7 +2051,7 @@ if ( ! function_exists( 'woo_feed_get_options' ) ) {
|
|
2051 |
function woo_feed_get_options( $key, $default = false ) {
|
2052 |
$defaults = [
|
2053 |
'per_batch' => 200,
|
2054 |
-
'product_query_type' => '
|
2055 |
'enable_error_debugging' => 'off',
|
2056 |
'cache_ttl' => 6 * HOUR_IN_SECONDS,
|
2057 |
];
|
2051 |
function woo_feed_get_options( $key, $default = false ) {
|
2052 |
$defaults = [
|
2053 |
'per_batch' => 200,
|
2054 |
+
'product_query_type' => 'both',
|
2055 |
'enable_error_debugging' => 'off',
|
2056 |
'cache_ttl' => 6 * HOUR_IN_SECONDS,
|
2057 |
];
|
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.17
|
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.17' );
|
43 |
}
|
44 |
|
45 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|