CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.3.79

Version Description

(2021-05-04) = * Added: GoedGeplaatst.nl template has been added.

Download this release

Release Info

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

Code changes from version 4.3.78 to 4.3.79

README.txt CHANGED
@@ -5,7 +5,7 @@ Tags: Product Feed, WooCommerce, Google Shopping, Google Merchant, Facebook Cata
5
  Requires at least: 3.6
6
  Tested Up To: 5.7
7
  Requires PHP: 5.6
8
- Stable tag: 4.3.78
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -501,6 +501,9 @@ Using pro version:
501
 
502
  == Changelog ==
503
 
 
 
 
504
  = 4.3.78 (2021-05-03) =
505
  * Fixed: Global p tag style removed.
506
 
5
  Requires at least: 3.6
6
  Tested Up To: 5.7
7
  Requires PHP: 5.6
8
+ Stable tag: 4.3.79
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
501
 
502
  == Changelog ==
503
 
504
+ = 4.3.79 (2021-05-04) =
505
+ * Added: GoedGeplaatst.nl template has been added.
506
+
507
  = 4.3.78 (2021-05-03) =
508
  * Fixed: Global p tag style removed.
509
 
includes/classes/class-woo-feed-default-attributes.php CHANGED
@@ -1001,6 +1001,39 @@ class Woo_Feed_Default_Attributes {
1001
  'Kleur' => 'Color [Kleur]',
1002
  );
1003
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1004
 
1005
  /**
1006
  * Skroutz Attribute List
1001
  'Kleur' => 'Color [Kleur]',
1002
  );
1003
  }
1004
+
1005
+ /**
1006
+ * GoedGeplaatst.nl Attribute List
1007
+ *
1008
+ * @return array
1009
+ */
1010
+ public function goedgeplaatstAttributes() {
1011
+ return array(
1012
+ 'title' => 'Product Title [title]',
1013
+ 'description' => 'Product Description [description]',
1014
+ 'type' => 'Product Type [type]',
1015
+ 'price' => 'Price [price]',
1016
+ 'images' => 'Images [images]',
1017
+ 'categoryId' => 'Category ID [categoryId]',
1018
+ 'externalAdId' => 'External Ad ID [externalAdId]',
1019
+ 'priceRetail' => 'Retail Price [priceRetail]',
1020
+ 'priceOther' => 'Other Price [priceOther]',
1021
+ 'bid' => 'Bid [bid]',
1022
+ 'showContact' => 'Show Contact [showContact]',
1023
+ 'website' => 'Website [website]',
1024
+ 'name' => 'Name [name]',
1025
+ 'phone' => 'Phone [phone]',
1026
+ 'address' => 'Address [address]',
1027
+ 'houseNumber' => 'House Number [houseNumber]',
1028
+ 'postalCode' => 'Postal Code [postalCode]',
1029
+ 'city' => 'City [city]',
1030
+ 'country' => 'Country [country]',
1031
+ 'autoReplace' => 'Auto Replace [autoReplace]',
1032
+ 'directForwardToMp' => 'Direct Forward Mp [directForwardToMp]',
1033
+ 'priceBidMinimal' => 'Price Bid Minimal [priceBidMinimal]',
1034
+ 'priceBidAsking' => 'Price Bid Asking [priceBidAsking]',
1035
+ );
1036
+ }
1037
 
1038
  /**
1039
  * Skroutz Attribute List
includes/classes/class-woo-feed-dropdown.php CHANGED
@@ -1028,6 +1028,23 @@ class Woo_Feed_Dropdown {
1028
  return $options;
1029
  }
1030
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1031
  /**
1032
  * Google Shopping Action Attribute list
1033
  * Alias of google attribute dropdown for facebook
1028
  return $options;
1029
  }
1030
 
1031
+ /**
1032
+ * Dropdown of GoedGeplaatst.nl attribute List
1033
+ *
1034
+ * @param string $selected
1035
+ *
1036
+ * @return string
1037
+ */
1038
+ public function goedgeplaatstAttributesDropdown( $selected = '' ) {
1039
+ $options = $this->get_cached_dropdown( 'goedgeplaatstAttributesDropdown', $selected );
1040
+
1041
+ if ( false === $options ) {
1042
+ $attributes = new Woo_Feed_Default_Attributes();
1043
+ return $this->cache_dropdown( 'goedgeplaatstAttributesDropdown', $attributes->goedgeplaatstAttributes(), $selected );
1044
+ }
1045
+ return $options;
1046
+ }
1047
+
1048
  /**
1049
  * Google Shopping Action Attribute list
1050
  * Alias of google attribute dropdown for facebook
includes/classes/class-woo-feed-merchant.php CHANGED
@@ -392,6 +392,7 @@ class Woo_Feed_Merchant {
392
  'fashionchick' => esc_html__( 'Fashionchick.nl', 'woo-feed' ),
393
  'fruugo.au' => esc_html__( 'Fruugoaustralia.com', 'woo-feed' ),
394
  'fyndiq.se' => esc_html__( 'Fyndiq.se', 'woo-feed' ),
 
395
  'heureka.sk' => esc_html__( 'Heureka.sk', 'woo-feed' ),
396
  'hintaseuranta.fi' => esc_html__( 'Hintaseuranta.fi', 'woo-feed' ),
397
  'incurvy' => esc_html__( 'Incurvy', 'woo-feed' ),
392
  'fashionchick' => esc_html__( 'Fashionchick.nl', 'woo-feed' ),
393
  'fruugo.au' => esc_html__( 'Fruugoaustralia.com', 'woo-feed' ),
394
  'fyndiq.se' => esc_html__( 'Fyndiq.se', 'woo-feed' ),
395
+ 'goedgeplaatst' => esc_html__( 'GoedGeplaatst.nl', 'woo-feed' ),
396
  'heureka.sk' => esc_html__( 'Heureka.sk', 'woo-feed' ),
397
  'hintaseuranta.fi' => esc_html__( 'Hintaseuranta.fi', 'woo-feed' ),
398
  'incurvy' => esc_html__( 'Incurvy', 'woo-feed' ),
includes/feeds/merchant_infos.php CHANGED
@@ -114,6 +114,9 @@ return array(
114
  'link' => 'https://fruugo.atlassian.net/wiki/spaces/RR/pages/67608211/Field+Specification',
115
  'feed_file_type' => array( 'XML', 'CSV' ),
116
  ), // Fruugo Australia.
 
 
 
117
  'pricerunner' => array(
118
  'link' => 'https://www.pricerunner.com/info/getting-started',
119
  'feed_file_type' => array( 'XML', 'CSV', 'TXT' ),
114
  'link' => 'https://fruugo.atlassian.net/wiki/spaces/RR/pages/67608211/Field+Specification',
115
  'feed_file_type' => array( 'XML', 'CSV' ),
116
  ), // Fruugo Australia.
117
+ 'goedgeplaatst' => array(
118
+ 'feed_file_type' => array( 'CSV' ),
119
+ ), // GoedGeplaatst.nl.
120
  'pricerunner' => array(
121
  'link' => 'https://www.pricerunner.com/info/getting-started',
122
  'feed_file_type' => array( 'XML', 'CSV', 'TXT' ),
woo-feed.php CHANGED
@@ -10,7 +10,7 @@
10
  * Plugin Name: CTX Feed
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
- * Version: 4.3.78
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * 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', '4.3.78' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
10
  * Plugin Name: CTX Feed
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
+ * Version: 4.3.79
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
39
  * @var string
40
  * @since 3.1.6
41
  */
42
+ define( 'WOO_FEED_FREE_VERSION', '4.3.79' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {