Product Feed PRO for WooCommerce - Version 11.8.1

Version Description

Added 5 attributes to create availability dates in the future for products that are on backorder

Download this release

Release Info

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

Code changes from version 11.8.0 to 11.8.1

classes/class-attributes.php CHANGED
@@ -303,6 +303,11 @@ public function get_mapping_attributes_dropdown() {
303
  "condition" => "Condition",
304
  "purchase_note" => "Purchase note",
305
  "availability" => "Availability",
 
 
 
 
 
306
  "region_id" => "Region Id",
307
  "stock_status" => "Stock Status WooCommerce",
308
  "quantity" => "Quantity [Stock]",
@@ -507,6 +512,11 @@ public function get_mapping_attributes_dropdown() {
507
  "condition" => "Condition",
508
  "purchase_note" => "Purchase note",
509
  "availability" => "Availability",
 
 
 
 
 
510
  "region_id" => "Region Id",
511
  "stock_status" => "Stock Status WooCommerce",
512
  "quantity" => "Quantity [Stock]",
303
  "condition" => "Condition",
304
  "purchase_note" => "Purchase note",
305
  "availability" => "Availability",
306
+ "availability_date_plus1week" => "Availability date + 1 week",
307
+ "availability_date_plus2week" => "Availability date + 2 weeks",
308
+ "availability_date_plus3week" => "Availability date + 3 weeks",
309
+ "availability_date_plus4week" => "Availability date + 4 weeks",
310
+ "availability_date_plus5week" => "Availability date + 5 weeks",
311
  "region_id" => "Region Id",
312
  "stock_status" => "Stock Status WooCommerce",
313
  "quantity" => "Quantity [Stock]",
512
  "condition" => "Condition",
513
  "purchase_note" => "Purchase note",
514
  "availability" => "Availability",
515
+ "availability_date_plus1week" => "Availability date + 1 week",
516
+ "availability_date_plus2week" => "Availability date + 2 weeks",
517
+ "availability_date_plus3week" => "Availability date + 3 weeks",
518
+ "availability_date_plus4week" => "Availability date + 4 weeks",
519
+ "availability_date_plus5week" => "Availability date + 5 weeks",
520
  "region_id" => "Region Id",
521
  "stock_status" => "Stock Status WooCommerce",
522
  "quantity" => "Quantity [Stock]",
classes/class-get-products.php CHANGED
@@ -2851,6 +2851,13 @@ class WooSEA_Get_Products {
2851
  }
2852
  }
2853
 
 
 
 
 
 
 
 
2854
  $product_data['author'] = get_the_author();
2855
  $product_data['quantity'] = $this->clean_quantity( $this->childID, "_stock" );
2856
  $product_data['visibility'] = $product->get_catalog_visibility();
2851
  }
2852
  }
2853
 
2854
+ // Create future availability dates
2855
+ $product_data['availability_date_plus1week'] = date('Y-m-d', strtotime('+1 week'));
2856
+ $product_data['availability_date_plus2week'] = date('Y-m-d', strtotime('+2 week'));
2857
+ $product_data['availability_date_plus3week'] = date('Y-m-d', strtotime('+3 week'));
2858
+ $product_data['availability_date_plus4week'] = date('Y-m-d', strtotime('+4 week'));
2859
+ $product_data['availability_date_plus5week'] = date('Y-m-d', strtotime('+5 week'));
2860
+
2861
  $product_data['author'] = get_the_author();
2862
  $product_data['quantity'] = $this->clean_quantity( $this->childID, "_stock" );
2863
  $product_data['visibility'] = $product->get_catalog_visibility();
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.8.0',
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.8.1',
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.8.0
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.8.0 (2022-08-10) =
349
  * Checked for compatibility with WooCommerce 6.8.0
350
 
@@ -3773,6 +3776,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
3773
 
3774
  == Upgrade Notice ==
3775
 
 
 
 
3776
  = 11.8.0 =
3777
  Checked for compatibility with WooCommerce 6.8.0
3778
 
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.8.1
9
 
10
  == Description ==
11
 
345
 
346
  === Changelog ===
347
 
348
+ = 11.8.1 (2022-08-11) =
349
+ * Added 5 attributes to create availability dates in the future for products that are on backorder
350
+
351
  = 11.8.0 (2022-08-10) =
352
  * Checked for compatibility with WooCommerce 6.8.0
353
 
3776
 
3777
  == Upgrade Notice ==
3778
 
3779
+ = 11.8.1 =
3780
+ Added 5 attributes to create availability dates in the future for products that are on backorder
3781
+
3782
  = 11.8.0 =
3783
  Checked for compatibility with WooCommerce 6.8.0
3784
 
woocommerce-sea.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Product Feed PRO for WooCommerce
4
- * Version: 11.8.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,7 +48,7 @@ if (!defined('ABSPATH')) {
48
  * Plugin versionnumber, please do not override.
49
  * Define some constants
50
  */
51
- define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '11.8.0' );
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.8.1
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.8.1' );
52
  define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
53
  define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
54