CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.4.31

Version Description

(2021-10-19) = * Added: TikTok catalogue added. * Fixed: Facebook Pixel quotation escaping issue fixed. * Fixed: WordPress backward compatability issue fixed.

Download this release

Release Info

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

Code changes from version 4.4.30 to 4.4.31

README.txt CHANGED
@@ -5,7 +5,7 @@ Tags: Product Feed, WooCommerce, Google Shopping, Google Merchant, Facebook Cata
5
  Requires at least: 4.4
6
  Tested Up To: 5.8
7
  Requires PHP: 5.6
8
- Stable tag: 4.4.30
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -516,6 +516,11 @@ Using pro version:
516
 
517
  == Changelog ==
518
 
 
 
 
 
 
519
  = 4.4.30 (2021-10-15) =
520
  * Added: WoodMart WooCommerce theme variation gallery image compatability added.
521
  * Fixed: Review request popup issue fixed.
5
  Requires at least: 4.4
6
  Tested Up To: 5.8
7
  Requires PHP: 5.6
8
+ Stable tag: 4.4.31
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
516
 
517
  == Changelog ==
518
 
519
+ = 4.4.31 (2021-10-19) =
520
+ * Added: TikTok catalogue added.
521
+ * Fixed: Facebook Pixel quotation escaping issue fixed.
522
+ * Fixed: WordPress backward compatability issue fixed.
523
+
524
  = 4.4.30 (2021-10-15) =
525
  * Added: WoodMart WooCommerce theme variation gallery image compatability added.
526
  * Fixed: Review request popup issue fixed.
