CTX Feed – WooCommerce Product Feed Manager Plugin - Version 3.6.2

Version Description

(2020-06-02) = * Fixed: DB query timeout issue fixed

Download this release

Release Info

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

Code changes from version 3.6.1 to 3.6.2

Files changed (3) hide show
  1. README.txt +5 -2
  2. includes/helper.php +3 -2
  3. woo-feed.php +5 -4
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.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -295,7 +295,7 @@ Using pro version:
295
 
296
  * You can filter product using price, quantity, product name
297
  * You can use custom taxonomies or other plugins taxonomy value into feed
298
- * Using Category Mapping You can map your store category with your merchant category which is very useful for visitor to find out your product into merchant site.
299
  * You can make different price for different merchant using Dynamic Attribute. Also it is possible to set different value for different product using Dynamic Attribute Conditions.
300
 
301
  == Screenshots ==
@@ -305,6 +305,9 @@ Using pro version:
305
 
306
  == Changelog ==
307
 
 
 
 
308
  = 3.6.1 (2020-05-28) =
309
  * Fixed: Feed file rename issue fixed.
310
 
5
  Requires at least: 3.6
6
  Tested Up To: 5.4
7
  Requires PHP: 5.6
8
+ Stable tag: 3.6.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
295
 
296
  * You can filter product using price, quantity, product name
297
  * You can use custom taxonomies or other plugins taxonomy value into feed
298
+ * Using Category Mapping You can map your store category with your merchant category which is very useful for visitor to find out your product into merchant site.
299
  * You can make different price for different merchant using Dynamic Attribute. Also it is possible to set different value for different product using Dynamic Attribute Conditions.
300
 
301
  == Screenshots ==
305
 
306
  == Changelog ==
307
 
308
+ = 3.6.2 (2020-06-02) =
309
+ * Fixed: DB query timeout issue fixed
310
+
311
  = 3.6.1 (2020-05-28) =
312
  * Fixed: Feed file rename issue fixed.
313
 
includes/helper.php CHANGED
@@ -2206,8 +2206,9 @@ if ( ! function_exists( 'woo_feed_flush_cache_data' ) ) {
2206
  */
2207
  function woo_feed_flush_cache_data() {
2208
  global $wpdb;
2209
- $wpdb->query( "DELETE FROM $wpdb->options WHERE {$wpdb->options}.option_name LIKE '_transient___woo_feed_cache_%'" ); // phpcs:ignore
2210
- $wpdb->query( "DELETE FROM $wpdb->options WHERE {$wpdb->options}.option_name LIKE '_transient_timeout___woo_feed_cache_%'" ); // phpcs:ignore
 
2211
  }
2212
  }
2213
 
2206
  */
2207
  function woo_feed_flush_cache_data() {
2208
  global $wpdb;
2209
+ // $wpdb->query( "DELETE FROM $wpdb->options WHERE {$wpdb->options}.option_name LIKE '_transient___woo_feed_cache_%' " ); // phpcs:ignore
2210
+ // $wpdb->query( "DELETE FROM $wpdb->options WHERE {$wpdb->options}.option_name LIKE '_transient_timeout___woo_feed_cache_%'" ); // phpcs:ignore
2211
+ $wpdb->query( "DELETE FROM $wpdb->options WHERE ({$wpdb->options}.option_name LIKE '_transient_timeout___woo_feed_cache_%') OR ({$wpdb->options}.option_name LIKE '_transient___woo_feed_cache_%')" ); // phpcs:ignore
2212
  }
2213
  }
2214
 
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.1
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.1' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
@@ -855,8 +855,9 @@ if ( ! function_exists( 'woo_feed_flash_cache_action' ) ) {
855
  woo_feed_flush_cache_data();
856
  }
857
  }
858
- add_action('woocommerce_after_add_attribute_fields','woo_feed_flash_cache_action');
859
- add_action('woocommerce_after_edit_attribute_fields','woo_feed_flash_cache_action');
 
860
 
861
 
862
  // End of file woo-feed.php
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.2
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.2' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
855
  woo_feed_flush_cache_data();
856
  }
857
  }
858
+
859
+ //add_action('woocommerce_after_add_attribute_fields','woo_feed_flash_cache_action');
860
+ //add_action('woocommerce_after_edit_attribute_fields','woo_feed_flash_cache_action');
861
 
862
 
863
  // End of file woo-feed.php