Product Feed PRO for WooCommerce - Version 11.7.0

Version Description

Removed the htaccess file for the TXT feed directory

Download this release

Release Info

Developer jorisverwater
Plugin Icon 128x128 Product Feed PRO for WooCommerce
Version 11.7.0
Comparing to
See all releases

Code changes from version 11.6.9 to 11.7.0

classes/class-get-products.php CHANGED
@@ -2103,22 +2103,22 @@ class WooSEA_Get_Products {
2103
  }
2104
 
2105
  // Check if htaccess exists, if not create one
2106
- $htaccess_file = $path . "/" . ".htaccess";
2107
- if ( ! file_exists( $htaccess_file ) ) {
2108
- $line_ht = "# BEGIN NoCache for woo-product-feed-pro".PHP_EOL;
2109
- $line_ht .= "<FilesMatch \"\.(".$feed_config['fileformat'].")$\">".PHP_EOL;
2110
- $line_ht .= " Header Set Pragma \"no-cache\"".PHP_EOL;
2111
- $line_ht .= " Header Set Expires \"Thu, 1 Jan 1970 00:00:00 GMT\"".PHP_EOL;
2112
- $line_ht .= " Header Set Cache-Control \"max-age=0, no-store, no-cache, must-revalidate\"".PHP_EOL;
2113
- $line_ht .= " Header Unset ETag".PHP_EOL;
2114
- $line_ht .= " FileETag None".PHP_EOL;
2115
- $line_ht .= "</FilesMatch>".PHP_EOL;
2116
- $line_ht .= "# END NoCache for woo-product-feed-pro XML".PHP_EOL;
2117
-
2118
- $fp = fopen($htaccess_file, 'a+');
2119
- fwrite($fp, $line_ht);
2120
- fclose($fp);
2121
- }
2122
 
2123
  // Check if file exists, if it does: delete it first so we can create a new updated one
2124
  if ( (file_exists( $file )) AND ($feed_config['nr_products_processed'] == 0) AND ($header == "true") ) {
2103
  }
2104
 
2105
  // Check if htaccess exists, if not create one
2106
+ //$htaccess_file = $path . "/" . ".htaccess";
2107
+ //if ( ! file_exists( $htaccess_file ) ) {
2108
+ // $line_ht = "# BEGIN NoCache for woo-product-feed-pro".PHP_EOL;
2109
+ // $line_ht .= "<FilesMatch \"\.(".$feed_config['fileformat'].")$\">".PHP_EOL;
2110
+ // $line_ht .= " Header Set Pragma \"no-cache\"".PHP_EOL;
2111
+ // $line_ht .= " Header Set Expires \"Thu, 1 Jan 1970 00:00:00 GMT\"".PHP_EOL;
2112
+ // $line_ht .= " Header Set Cache-Control \"max-age=0, no-store, no-cache, must-revalidate\"".PHP_EOL;
2113
+ // $line_ht .= " Header Unset ETag".PHP_EOL;
2114
+ // $line_ht .= " FileETag None".PHP_EOL;
2115
+ // $line_ht .= "</FilesMatch>".PHP_EOL;
2116
+ // $line_ht .= "# END NoCache for woo-product-feed-pro XML".PHP_EOL;
2117
+ //
2118
+ // $fp = fopen($htaccess_file, 'a+');
2119
+ // fwrite($fp, $line_ht);
2120
+ // fclose($fp);
2121
+ //}
2122
 
2123
  // Check if file exists, if it does: delete it first so we can create a new updated one
2124
  if ( (file_exists( $file )) AND ($feed_config['nr_products_processed'] == 0) AND ($header == "true") ) {
js/woosea_key.js CHANGED
@@ -26,7 +26,7 @@ jQuery(document).ready(function($) {
26
  var license_key = $('#license-key').val();
27
 
28
  jQuery.ajax({
29
- url: 'https://www.adtribes.io/check/license.php?key=' + license_key + '&email=' + license_email + '&domain=' + root_domain + '&version=11.6.9',
30
  jsonp: 'callback',
31
  dataType: 'jsonp',
32
  type: 'GET',
26
  var license_key = $('#license-key').val();
27
 
28
  jQuery.ajax({
29
+ url: 'https://www.adtribes.io/check/license.php?key=' + license_key + '&email=' + license_email + '&domain=' + root_domain + '&version=11.7.0',
30
  jsonp: 'callback',
31
  dataType: 'jsonp',
32
  type: 'GET',
readme.txt CHANGED
@@ -5,7 +5,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
5
  Tags: Google Shopping Feed, Facebook feed, Facebook catalog feed, WooCommerce Product Feed, Product Feed, Bing Shopping Feed, Bing Product Feed, Google Merchant Feed, Skroutz, Google Product Feed, Pinterest, Idealo, Pixels, Conversion API
6
  Requires at least: 4.5
7
  Tested up to: 6.0
8
- Stable tag: 11.6.9
9
 
10
  == Description ==
11
 
@@ -345,6 +345,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
345
 
346
  === Changelog ===
347
 
 
 
 
348
  = 11.6.9 (2022-06-30) =
349
  * Added the product title slug attribute
350
 
@@ -3740,6 +3743,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
3740
 
3741
  == Upgrade Notice ==
3742
 
 
 
 
3743
  = 11.6.9 =
3744
  Added the product title slug attribute
3745
 
5
  Tags: Google Shopping Feed, Facebook feed, Facebook catalog feed, WooCommerce Product Feed, Product Feed, Bing Shopping Feed, Bing Product Feed, Google Merchant Feed, Skroutz, Google Product Feed, Pinterest, Idealo, Pixels, Conversion API
6
  Requires at least: 4.5
7
  Tested up to: 6.0
8
+ Stable tag: 11.7.0
9
 
10
  == Description ==
11
 
345
 
346
  === Changelog ===
347
 
348
+ = 11.7.0 (2022-07-04) =
349
+ * Removed the htaccess file for the TXT feed directory
350
+
351
  = 11.6.9 (2022-06-30) =
352
  * Added the product title slug attribute
353
 
3743
 
3744
  == Upgrade Notice ==
3745
 
3746
+ = 11.7.0 =
3747
+ Removed the htaccess file for the TXT feed directory
3748
+
3749
  = 11.6.9 =
3750
  Added the product title slug attribute
3751
 
woocommerce-sea.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
- * Version: 11.6.9
5
  * Plugin URI: https://www.adtribes.io/support/?utm_source=wpadmin&utm_medium=plugin&utm_campaign=woosea_product_feed_pro
6
  * Description: Configure and maintain your WooCommerce product feeds for Google Shopping, Catalog managers, Remarketing, Bing, Skroutz, Yandex, Comparison shopping websites and over a 100 channels more.
7
  * Author: AdTribes.io
@@ -48,7 +48,7 @@ if (!defined('ABSPATH')) {
48
  * Plugin versionnumber, please do not override.
49
  * Define some constants
50
  */
51
- define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '11.6.9' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54
 
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
+ * Version: 11.7.0
5
  * Plugin URI: https://www.adtribes.io/support/?utm_source=wpadmin&utm_medium=plugin&utm_campaign=woosea_product_feed_pro
6
  * Description: Configure and maintain your WooCommerce product feeds for Google Shopping, Catalog managers, Remarketing, Bing, Skroutz, Yandex, Comparison shopping websites and over a 100 channels more.
7
  * Author: AdTribes.io
48
  * Plugin versionnumber, please do not override.
49
  * Define some constants
50
  */
51
+ define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '11.7.0' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54