CTX Feed – WooCommerce Product Feed Manager Plugin - Version 3.1.54

Version Description

Download this release

Release Info

Developer wahid0003
Plugin Icon 128x128 CTX Feed – WooCommerce Product Feed Manager Plugin
Version 3.1.54
Comparing to
See all releases

Code changes from version 3.1.53 to 3.1.54

README.txt CHANGED
@@ -5,7 +5,7 @@ Tags:woocommerce,google product feed,facebook product feed,woocommerce product f
5
  Requires at least: 3.6
6
  Tested Up To: 5.4-alpha-46743
7
  Requires PHP: 5.6
8
- Stable tag: 3.1.53
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.1.53 (2019-11-25) =
309
  * Promo Update
310
 
5
  Requires at least: 3.6
6
  Tested Up To: 5.4-alpha-46743
7
  Requires PHP: 5.6
8
+ Stable tag: 3.1.54
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
305
 
306
  == Changelog ==
307
 
308
+ = 3.1.53 (2019-11-27) =
309
+ * Fix stock status
310
+
311
  = 3.1.53 (2019-11-25) =
312
  * Promo Update
313
 
admin/partials/woo-feed-manage-list.php CHANGED
@@ -190,11 +190,18 @@ $limit = get_option( "woo_feed_per_batch", 200 );
190
  feed: fileName
191
  },
192
  success : function(response) {
193
- console.log( response );
194
  if(response.success) {
 
195
  feedProgress.status.text( "Delivering Feed Configuration." );
196
- processFeed( parseInt( response.data.product ) );
197
- //feedProgress.status.text("Total "+products+" products found.");
 
 
 
 
 
 
 
198
  feedProgress.status.text( "Processing Products..." );
199
  }else{
200
  feedProgress.status.text(response.data.message);
190
  feed: fileName
191
  },
192
  success : function(response) {
 
193
  if(response.success) {
194
+ var products = parseInt( response.data.product );
195
  feedProgress.status.text( "Delivering Feed Configuration." );
196
+ if ( products > 2000 ) {
197
+ processFeed( 2000 );
198
+ setTimeout(function(){
199
+ feedProgress.status.text( "Total 2000 products will be processed." );
200
+ }, 3000);
201
+ } else {
202
+ processFeed( products );
203
+ }
204
+ console.log( "Counting Total Products:" + products );
205
  feedProgress.status.text( "Processing Products..." );
206
  }else{
207
  feedProgress.status.text(response.data.message);
includes/classes/class-woo-feed-products.php CHANGED
@@ -1601,7 +1601,7 @@ class Woo_Feed_Products {
1601
  return "out of stock";
1602
  }
1603
  }
1604
- return "out of stock";
1605
  }
1606
 
1607
  /**
1601
  return "out of stock";
1602
  }
1603
  }
1604
+ return "in stock";
1605
  }
1606
 
1607
  /**
woo-feed.php CHANGED
@@ -15,7 +15,7 @@
15
  * Plugin Name: WooCommerce Product Feed
16
  * Plugin URI: https://webappick.com/
17
  * Description: This plugin generate WooCommerce product feed for Shopping Engines like Google Shopping,Facebook Product Feed,eBay,Amazon,Idealo and many more..
18
- * Version: 3.1.53
19
  * Author: WebAppick
20
  * Author URI: https://webappick.com/
21
  * License: GPL v2
@@ -41,7 +41,7 @@ if( ! defined( 'WOO_FEED_VERSION' ) ) {
41
  * Plugin Version
42
  * @var string
43
  */
44
- define( 'WOO_FEED_VERSION', '3.1.53' );
45
  }
46
  if( ! defined( 'WOO_FEED_FREE_FILE') ) {
47
  /**
15
  * Plugin Name: WooCommerce Product Feed
16
  * Plugin URI: https://webappick.com/
17
  * Description: This plugin generate WooCommerce product feed for Shopping Engines like Google Shopping,Facebook Product Feed,eBay,Amazon,Idealo and many more..
18
+ * Version: 3.1.54
19
  * Author: WebAppick
20
  * Author URI: https://webappick.com/
21
  * License: GPL v2
41
  * Plugin Version
42
  * @var string
43
  */
44
+ define( 'WOO_FEED_VERSION', '3.1.54' );
45
  }
46
  if( ! defined( 'WOO_FEED_FREE_FILE') ) {
47
  /**