includes/Tracker/Facebook/Pixel.php CHANGED
@@ -141,7 +141,7 @@ class Pixel{
141
  $_product = wc_get_product( (int) $post->ID );
142
  $data = [
143
  'content_id' => $_product->get_ID(),
144
- 'content_name' => $_product->get_title(),
145
  'content_type' => 'product',
146
  'value' => $_product->get_price(),
147
  'currency' => get_option('woocommerce_currency'),
@@ -165,7 +165,7 @@ class Pixel{
165
 
166
  $data = [
167
  'content_id' => $_product->get_ID(),
168
- 'content_name' => $_product->get_title(),
169
  'content_type' => 'product',
170
  'value' => $_product->get_price(),
171
  'currency' => get_option('woocommerce_currency'),
@@ -189,7 +189,7 @@ class Pixel{
189
 
190
  $data = [
191
  'content_id' => $_product->get_ID(),
192
- 'content_name' => $_product->get_title(),
193
  'content_type' => 'product',
194
  'value' => $_product->get_price(),
195
  'currency' => get_option('woocommerce_currency'),
141
  $_product = wc_get_product( (int) $post->ID );
142
  $data = [
143
  'content_id' => $_product->get_ID(),
144
+ 'content_name' => esc_attr( $_product->get_title() ),
145
  'content_type' => 'product',
146
  'value' => $_product->get_price(),
147
  'currency' => get_option('woocommerce_currency'),
165
 
166
  $data = [
167
  'content_id' => $_product->get_ID(),
168
+ 'content_name' => esc_attr( $_product->get_title() ),
169
  'content_type' => 'product',
170
  'value' => $_product->get_price(),
171
  'currency' => get_option('woocommerce_currency'),
189
 
190
  $data = [
191
  'content_id' => $_product->get_ID(),
192
+ 'content_name' => esc_attr( $_product->get_title() ),
193
  'content_type' => 'product',
194
  'value' => $_product->get_price(),
195
  'currency' => get_option('woocommerce_currency'),
includes/classes/class-woo-feed-default-attributes.php CHANGED
@@ -927,6 +927,65 @@ class Woo_Feed_Default_Attributes {
927
  );
928
  }
929
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
930
  /**
931
  * Modalova Attribute List
932
  *
927
  );
928
  }
929
 
930
+ /**
931
+ * TikTok Attribute List
932
+ *
933
+ * @since 4.4.31
934
+ * @author Nazrul Islam Nayan
935
+ * @return array
936
+ */
937
+ public function tiktokAttributes() {
938
+ return array(
939
+ '--1' => 'Basic Information',
940
+ 'sku_id' => 'SKU ID[id]',
941
+ 'title' => 'Product Title[title]',
942
+ 'description' => 'Product description[description]',
943
+ 'availability' => 'Availability[availability]',
944
+ 'condition' => 'Condition[condition]',
945
+ 'price' => 'Price[price]',
946
+ 'sale_price' => 'Sale Price[sale_price]',
947
+ 'shipping' => 'Shipping[shipping]',
948
+ 'tax ' => 'Tax[tax]',
949
+ 'shipping_weight' => 'Shipping Weight[shipping_weight]',
950
+ 'link' => 'Product URL[link]',
951
+ 'image_link' => 'Product Image[image_link]',
952
+ 'additional_image_link' => 'Additional Image [additional_image_link]',
953
+ 'item_group_id' => 'Parent ID[item_group_id]',
954
+ 'brand' => 'Product Brand[brand]',
955
+ 'gtin' => 'Gtin[gtin]',
956
+ 'mpn' => 'MPN[mpn]',
957
+ 'google_product_category' => 'Google Product Category[google_product_category]',
958
+ 'video_link' => 'Video Link[video_link]',
959
+ 'age_group' => 'Age Group[age_group]',
960
+ 'color' => 'Color[color]',
961
+ 'size' => 'Size[size]',
962
+ 'gender' => 'Gender[gender]',
963
+ 'material' => 'Material[material]',
964
+ 'pattern' => 'Pattern[pattern]',
965
+ 'product_type' => 'Product Type[product_type]',
966
+ 'ios_url' => 'IOS URL[ios_url]',
967
+ 'ios_app_store_id' => 'IOS App Store ID[ios_app_store_id]',
968
+ 'ios_app_name' => 'IOS App Name[ios_app_name]',
969
+ 'iPhone_url' => 'iPhone URL[iPhone_url]',
970
+ 'iPhone_app_store_id' => 'iPhone App Store ID[iPhone_app_store_id]',
971
+ 'iPhone_app_name' => 'iPhone App Name[iPhone_app_name]',
972
+ 'iPad_url' => 'iPad URL[iPad_url]',
973
+ 'iPad_app_store_id' => 'iPad App Store ID[iPad_app_store_id]',
974
+ 'iPad_app_name' => 'iPad App Name[iPad_app_name]',
975
+ 'android_url' => 'Android URL[android_url]',
976
+ 'android_package' => 'Android Package[android_package]',
977
+ 'android_app_name' => 'Android App Name[android_app_name]',
978
+ 'custom_label_0' => 'custom_label_0[custom_label_0]',
979
+ 'custom_label_1' => 'custom_label_1[custom_label_1]',
980
+ 'custom_label_2' => 'custom_label_2[custom_label_2]',
981
+ 'custom_label_3' => 'custom_label_3[custom_label_3]',
982
+ 'custom_label_4' => 'custom_label_4[custom_label_4]',
983
+ 'merchant_brand' => 'Merchant Brand[merchant_brand]',
984
+ 'productHisEval' => 'Purchase Count:FeedBack[productHisEval]',
985
+ 'sale_price_effective_date' => 'Sale Price Effective Date[sale_price_effective_date]',
986
+ );
987
+ }
988
+
989
  /**
990
  * Modalova Attribute List
991
  *
includes/classes/class-woo-feed-dropdown.php CHANGED
@@ -889,6 +889,23 @@ class Woo_Feed_Dropdown {
889
  return $options;
890
  }
891
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
892
  /**
893
  * Dropdown of Modalova Attribute List
894
  *
889
  return $options;
890
  }
891
 
892
+ /**
893
+ * Dropdown of TikTok Attribute List
894
+ *
895
+ * @param string $selected
896
+ *
897
+ * @return string
898
+ */
899
+ public function tiktokAttributesDropdown( $selected = '' ) {
900
+ $options = $this->get_cached_dropdown( 'tiktokAttributesDropdown', $selected );
901
+ if ( false === $options ) {
902
+ $attributes_obj = new Woo_Feed_Default_Attributes();
903
+ $attributes = apply_filters( 'woo_feed_filter_dropdown_attributes', $attributes_obj->tiktokAttributes(), [ 'tiktok' ] );
904
+ return $this->cache_dropdown( 'tiktokAttributesDropdown', $attributes, $selected );
905
+ }
906
+ return $options;
907
+ }
908
+
909
  /**
910
  * Dropdown of Modalova Attribute List
911
  *
includes/classes/class-woo-feed-merchant.php CHANGED
@@ -336,6 +336,7 @@ class Woo_Feed_Merchant {
336
  'bing' => esc_html__( 'Bing Shopping', 'woo-feed' ),
337
  'bing_local_inventory' => esc_html__( 'Bing Local Inventory', 'woo-feed' ),
338
  'snapchat' => esc_html__( 'Snapchat', 'woo-feed' ),
 
339
  'idealo' => esc_html__( 'Idealo', 'woo-feed' ),
340
  'pricespy' => esc_html__( 'PriceSpy', 'woo-feed' ),
341
  'pricerunner' => esc_html__( 'Price Runner', 'woo-feed' ),
336
  'bing' => esc_html__( 'Bing Shopping', 'woo-feed' ),
337
  'bing_local_inventory' => esc_html__( 'Bing Local Inventory', 'woo-feed' ),
338
  'snapchat' => esc_html__( 'Snapchat', 'woo-feed' ),
339
+ 'tiktok' => esc_html__( 'TikTok', 'woo-feed' ),
340
  'idealo' => esc_html__( 'Idealo', 'woo-feed' ),
341
  'pricespy' => esc_html__( 'PriceSpy', 'woo-feed' ),
342
  'pricerunner' => esc_html__( 'Price Runner', 'woo-feed' ),
includes/template-configs.php CHANGED
@@ -7485,5 +7485,15 @@ return array(
7485
  'output_type' => array('1','1','1','1','1','1','6','1','1','6','1','1',),
7486
  'limit' => array('','','','','','','','','','','','',),
7487
  ),
 
 
 
 
 
 
 
 
 
 
7488
  );
7489
  // End of file merchant_templates.php
7485
  'output_type' => array('1','1','1','1','1','1','6','1','1','6','1','1',),
7486
  'limit' => array('','','','','','','','','','','','',),
7487
  ),
7488
+ 'tiktok' => array(
7489
+ 'mattributes' => array('sku_id','title','description','availability','link','image_link','price','brand','condition',),
7490
+ 'prefix' => array('','','','','','','','','',),
7491
+ 'type' => array('attribute','attribute','attribute','attribute','attribute','attribute','attribute','pattern','pattern',),
7492
+ 'attributes' => array('sku_id','title','description','availability','link','image','price','','',),
7493
+ 'default' => array('','','','','','','','','',),
7494
+ 'suffix' => array('','','','','','','','','',),
7495
+ 'output_type' => array('1','1','1','1','1','1','6','1','1',),
7496
+ 'limit' => array('','','','','','','','','',),
7497
+ ),
7498
  );
7499
  // End of file merchant_templates.php
includes/template-infos.php CHANGED
@@ -432,5 +432,9 @@ return array(
432
  'link' => 'https://media.ecommerce.eu/merchant/templates/catalog.csv',
433
  'feed_file_type' => array( 'CSV' ),
434
  ),
 
 
 
 
435
  );
436
  // End of file merchant_infos.php
432
  'link' => 'https://media.ecommerce.eu/merchant/templates/catalog.csv',
433
  'feed_file_type' => array( 'CSV' ),
434
  ),
435
+ 'tiktok' => array(
436
+ 'link' => 'https://ads.tiktok.com/help/article?aid=10001006',
437
+ 'feed_file_type' => array( 'XML', 'CSV' ),
438
+ ),
439
  );
440
  // End of file merchant_infos.php
languages/woo-feed.pot CHANGED
@@ -1943,398 +1943,402 @@ msgid "Snapchat"
1943
  msgstr ""
1944
 
1945
  #: includes/classes/class-woo-feed-merchant.php:339
1946
- msgid "Idealo"
1947
  msgstr ""
1948
 
1949
  #: includes/classes/class-woo-feed-merchant.php:340
1950
- msgid "PriceSpy"
1951
  msgstr ""
1952
 
1953
  #: includes/classes/class-woo-feed-merchant.php:341
1954
- msgid "Price Runner"
1955
  msgstr ""
1956
 
1957
  #: includes/classes/class-woo-feed-merchant.php:342
1958
- msgid "Yandex (CSV)"
1959
  msgstr ""
1960
 
1961
  #: includes/classes/class-woo-feed-merchant.php:343
 
 
 
 
1962
  msgid "Yandex (XML)"
1963
  msgstr ""
1964
 
1965
- #: includes/classes/class-woo-feed-merchant.php:354
1966
  msgid "Templates"
1967
  msgstr ""
1968
 
1969
- #: includes/classes/class-woo-feed-merchant.php:355
1970
  msgid "AdForm"
1971
  msgstr ""
1972
 
1973
- #: includes/classes/class-woo-feed-merchant.php:356
1974
  msgid "AdRoll"
1975
  msgstr ""
1976
 
1977
- #: includes/classes/class-woo-feed-merchant.php:357
1978
  msgid "Avantlink"
1979
  msgstr ""
1980
 
1981
- #: includes/classes/class-woo-feed-merchant.php:358
1982
  msgid "Become"
1983
  msgstr ""
1984
 
1985
- #: includes/classes/class-woo-feed-merchant.php:359
1986
  msgid "Beslist.nl"
1987
  msgstr ""
1988
 
1989
- #: includes/classes/class-woo-feed-merchant.php:360
1990
  msgid "Bestprice"
1991
  msgstr ""
1992
 
1993
- #: includes/classes/class-woo-feed-merchant.php:361
1994
  msgid "Billiger.de"
1995
  msgstr ""
1996
 
1997
- #: includes/classes/class-woo-feed-merchant.php:362
1998
  msgid "Bol.com"
1999
  msgstr ""
2000
 
2001
- #: includes/classes/class-woo-feed-merchant.php:363
2002
  msgid "Bonanza"
2003
  msgstr ""
2004
 
2005
- #: includes/classes/class-woo-feed-merchant.php:364
2006
  msgid "Catch.com.au"
2007
  msgstr ""
2008
 
2009
- #: includes/classes/class-woo-feed-merchant.php:365
2010
  msgid "CDiscount.fr"
2011
  msgstr ""
2012
 
2013
- #: includes/classes/class-woo-feed-merchant.php:366
2014
  msgid "Comparer.be"
2015
  msgstr ""
2016
 
2017
- #: includes/classes/class-woo-feed-merchant.php:367
2018
  msgid "Connexity"
2019
  msgstr ""
2020
 
2021
- #: includes/classes/class-woo-feed-merchant.php:368
2022
  msgid "Criteo"
2023
  msgstr ""
2024
 
2025
- #: includes/classes/class-woo-feed-merchant.php:369
2026
  msgid "Crowdfox"
2027
  msgstr ""
2028
 
2029
- #: includes/classes/class-woo-feed-merchant.php:370
2030
  msgid "Daisycon Advertiser (General)"
2031
  msgstr ""
2032
 
2033
- #: includes/classes/class-woo-feed-merchant.php:371
2034
  msgid "Daisycon Advertiser (Automotive)"
2035
  msgstr ""
2036
 
2037
- #: includes/classes/class-woo-feed-merchant.php:372
2038
  msgid "Daisycon Advertiser (Books)"
2039
  msgstr ""
2040
 
2041
- #: includes/classes/class-woo-feed-merchant.php:373
2042
  msgid "Daisycon Advertiser (Cosmetics)"
2043
  msgstr ""
2044
 
2045
- #: includes/classes/class-woo-feed-merchant.php:374
2046
  msgid "Daisycon Advertiser (Daily Offers)"
2047
  msgstr ""
2048
 
2049
- #: includes/classes/class-woo-feed-merchant.php:375
2050
  msgid "Daisycon Advertiser (Electronics)"
2051
  msgstr ""
2052
 
2053
- #: includes/classes/class-woo-feed-merchant.php:376
2054
  msgid "Daisycon Advertiser (Fashion)"
2055
  msgstr ""
2056
 
2057
- #: includes/classes/class-woo-feed-merchant.php:377
2058
  msgid "Daisycon Advertiser (Food & Drinks)"
2059
  msgstr ""
2060
 
2061
- #: includes/classes/class-woo-feed-merchant.php:378
2062
  msgid "Daisycon Advertiser (Holidays: Accommodations and transport)"
2063
  msgstr ""
2064
 
2065
- #: includes/classes/class-woo-feed-merchant.php:379
2066
  msgid "Daisycon Advertiser (Holidays: Accommodations)"
2067
  msgstr ""
2068
 
2069
- #: includes/classes/class-woo-feed-merchant.php:380
2070
  msgid "Daisycon Advertiser (Holidays: Trips)"
2071
  msgstr ""
2072
 
2073
- #: includes/classes/class-woo-feed-merchant.php:381
2074
  msgid "Daisycon Advertiser (Home & Garden)"
2075
  msgstr ""
2076
 
2077
- #: includes/classes/class-woo-feed-merchant.php:382
2078
  msgid "Daisycon Advertiser (Housing)"
2079
  msgstr ""
2080
 
2081
- #: includes/classes/class-woo-feed-merchant.php:383
2082
  msgid "Daisycon Advertiser (Magazines)"
2083
  msgstr ""
2084
 
2085
- #: includes/classes/class-woo-feed-merchant.php:384
2086
  msgid "Daisycon Advertiser (Studies & Trainings)"
2087
  msgstr ""
2088
 
2089
- #: includes/classes/class-woo-feed-merchant.php:385
2090
  msgid "Daisycon Advertiser (Telecom: Accessories)"
2091
  msgstr ""
2092
 
2093
- #: includes/classes/class-woo-feed-merchant.php:386
2094
  msgid "Daisycon Advertiser (Telecom: All-in-one)"
2095
  msgstr ""
2096
 
2097
- #: includes/classes/class-woo-feed-merchant.php:387
2098
  msgid "Daisycon Advertiser (Telecom: GSM + Subscription)"
2099
  msgstr ""
2100
 
2101
- #: includes/classes/class-woo-feed-merchant.php:388
2102
  msgid "Daisycon Advertiser (Telecom: GSM only)"
2103
  msgstr ""
2104
 
2105
- #: includes/classes/class-woo-feed-merchant.php:389
2106
  msgid "Daisycon Advertiser (Telecom: Sim only)"
2107
  msgstr ""
2108
 
2109
- #: includes/classes/class-woo-feed-merchant.php:390
2110
  msgid "Daisycon Advertiser (Work & Jobs)"
2111
  msgstr ""
2112
 
2113
- #: includes/classes/class-woo-feed-merchant.php:391
2114
  msgid "Dooyoo"
2115
  msgstr ""
2116
 
2117
- #: includes/classes/class-woo-feed-merchant.php:392
2118
  msgid "Ecommerce.it"
2119
  msgstr ""
2120
 
2121
- #: includes/classes/class-woo-feed-merchant.php:393
2122
  msgid "Etsy"
2123
  msgstr ""
2124
 
2125
- #: includes/classes/class-woo-feed-merchant.php:394
2126
  msgid "Fruugo"
2127
  msgstr ""
2128
 
2129
- #: includes/classes/class-woo-feed-merchant.php:395
2130
  msgid "Fashionchick.nl"
2131
  msgstr ""
2132
 
2133
- #: includes/classes/class-woo-feed-merchant.php:396
2134
  msgid "Fruugoaustralia.com"
2135
  msgstr ""
2136
 
2137
- #: includes/classes/class-woo-feed-merchant.php:397
2138
  msgid "Fyndiq.se"
2139
  msgstr ""
2140
 
2141
- #: includes/classes/class-woo-feed-merchant.php:398
2142
  msgid "GoedGeplaatst.nl"
2143
  msgstr ""
2144
 
2145
- #: includes/classes/class-woo-feed-merchant.php:399
2146
  msgid "Heureka.sk"
2147
  msgstr ""
2148
 
2149
- #: includes/classes/class-woo-feed-merchant.php:400
2150
  msgid "Hintaseuranta.fi"
2151
  msgstr ""
2152
 
2153
- #: includes/classes/class-woo-feed-merchant.php:401
2154
  msgid "Incurvy"
2155
  msgstr ""
2156
 
2157
- #: includes/classes/class-woo-feed-merchant.php:402
2158
  msgid "Jet.com"
2159
  msgstr ""
2160
 
2161
- #: includes/classes/class-woo-feed-merchant.php:403
2162
  msgid "Kelkoo"
2163
  msgstr ""
2164
 
2165
- #: includes/classes/class-woo-feed-merchant.php:404
2166
  msgid "Kieskeurig.nl"
2167
  msgstr ""
2168
 
2169
- #: includes/classes/class-woo-feed-merchant.php:405
2170
  msgid "Kijiji.ca"
2171
  msgstr ""
2172
 
2173
- #: includes/classes/class-woo-feed-merchant.php:406
2174
  msgid "LeGuide"
2175
  msgstr ""
2176
 
2177
- #: includes/classes/class-woo-feed-merchant.php:407
2178
  msgid "Marktplaats.nl"
2179
  msgstr ""
2180
 
2181
- #: includes/classes/class-woo-feed-merchant.php:408
2182
  msgid "Miinto.nl"
2183
  msgstr ""
2184
 
2185
- #: includes/classes/class-woo-feed-merchant.php:409
2186
  msgid "Modalova"
2187
  msgstr ""
2188
 
2189
- #: includes/classes/class-woo-feed-merchant.php:410
2190
  msgid "Modina.de"
2191
  msgstr ""
2192
 
2193
- #: includes/classes/class-woo-feed-merchant.php:411
2194
  msgid "Moebel.de"
2195
  msgstr ""
2196
 
2197
- #: includes/classes/class-woo-feed-merchant.php:412
2198
  msgid "Myshopping.com.au"
2199
  msgstr ""
2200
 
2201
- #: includes/classes/class-woo-feed-merchant.php:413
2202
  msgid "TheNextAd"
2203
  msgstr ""
2204
 
2205
- #: includes/classes/class-woo-feed-merchant.php:414
2206
  msgid "Nextag"
2207
  msgstr ""
2208
 
2209
- #: includes/classes/class-woo-feed-merchant.php:415
2210
  msgid "Polyvore"
2211
  msgstr ""
2212
 
2213
- #: includes/classes/class-woo-feed-merchant.php:416
2214
  msgid "Price Grabber"
2215
  msgstr ""
2216
 
2217
- #: includes/classes/class-woo-feed-merchant.php:417
2218
  msgid "Prisjakt"
2219
  msgstr ""
2220
 
2221
- #: includes/classes/class-woo-feed-merchant.php:418
2222
  msgid "Profit Share"
2223
  msgstr ""
2224
 
2225
- #: includes/classes/class-woo-feed-merchant.php:419
2226
  msgid "Rakuten.de"
2227
  msgstr ""
2228
 
2229
- #: includes/classes/class-woo-feed-merchant.php:420
2230
  msgid "Real"
2231
  msgstr ""
2232
 
2233
- #: includes/classes/class-woo-feed-merchant.php:421
2234
  msgid "ShareASale"
2235
  msgstr ""
2236
 
2237
- #: includes/classes/class-woo-feed-merchant.php:422
2238
  msgid "Shopalike.fr"
2239
  msgstr ""
2240
 
2241
- #: includes/classes/class-woo-feed-merchant.php:423
2242
  msgid "Shopbot"
2243
  msgstr ""
2244
 
2245
- #: includes/classes/class-woo-feed-merchant.php:424
2246
  msgid "Shopmania"
2247
  msgstr ""
2248
 
2249
- #: includes/classes/class-woo-feed-merchant.php:425
2250
  msgid "Shopping.com"
2251
  msgstr ""
2252
 
2253
- #: includes/classes/class-woo-feed-merchant.php:426
2254
  msgid "Shopzilla"
2255
  msgstr ""
2256
 
2257
- #: includes/classes/class-woo-feed-merchant.php:427
2258
  msgid "SkinFlint.co.uk"
2259
  msgstr ""
2260
 
2261
- #: includes/classes/class-woo-feed-merchant.php:428
2262
  msgid "Skroutz.gr"
2263
  msgstr ""
2264
 
2265
- #: includes/classes/class-woo-feed-merchant.php:429
2266
  msgid "Smartly.io"
2267
  msgstr ""
2268
 
2269
- #: includes/classes/class-woo-feed-merchant.php:430
2270
  msgid "Spartoo.fi"
2271
  msgstr ""
2272
 
2273
- #: includes/classes/class-woo-feed-merchant.php:431
2274
  msgid "Shopee"
2275
  msgstr ""
2276
 
2277
- #: includes/classes/class-woo-feed-merchant.php:432
2278
  msgid "Stylight.com"
2279
  msgstr ""
2280
 
2281
- #: includes/classes/class-woo-feed-merchant.php:433
2282
  msgid "Trovaprezzi.it"
2283
  msgstr ""
2284
 
2285
- #: includes/classes/class-woo-feed-merchant.php:434
2286
  msgid "Twenga"
2287
  msgstr ""
2288
 
2289
- #: includes/classes/class-woo-feed-merchant.php:435
2290
  msgid "Tweakers (XML)"
2291
  msgstr ""
2292
 
2293
- #: includes/classes/class-woo-feed-merchant.php:436
2294
  msgid "Tweakers (CSV)"
2295
  msgstr ""
2296
 
2297
- #: includes/classes/class-woo-feed-merchant.php:437
2298
  msgid "Vertaa.fi"
2299
  msgstr ""
2300
 
2301
- #: includes/classes/class-woo-feed-merchant.php:438
2302
  msgid "Walmart"
2303
  msgstr ""
2304
 
2305
- #: includes/classes/class-woo-feed-merchant.php:439
2306
  msgid "Webmarchand"
2307
  msgstr ""
2308
 
2309
- #: includes/classes/class-woo-feed-merchant.php:440
2310
  msgid "Wine Searcher"
2311
  msgstr ""
2312
 
2313
- #: includes/classes/class-woo-feed-merchant.php:441
2314
  msgid "Wish.com"
2315
  msgstr ""
2316
 
2317
- #: includes/classes/class-woo-feed-merchant.php:442
2318
  msgid "Yahoo NFA"
2319
  msgstr ""
2320
 
2321
- #: includes/classes/class-woo-feed-merchant.php:443
2322
  msgid "Zap.co.il"
2323
  msgstr ""
2324
 
2325
- #: includes/classes/class-woo-feed-merchant.php:444
2326
  msgid "Zbozi.cz"
2327
  msgstr ""
2328
 
2329
- #: includes/classes/class-woo-feed-merchant.php:445
2330
  msgid "Zalando"
2331
  msgstr ""
2332
 
2333
- #: includes/classes/class-woo-feed-merchant.php:446
2334
  msgid "Admarkt(marktplaats)"
2335
  msgstr ""
2336
 
2337
- #: includes/classes/class-woo-feed-merchant.php:447
2338
  msgid "GLAMI"
2339
  msgstr ""
2340
 
1943
  msgstr ""
1944
 
1945
  #: includes/classes/class-woo-feed-merchant.php:339
1946
+ msgid "TikTok"
1947
  msgstr ""
1948
 
1949
  #: includes/classes/class-woo-feed-merchant.php:340
1950
+ msgid "Idealo"
1951
  msgstr ""
1952
 
1953
  #: includes/classes/class-woo-feed-merchant.php:341
1954
+ msgid "PriceSpy"
1955
  msgstr ""
1956
 
1957
  #: includes/classes/class-woo-feed-merchant.php:342
1958
+ msgid "Price Runner"
1959
  msgstr ""
1960
 
1961
  #: includes/classes/class-woo-feed-merchant.php:343
1962
+ msgid "Yandex (CSV)"
1963
+ msgstr ""
1964
+
1965
+ #: includes/classes/class-woo-feed-merchant.php:344
1966
  msgid "Yandex (XML)"
1967
  msgstr ""
1968
 
1969
+ #: includes/classes/class-woo-feed-merchant.php:355
1970
  msgid "Templates"
1971
  msgstr ""
1972
 
1973
+ #: includes/classes/class-woo-feed-merchant.php:356
1974
  msgid "AdForm"
1975
  msgstr ""
1976
 
1977
+ #: includes/classes/class-woo-feed-merchant.php:357
1978
  msgid "AdRoll"
1979
  msgstr ""
1980
 
1981
+ #: includes/classes/class-woo-feed-merchant.php:358
1982
  msgid "Avantlink"
1983
  msgstr ""
1984
 
1985
+ #: includes/classes/class-woo-feed-merchant.php:359
1986
  msgid "Become"
1987
  msgstr ""
1988
 
1989
+ #: includes/classes/class-woo-feed-merchant.php:360
1990
  msgid "Beslist.nl"
1991
  msgstr ""
1992
 
1993
+ #: includes/classes/class-woo-feed-merchant.php:361
1994
  msgid "Bestprice"
1995
  msgstr ""
1996
 
1997
+ #: includes/classes/class-woo-feed-merchant.php:362
1998
  msgid "Billiger.de"
1999
  msgstr ""
2000
 
2001
+ #: includes/classes/class-woo-feed-merchant.php:363
2002
  msgid "Bol.com"
2003
  msgstr ""
2004
 
2005
+ #: includes/classes/class-woo-feed-merchant.php:364
2006
  msgid "Bonanza"
2007
  msgstr ""
2008
 
2009
+ #: includes/classes/class-woo-feed-merchant.php:365
2010
  msgid "Catch.com.au"
2011
  msgstr ""
2012
 
2013
+ #: includes/classes/class-woo-feed-merchant.php:366
2014
  msgid "CDiscount.fr"
2015
  msgstr ""
2016
 
2017
+ #: includes/classes/class-woo-feed-merchant.php:367
2018
  msgid "Comparer.be"
2019
  msgstr ""
2020
 
2021
+ #: includes/classes/class-woo-feed-merchant.php:368
2022
  msgid "Connexity"
2023
  msgstr ""
2024
 
2025
+ #: includes/classes/class-woo-feed-merchant.php:369
2026
  msgid "Criteo"
2027
  msgstr ""
2028
 
2029
+ #: includes/classes/class-woo-feed-merchant.php:370
2030
  msgid "Crowdfox"
2031
  msgstr ""
2032
 
2033
+ #: includes/classes/class-woo-feed-merchant.php:371
2034
  msgid "Daisycon Advertiser (General)"
2035
  msgstr ""
2036
 
2037
+ #: includes/classes/class-woo-feed-merchant.php:372
2038
  msgid "Daisycon Advertiser (Automotive)"
2039
  msgstr ""
2040
 
2041
+ #: includes/classes/class-woo-feed-merchant.php:373
2042
  msgid "Daisycon Advertiser (Books)"
2043
  msgstr ""
2044
 
2045
+ #: includes/classes/class-woo-feed-merchant.php:374
2046
  msgid "Daisycon Advertiser (Cosmetics)"
2047
  msgstr ""
2048
 
2049
+ #: includes/classes/class-woo-feed-merchant.php:375
2050
  msgid "Daisycon Advertiser (Daily Offers)"
2051
  msgstr ""
2052
 
2053
+ #: includes/classes/class-woo-feed-merchant.php:376
2054
  msgid "Daisycon Advertiser (Electronics)"
2055
  msgstr ""
2056
 
2057
+ #: includes/classes/class-woo-feed-merchant.php:377
2058
  msgid "Daisycon Advertiser (Fashion)"
2059
  msgstr ""
2060
 
2061
+ #: includes/classes/class-woo-feed-merchant.php:378
2062
  msgid "Daisycon Advertiser (Food & Drinks)"
2063
  msgstr ""
2064
 
2065
+ #: includes/classes/class-woo-feed-merchant.php:379
2066
  msgid "Daisycon Advertiser (Holidays: Accommodations and transport)"
2067
  msgstr ""
2068
 
2069
+ #: includes/classes/class-woo-feed-merchant.php:380
2070
  msgid "Daisycon Advertiser (Holidays: Accommodations)"
2071
  msgstr ""
2072
 
2073
+ #: includes/classes/class-woo-feed-merchant.php:381
2074
  msgid "Daisycon Advertiser (Holidays: Trips)"
2075
  msgstr ""
2076
 
2077
+ #: includes/classes/class-woo-feed-merchant.php:382
2078
  msgid "Daisycon Advertiser (Home & Garden)"
2079
  msgstr ""
2080
 
2081
+ #: includes/classes/class-woo-feed-merchant.php:383
2082
  msgid "Daisycon Advertiser (Housing)"
2083
  msgstr ""
2084
 
2085
+ #: includes/classes/class-woo-feed-merchant.php:384
2086
  msgid "Daisycon Advertiser (Magazines)"
2087
  msgstr ""
2088
 
2089
+ #: includes/classes/class-woo-feed-merchant.php:385
2090
  msgid "Daisycon Advertiser (Studies & Trainings)"
2091
  msgstr ""
2092
 
2093
+ #: includes/classes/class-woo-feed-merchant.php:386
2094
  msgid "Daisycon Advertiser (Telecom: Accessories)"
2095
  msgstr ""
2096
 
2097
+ #: includes/classes/class-woo-feed-merchant.php:387
2098
  msgid "Daisycon Advertiser (Telecom: All-in-one)"
2099
  msgstr ""
2100
 
2101
+ #: includes/classes/class-woo-feed-merchant.php:388
2102
  msgid "Daisycon Advertiser (Telecom: GSM + Subscription)"
2103
  msgstr ""
2104
 
2105
+ #: includes/classes/class-woo-feed-merchant.php:389
2106
  msgid "Daisycon Advertiser (Telecom: GSM only)"
2107
  msgstr ""
2108
 
2109
+ #: includes/classes/class-woo-feed-merchant.php:390
2110
  msgid "Daisycon Advertiser (Telecom: Sim only)"
2111
  msgstr ""
2112
 
2113
+ #: includes/classes/class-woo-feed-merchant.php:391
2114
  msgid "Daisycon Advertiser (Work & Jobs)"
2115
  msgstr ""
2116
 
2117
+ #: includes/classes/class-woo-feed-merchant.php:392
2118
  msgid "Dooyoo"
2119
  msgstr ""
2120
 
2121
+ #: includes/classes/class-woo-feed-merchant.php:393
2122
  msgid "Ecommerce.it"
2123
  msgstr ""
2124
 
2125
+ #: includes/classes/class-woo-feed-merchant.php:394
2126
  msgid "Etsy"
2127
  msgstr ""
2128
 
2129
+ #: includes/classes/class-woo-feed-merchant.php:395
2130
  msgid "Fruugo"
2131
  msgstr ""
2132
 
2133
+ #: includes/classes/class-woo-feed-merchant.php:396
2134
  msgid "Fashionchick.nl"
2135
  msgstr ""
2136
 
2137
+ #: includes/classes/class-woo-feed-merchant.php:397
2138
  msgid "Fruugoaustralia.com"
2139
  msgstr ""
2140
 
2141
+ #: includes/classes/class-woo-feed-merchant.php:398
2142
  msgid "Fyndiq.se"
2143
  msgstr ""
2144
 
2145
+ #: includes/classes/class-woo-feed-merchant.php:399
2146
  msgid "GoedGeplaatst.nl"
2147
  msgstr ""
2148
 
2149
+ #: includes/classes/class-woo-feed-merchant.php:400
2150
  msgid "Heureka.sk"
2151
  msgstr ""
2152
 
2153
+ #: includes/classes/class-woo-feed-merchant.php:401
2154
  msgid "Hintaseuranta.fi"
2155
  msgstr ""
2156
 
2157
+ #: includes/classes/class-woo-feed-merchant.php:402
2158
  msgid "Incurvy"
2159
  msgstr ""
2160
 
2161
+ #: includes/classes/class-woo-feed-merchant.php:403
2162
  msgid "Jet.com"
2163
  msgstr ""
2164
 
2165
+ #: includes/classes/class-woo-feed-merchant.php:404
2166
  msgid "Kelkoo"
2167
  msgstr ""
2168
 
2169
+ #: includes/classes/class-woo-feed-merchant.php:405
2170
  msgid "Kieskeurig.nl"
2171
  msgstr ""
2172
 
2173
+ #: includes/classes/class-woo-feed-merchant.php:406
2174
  msgid "Kijiji.ca"
2175
  msgstr ""
2176
 
2177
+ #: includes/classes/class-woo-feed-merchant.php:407
2178
  msgid "LeGuide"
2179
  msgstr ""
2180
 
2181
+ #: includes/classes/class-woo-feed-merchant.php:408
2182
  msgid "Marktplaats.nl"
2183
  msgstr ""
2184
 
2185
+ #: includes/classes/class-woo-feed-merchant.php:409
2186
  msgid "Miinto.nl"
2187
  msgstr ""
2188
 
2189
+ #: includes/classes/class-woo-feed-merchant.php:410
2190
  msgid "Modalova"
2191
  msgstr ""
2192
 
2193
+ #: includes/classes/class-woo-feed-merchant.php:411
2194
  msgid "Modina.de"
2195
  msgstr ""
2196
 
2197
+ #: includes/classes/class-woo-feed-merchant.php:412
2198
  msgid "Moebel.de"
2199
  msgstr ""
2200
 
2201
+ #: includes/classes/class-woo-feed-merchant.php:413
2202
  msgid "Myshopping.com.au"
2203
  msgstr ""
2204
 
2205
+ #: includes/classes/class-woo-feed-merchant.php:414
2206
  msgid "TheNextAd"
2207
  msgstr ""
2208
 
2209
+ #: includes/classes/class-woo-feed-merchant.php:415
2210
  msgid "Nextag"
2211
  msgstr ""
2212
 
2213
+ #: includes/classes/class-woo-feed-merchant.php:416
2214
  msgid "Polyvore"
2215
  msgstr ""
2216
 
2217
+ #: includes/classes/class-woo-feed-merchant.php:417
2218
  msgid "Price Grabber"
2219
  msgstr ""
2220
 
2221
+ #: includes/classes/class-woo-feed-merchant.php:418
2222
  msgid "Prisjakt"
2223
  msgstr ""
2224
 
2225
+ #: includes/classes/class-woo-feed-merchant.php:419
2226
  msgid "Profit Share"
2227
  msgstr ""
2228
 
2229
+ #: includes/classes/class-woo-feed-merchant.php:420
2230
  msgid "Rakuten.de"
2231
  msgstr ""
2232
 
2233
+ #: includes/classes/class-woo-feed-merchant.php:421
2234
  msgid "Real"
2235
  msgstr ""
2236
 
2237
+ #: includes/classes/class-woo-feed-merchant.php:422
2238
  msgid "ShareASale"
2239
  msgstr ""
2240
 
2241
+ #: includes/classes/class-woo-feed-merchant.php:423
2242
  msgid "Shopalike.fr"
2243
  msgstr ""
2244
 
2245
+ #: includes/classes/class-woo-feed-merchant.php:424
2246
  msgid "Shopbot"
2247
  msgstr ""
2248
 
2249
+ #: includes/classes/class-woo-feed-merchant.php:425
2250
  msgid "Shopmania"
2251
  msgstr ""
2252
 
2253
+ #: includes/classes/class-woo-feed-merchant.php:426
2254
  msgid "Shopping.com"
2255
  msgstr ""
2256
 
2257
+ #: includes/classes/class-woo-feed-merchant.php:427
2258
  msgid "Shopzilla"
2259
  msgstr ""
2260
 
2261
+ #: includes/classes/class-woo-feed-merchant.php:428
2262
  msgid "SkinFlint.co.uk"
2263
  msgstr ""
2264
 
2265
+ #: includes/classes/class-woo-feed-merchant.php:429
2266
  msgid "Skroutz.gr"
2267
  msgstr ""
2268
 
2269
+ #: includes/classes/class-woo-feed-merchant.php:430
2270
  msgid "Smartly.io"
2271
  msgstr ""
2272
 
2273
+ #: includes/classes/class-woo-feed-merchant.php:431
2274
  msgid "Spartoo.fi"
2275
  msgstr ""
2276
 
2277
+ #: includes/classes/class-woo-feed-merchant.php:432
2278
  msgid "Shopee"
2279
  msgstr ""
2280
 
2281
+ #: includes/classes/class-woo-feed-merchant.php:433
2282
  msgid "Stylight.com"
2283
  msgstr ""
2284
 
2285
+ #: includes/classes/class-woo-feed-merchant.php:434
2286
  msgid "Trovaprezzi.it"
2287
  msgstr ""
2288
 
2289
+ #: includes/classes/class-woo-feed-merchant.php:435
2290
  msgid "Twenga"
2291
  msgstr ""
2292
 
2293
+ #: includes/classes/class-woo-feed-merchant.php:436
2294
  msgid "Tweakers (XML)"
2295
  msgstr ""
2296
 
2297
+ #: includes/classes/class-woo-feed-merchant.php:437
2298
  msgid "Tweakers (CSV)"
2299
  msgstr ""
2300
 
2301
+ #: includes/classes/class-woo-feed-merchant.php:438
2302
  msgid "Vertaa.fi"
2303
  msgstr ""
2304
 
2305
+ #: includes/classes/class-woo-feed-merchant.php:439
2306
  msgid "Walmart"
2307
  msgstr ""
2308
 
2309
+ #: includes/classes/class-woo-feed-merchant.php:440
2310
  msgid "Webmarchand"
2311
  msgstr ""
2312
 
2313
+ #: includes/classes/class-woo-feed-merchant.php:441
2314
  msgid "Wine Searcher"
2315
  msgstr ""
2316
 
2317
+ #: includes/classes/class-woo-feed-merchant.php:442
2318
  msgid "Wish.com"
2319
  msgstr ""
2320
 
2321
+ #: includes/classes/class-woo-feed-merchant.php:443
2322
  msgid "Yahoo NFA"
2323
  msgstr ""
2324
 
2325
+ #: includes/classes/class-woo-feed-merchant.php:444
2326
  msgid "Zap.co.il"
2327
  msgstr ""
2328
 
2329
+ #: includes/classes/class-woo-feed-merchant.php:445
2330
  msgid "Zbozi.cz"
2331
  msgstr ""
2332
 
2333
+ #: includes/classes/class-woo-feed-merchant.php:446
2334
  msgid "Zalando"
2335
  msgstr ""
2336
 
2337
+ #: includes/classes/class-woo-feed-merchant.php:447
2338
  msgid "Admarkt(marktplaats)"
2339
  msgstr ""
2340
 
2341
+ #: includes/classes/class-woo-feed-merchant.php:448
2342
  msgid "GLAMI"
2343
  msgstr ""
2344
 
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.4.30
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
@@ -42,7 +42,7 @@ if ( ! defined( 'WOO_FEED_FREE_VERSION' ) ) {
42
  * @var string
43
  * @since 3.1.6
44
  */
45
- define( 'WOO_FEED_FREE_VERSION', '4.4.30' );
46
  }
47
 
48
  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.4.31
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
42
  * @var string
43
  * @since 3.1.6
44
  */
45
+ define( 'WOO_FEED_FREE_VERSION', '4.4.31' );
46
  }
47
 
48
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {