CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.4.58

Version Description

(2022-04-21) = * Fixed: During auto update Google Review Feed structure is changed - issue has been fixed.

Download this release

Release Info

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

Code changes from version 4.4.57 to 4.4.58

README.txt CHANGED
@@ -1,11 +1,11 @@
1
- === CTX Feed - WooCommerce Product Feed Plugin for Google Shopping, Facebook, Pinterest & More ===
2
  Contributors: wahid0003, webappick, mhamudul_hk, shuvo586, nayanchamp7, mrinal013
3
  Donate link: https://webappick.com
4
  Tags: WooCommerce Product Feed, WooCommerce, Google Shopping, Google Merchant, Facebook Catalog, Bing Shopping, Instagram Shop, Skroutz Data Feed, XML Feed, CSV Feed, TXT Feed, Product Feed
5
  Requires at least: 4.4
6
  Tested Up To: 5.9
7
  Requires PHP: 5.6
8
- Stable tag: 4.4.57
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -590,6 +590,9 @@ Using pro version:
590
 
591
  == Changelog ==
592
 
 
 
 
593
  = 4.4.57 (2022-04-11) =
594
  * Fixed: During Quick Edit, custom identifiers fields value become empty - issue has been fixed.
595
 
1
+ === CTX Feed WooCommerce Product Feed Manager Plugin ===
2
  Contributors: wahid0003, webappick, mhamudul_hk, shuvo586, nayanchamp7, mrinal013
3
  Donate link: https://webappick.com
4
  Tags: WooCommerce Product Feed, WooCommerce, Google Shopping, Google Merchant, Facebook Catalog, Bing Shopping, Instagram Shop, Skroutz Data Feed, XML Feed, CSV Feed, TXT Feed, Product Feed
5
  Requires at least: 4.4
6
  Tested Up To: 5.9
7
  Requires PHP: 5.6
8
+ Stable tag: 4.4.58
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
590
 
591
  == Changelog ==
592
 
593
+ = 4.4.58 (2022-04-21) =
594
+ * Fixed: During auto update Google Review Feed structure is changed - issue has been fixed.
595
+
596
  = 4.4.57 (2022-04-11) =
597
  * Fixed: During Quick Edit, custom identifiers fields value become empty - issue has been fixed.
598
 
includes/classes/class-woo-feed-constants.php CHANGED
@@ -23,7 +23,7 @@ if( ! class_exists("Woo_Feed_Constants") ) {
23
  * @var string
24
  * @since 3.1.6
25
  */
26
- define( 'WOO_FEED_FREE_VERSION', '4.4.57' );
27
  }
28
 
29
  if ( ! defined( 'WOO_FEED_FREE_PATH' ) ) {
23
  * @var string
24
  * @since 3.1.6
25
  */
26
+ define( 'WOO_FEED_FREE_VERSION', '4.4.58' );
27
  }
28
 
29
  if ( ! defined( 'WOO_FEED_FREE_PATH' ) ) {
includes/classes/class-woo-feed-products-v3.php CHANGED
@@ -2466,6 +2466,7 @@ class Woo_Feed_Products_v3
2466
  */
2467
  protected function images( $product, $additionalImg = '' ) {
2468
  $imgUrls = $this->get_product_gallery($product);
 
2469
 
2470
  // Return Specific Additional Image URL
2471
  if ( '' !== $additionalImg ) {
@@ -2475,7 +2476,11 @@ class Woo_Feed_Products_v3
2475
  $images = '';
2476
  }
2477
  } else {
2478
- $images = implode(',', array_filter($imgUrls));
 
 
 
 
2479
  }
2480
 
2481
  return apply_filters('woo_feed_filter_product_images', $images, $product, $this->config);
2466
  */
2467
  protected function images( $product, $additionalImg = '' ) {
2468
  $imgUrls = $this->get_product_gallery($product);
2469
+ $separator = ',';
2470
 
2471
  // Return Specific Additional Image URL
2472
  if ( '' !== $additionalImg ) {
2476
  $images = '';
2477
  }
2478
  } else {
2479
+ if( isset($this->config['provider']) && "idealo" === $this->config['provider'] ) {
2480
+ $separator = ';';
2481
+ }
2482
+
2483
+ $images = implode($separator, array_filter($imgUrls));
2484
  }
2485
 
2486
  return apply_filters('woo_feed_filter_product_images', $images, $product, $this->config);
includes/feeds/class-woo-feed-review.php CHANGED
@@ -333,6 +333,7 @@ class Woo_Feed_Review {
333
  $rating->addAttribute('min','1');
334
  $rating->addAttribute('max','5');
335
  } else {
 
336
  $xml->addChild("$key","$value");
337
  }
338
  }
333
  $rating->addAttribute('min','1');
334
  $rating->addAttribute('max','5');
335
  } else {
336
+ $value = htmlspecialchars($value);
337
  $xml->addChild("$key","$value");
338
  }
339
  }
includes/helper.php CHANGED
@@ -1932,20 +1932,27 @@ if ( ! function_exists('woo_feed_generate_feed') ) {
1932
  do_action('before_woo_feed_generate_feed', $info);
1933
 
1934
  // Generate Feed Data
1935
- $products = new Woo_Generate_Feed($info['provider'], $info);
1936
- $getString = $products->getProducts();
1937
- if ( 'csv' == $info['feedType'] || 'tsv' == $info['feedType'] || 'xls' == $info['feedType'] ) {
1938
- $csvHead[0] = $getString['header'];
1939
- if ( ! empty($csvHead) && ! empty($getString['body']) ) {
1940
- $string = array_merge($csvHead, $getString['body']);
1941
- } else {
1942
- $string = array();
1943
- }
1944
  } else {
1945
- if ( 'json' == $info['feedType'] ) {
1946
- $string = array();
 
 
 
 
 
 
 
1947
  } else {
1948
- $string = $getString['header'] . $getString['body'] . $getString['footer'];
 
 
 
 
1949
  }
1950
  }
1951
 
1932
  do_action('before_woo_feed_generate_feed', $info);
1933
 
1934
  // Generate Feed Data
1935
+ if ( isset( $info['provider'] ) && 'googlereview' === $info['provider'] ) {
1936
+ $reviewObj = new Woo_Feed_Review($info);
1937
+ $feedBody = $reviewObj->make_review_xml_feed();
1938
+ $string = $feedBody;
1939
+
 
 
 
 
1940
  } else {
1941
+ $products = new Woo_Generate_Feed($info['provider'], $info);
1942
+ $getString = $products->getProducts();
1943
+ if ( 'csv' == $info['feedType'] || 'tsv' == $info['feedType'] || 'xls' == $info['feedType'] ) {
1944
+ $csvHead[0] = $getString['header'];
1945
+ if ( ! empty($csvHead) && ! empty($getString['body']) ) {
1946
+ $string = array_merge($csvHead, $getString['body']);
1947
+ } else {
1948
+ $string = array();
1949
+ }
1950
  } else {
1951
+ if ( 'json' == $info['feedType'] ) {
1952
+ $string = array();
1953
+ } else {
1954
+ $string = $getString['header'] . $getString['body'] . $getString['footer'];
1955
+ }
1956
  }
1957
  }
1958
 
languages/woo-feed.pot CHANGED
@@ -16,7 +16,7 @@ msgstr ""
16
  msgid "Unauthorized Action."
17
  msgstr ""
18
 
19
- #: woo-feed.php:141, woo-feed.php:260, includes/helper.php:823, includes/helper.php:1843, includes/helper.php:2860, includes/helper.php:2888, includes/helper.php:3281, includes/helper.php:3472, includes/helper.php:3499, includes/helper.php:4729, includes/helper.php:5219
20
  msgid "Invalid Request."
21
  msgstr ""
22
 
@@ -76,7 +76,7 @@ msgstr ""
76
  msgid "Learn More.."
77
  msgstr ""
78
 
79
- #: admin/class-woo-feed-admin.php:178, includes/helper.php:3201, admin/partials/woo-feed-edit-config.php:66
80
  msgid "Select A Category"
81
  msgstr ""
82
 
@@ -168,7 +168,7 @@ msgstr ""
168
  msgid "mappings"
169
  msgstr ""
170
 
171
- #: admin/class-woo-feed-category-list.php:81, admin/class-woo-feed-category-list.php:122, admin/class-woo-feed-category-list.php:217, admin/class-woo-feed-manage-list.php:162, admin/class-woo-feed-manage-list.php:270, includes/helper.php:3550
172
  msgid "Edit"
173
  msgstr ""
174
 
@@ -433,23 +433,23 @@ msgstr ""
433
  msgid "1 Month"
434
  msgstr ""
435
 
436
- #: includes/helper.php:407, includes/helper.php:2000
437
  msgid "1 Week"
438
  msgstr ""
439
 
440
- #: includes/helper.php:408, includes/helper.php:2001
441
  msgid "24 Hours"
442
  msgstr ""
443
 
444
- #: includes/helper.php:409, includes/helper.php:2002
445
  msgid "12 Hours"
446
  msgstr ""
447
 
448
- #: includes/helper.php:410, includes/helper.php:2003
449
  msgid "6 Hours"
450
  msgstr ""
451
 
452
- #: includes/helper.php:411, includes/helper.php:2004
453
  msgid "1 Hours"
454
  msgstr ""
455
 
@@ -533,207 +533,207 @@ msgstr ""
533
  msgid " Imported"
534
  msgstr ""
535
 
536
- #: includes/helper.php:2825
537
  msgid "Brand"
538
  msgstr ""
539
 
540
- #: includes/helper.php:2826
541
  msgid "GTIN"
542
  msgstr ""
543
 
544
- #: includes/helper.php:2827
545
  msgid "MPN"
546
  msgstr ""
547
 
548
- #: includes/helper.php:2828
549
  msgid "EAN"
550
  msgstr ""
551
 
552
- #: includes/helper.php:2829
553
  msgid "ISBN"
554
  msgstr ""
555
 
556
- #: includes/helper.php:2830
557
  msgid "Age group"
558
  msgstr ""
559
 
560
- #: includes/helper.php:2831
561
  msgid "Gender"
562
  msgstr ""
563
 
564
- #: includes/helper.php:2832
565
  msgid "Material"
566
  msgstr ""
567
 
568
- #: includes/helper.php:2833
569
  msgid "Cost of good sold"
570
  msgstr ""
571
 
572
- #: includes/helper.php:2834, includes/classes/class-woo-feed-dropdown.php:501, libs/WebAppick/Attributes/AvailabilityDate.php:47, libs/WebAppick/Attributes/AvailabilityDate.php:77
573
  msgid "Availability Date"
574
  msgstr ""
575
 
576
- #: includes/helper.php:2835
577
  msgid "Unit"
578
  msgstr ""
579
 
580
- #: includes/helper.php:2836, includes/classes/class-woo-feed-dropdown.php:572
581
  msgid "Unit Price Measure"
582
  msgstr ""
583
 
584
- #: includes/helper.php:2837, includes/classes/class-woo-feed-dropdown.php:573
585
  msgid "Unit Price Base Measure"
586
  msgstr ""
587
 
588
- #: includes/helper.php:2838
589
  msgid "Custom field 0"
590
  msgstr ""
591
 
592
- #: includes/helper.php:2839
593
  msgid "Custom field 1"
594
  msgstr ""
595
 
596
- #: includes/helper.php:2840
597
  msgid "Custom field 2"
598
  msgstr ""
599
 
600
- #: includes/helper.php:2841
601
  msgid "Custom field 3"
602
  msgstr ""
603
 
604
- #: includes/helper.php:2842
605
  msgid "Custom field 4"
606
  msgstr ""
607
 
608
- #: includes/helper.php:2908, includes/helper.php:3011
609
  msgid "CUSTOM FIELDS by CTX Feed"
610
  msgstr ""
611
 
612
- #: includes/helper.php:2925
613
  msgid "Set product "
614
  msgstr ""
615
 
616
- #: includes/helper.php:2925
617
  msgid " here."
618
  msgstr ""
619
 
620
- #: includes/helper.php:3121
621
  msgid "Another category mapping exists with the same name."
622
  msgstr ""
623
 
624
- #: includes/helper.php:3130
625
  msgid "Failed To Add Mapping"
626
  msgstr ""
627
 
628
- #: includes/helper.php:3126
629
  msgid "Mapping Added Successfully"
630
  msgstr ""
631
 
632
- #: includes/helper.php:3095
633
  msgid "Mapping Not Changed"
634
  msgstr ""
635
 
636
- #: includes/helper.php:3105
637
  msgid "Failed To Updated Mapping"
638
  msgstr ""
639
 
640
- #: includes/helper.php:3101
641
  msgid "Mapping Updated Successfully"
642
  msgstr ""
643
 
644
- #: includes/helper.php:3221
645
  msgid "Copy this category to subcategories"
646
  msgstr ""
647
 
648
- #: includes/helper.php:3251
649
  msgid "Clear Cache"
650
  msgstr ""
651
 
652
- #: includes/helper.php:3468, includes/helper.php:3496
653
  msgid "Something is wrong."
654
  msgstr ""
655
 
656
- #: includes/helper.php:3466
657
  msgid "User meta updated successfully."
658
  msgstr ""
659
 
660
- #: includes/helper.php:3542, includes/helper.php:3544
661
  msgid "by CTX Feed"
662
  msgstr ""
663
 
664
- #: includes/helper.php:3545
665
  msgid "All"
666
  msgstr ""
667
 
668
- #: includes/helper.php:3546
669
  msgid "Parent"
670
  msgstr ""
671
 
672
- #: includes/helper.php:3547
673
  msgid "Parent:"
674
  msgstr ""
675
 
676
- #: includes/helper.php:3548
677
  msgid "New"
678
  msgstr ""
679
 
680
- #: includes/helper.php:3548, libs/WebAppick/AppServices/Insights.php:977
681
  msgid "Name"
682
  msgstr ""
683
 
684
- #: includes/helper.php:3549
685
  msgid "Add New"
686
  msgstr ""
687
 
688
- #: includes/helper.php:3551
689
  msgid "Update"
690
  msgstr ""
691
 
692
- #: includes/helper.php:3552
693
  msgid "Separate"
694
  msgstr ""
695
 
696
- #: includes/helper.php:3552
697
  msgid "with commas"
698
  msgstr ""
699
 
700
- #: includes/helper.php:3553
701
  msgid "Search"
702
  msgstr ""
703
 
704
- #: includes/helper.php:3554
705
  msgid "Add or remove"
706
  msgstr ""
707
 
708
- #: includes/helper.php:3555
709
  msgid "Choose from the most used"
710
  msgstr ""
711
 
712
- #: includes/helper.php:4426
713
  msgid "Option Successfully Added."
714
  msgstr ""
715
 
716
- #: includes/helper.php:4417
717
  msgid "Option Already Added."
718
  msgstr ""
719
 
720
- #: includes/helper.php:5126
721
  msgid "Delivery up to 30 days"
722
  msgstr ""
723
 
724
- #: includes/helper.php:5124
725
  msgid "Delivery 1 to 3 days"
726
  msgstr ""
727
 
728
- #: includes/helper.php:5227
729
  msgid "Feed data is empty. Can't duplicate feed."
730
  msgstr ""
731
 
732
- #: includes/helper.php:5243
733
  msgid "Unable to save the duplicate feed data."
734
  msgstr ""
735
 
736
- #: includes/helper.php:5253
737
  msgid "Feed Successfully Duplicated, but unable to generate the data file. Please click the \"Regenerate Button\""
738
  msgstr ""
739
 
16
  msgid "Unauthorized Action."
17
  msgstr ""
18
 
19
+ #: woo-feed.php:141, woo-feed.php:260, includes/helper.php:823, includes/helper.php:1843, includes/helper.php:2867, includes/helper.php:2895, includes/helper.php:3288, includes/helper.php:3479, includes/helper.php:3506, includes/helper.php:4736, includes/helper.php:5226
20
  msgid "Invalid Request."
21
  msgstr ""
22
 
76
  msgid "Learn More.."
77
  msgstr ""
78
 
79
+ #: admin/class-woo-feed-admin.php:178, includes/helper.php:3208, admin/partials/woo-feed-edit-config.php:66
80
  msgid "Select A Category"
81
  msgstr ""
82
 
168
  msgid "mappings"
169
  msgstr ""
170
 
171
+ #: admin/class-woo-feed-category-list.php:81, admin/class-woo-feed-category-list.php:122, admin/class-woo-feed-category-list.php:217, admin/class-woo-feed-manage-list.php:162, admin/class-woo-feed-manage-list.php:270, includes/helper.php:3557
172
  msgid "Edit"
173
  msgstr ""
174
 
433
  msgid "1 Month"
434
  msgstr ""
435
 
436
+ #: includes/helper.php:407, includes/helper.php:2007
437
  msgid "1 Week"
438
  msgstr ""
439
 
440
+ #: includes/helper.php:408, includes/helper.php:2008
441
  msgid "24 Hours"
442
  msgstr ""
443
 
444
+ #: includes/helper.php:409, includes/helper.php:2009
445
  msgid "12 Hours"
446
  msgstr ""
447
 
448
+ #: includes/helper.php:410, includes/helper.php:2010
449
  msgid "6 Hours"
450
  msgstr ""
451
 
452
+ #: includes/helper.php:411, includes/helper.php:2011
453
  msgid "1 Hours"
454
  msgstr ""
455
 
533
  msgid " Imported"
534
  msgstr ""
535
 
536
+ #: includes/helper.php:2832
537
  msgid "Brand"
538
  msgstr ""
539
 
540
+ #: includes/helper.php:2833
541
  msgid "GTIN"
542
  msgstr ""
543
 
544
+ #: includes/helper.php:2834
545
  msgid "MPN"
546
  msgstr ""
547
 
548
+ #: includes/helper.php:2835
549
  msgid "EAN"
550
  msgstr ""
551
 
552
+ #: includes/helper.php:2836
553
  msgid "ISBN"
554
  msgstr ""
555
 
556
+ #: includes/helper.php:2837
557
  msgid "Age group"
558
  msgstr ""
559
 
560
+ #: includes/helper.php:2838
561
  msgid "Gender"
562
  msgstr ""
563
 
564
+ #: includes/helper.php:2839
565
  msgid "Material"
566
  msgstr ""
567
 
568
+ #: includes/helper.php:2840
569
  msgid "Cost of good sold"
570
  msgstr ""
571
 
572
+ #: includes/helper.php:2841, includes/classes/class-woo-feed-dropdown.php:501, libs/WebAppick/Attributes/AvailabilityDate.php:47, libs/WebAppick/Attributes/AvailabilityDate.php:77
573
  msgid "Availability Date"
574
  msgstr ""
575
 
576
+ #: includes/helper.php:2842
577
  msgid "Unit"
578
  msgstr ""
579
 
580
+ #: includes/helper.php:2843, includes/classes/class-woo-feed-dropdown.php:572
581
  msgid "Unit Price Measure"
582
  msgstr ""
583
 
584
+ #: includes/helper.php:2844, includes/classes/class-woo-feed-dropdown.php:573
585
  msgid "Unit Price Base Measure"
586
  msgstr ""
587
 
588
+ #: includes/helper.php:2845
589
  msgid "Custom field 0"
590
  msgstr ""
591
 
592
+ #: includes/helper.php:2846
593
  msgid "Custom field 1"
594
  msgstr ""
595
 
596
+ #: includes/helper.php:2847
597
  msgid "Custom field 2"
598
  msgstr ""
599
 
600
+ #: includes/helper.php:2848
601
  msgid "Custom field 3"
602
  msgstr ""
603
 
604
+ #: includes/helper.php:2849
605
  msgid "Custom field 4"
606
  msgstr ""
607
 
608
+ #: includes/helper.php:2915, includes/helper.php:3018
609
  msgid "CUSTOM FIELDS by CTX Feed"
610
  msgstr ""
611
 
612
+ #: includes/helper.php:2932
613
  msgid "Set product "
614
  msgstr ""
615
 
616
+ #: includes/helper.php:2932
617
  msgid " here."
618
  msgstr ""
619
 
620
+ #: includes/helper.php:3128
621
  msgid "Another category mapping exists with the same name."
622
  msgstr ""
623
 
624
+ #: includes/helper.php:3137
625
  msgid "Failed To Add Mapping"
626
  msgstr ""
627
 
628
+ #: includes/helper.php:3133
629
  msgid "Mapping Added Successfully"
630
  msgstr ""
631
 
632
+ #: includes/helper.php:3102
633
  msgid "Mapping Not Changed"
634
  msgstr ""
635
 
636
+ #: includes/helper.php:3112
637
  msgid "Failed To Updated Mapping"
638
  msgstr ""
639
 
640
+ #: includes/helper.php:3108
641
  msgid "Mapping Updated Successfully"
642
  msgstr ""
643
 
644
+ #: includes/helper.php:3228
645
  msgid "Copy this category to subcategories"
646
  msgstr ""
647
 
648
+ #: includes/helper.php:3258
649
  msgid "Clear Cache"
650
  msgstr ""
651
 
652
+ #: includes/helper.php:3475, includes/helper.php:3503
653
  msgid "Something is wrong."
654
  msgstr ""
655
 
656
+ #: includes/helper.php:3473
657
  msgid "User meta updated successfully."
658
  msgstr ""
659
 
660
+ #: includes/helper.php:3549, includes/helper.php:3551
661
  msgid "by CTX Feed"
662
  msgstr ""
663
 
664
+ #: includes/helper.php:3552
665
  msgid "All"
666
  msgstr ""
667
 
668
+ #: includes/helper.php:3553
669
  msgid "Parent"
670
  msgstr ""
671
 
672
+ #: includes/helper.php:3554
673
  msgid "Parent:"
674
  msgstr ""
675
 
676
+ #: includes/helper.php:3555
677
  msgid "New"
678
  msgstr ""
679
 
680
+ #: includes/helper.php:3555, libs/WebAppick/AppServices/Insights.php:977
681
  msgid "Name"
682
  msgstr ""
683
 
684
+ #: includes/helper.php:3556
685
  msgid "Add New"
686
  msgstr ""
687
 
688
+ #: includes/helper.php:3558
689
  msgid "Update"
690
  msgstr ""
691
 
692
+ #: includes/helper.php:3559
693
  msgid "Separate"
694
  msgstr ""
695
 
696
+ #: includes/helper.php:3559
697
  msgid "with commas"
698
  msgstr ""
699
 
700
+ #: includes/helper.php:3560
701
  msgid "Search"
702
  msgstr ""
703
 
704
+ #: includes/helper.php:3561
705
  msgid "Add or remove"
706
  msgstr ""
707
 
708
+ #: includes/helper.php:3562
709
  msgid "Choose from the most used"
710
  msgstr ""
711
 
712
+ #: includes/helper.php:4433
713
  msgid "Option Successfully Added."
714
  msgstr ""
715
 
716
+ #: includes/helper.php:4424
717
  msgid "Option Already Added."
718
  msgstr ""
719
 
720
+ #: includes/helper.php:5133
721
  msgid "Delivery up to 30 days"
722
  msgstr ""
723
 
724
+ #: includes/helper.php:5131
725
  msgid "Delivery 1 to 3 days"
726
  msgstr ""
727
 
728
+ #: includes/helper.php:5234
729
  msgid "Feed data is empty. Can't duplicate feed."
730
  msgstr ""
731
 
732
+ #: includes/helper.php:5250
733
  msgid "Unable to save the duplicate feed data."
734
  msgstr ""
735
 
736
+ #: includes/helper.php:5260
737
  msgid "Feed Successfully Duplicated, but unable to generate the data file. Please click the \"Regenerate Button\""
738
  msgstr ""
739
 
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.57
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
@@ -77,7 +77,7 @@ require_once WOO_FEED_FREE_PATH . 'includes/helper.php';
77
  require_once WOO_FEED_FREE_PATH . 'includes/cron-helper.php';
78
 
79
  /**
80
- * Installer
81
  */
82
  require_once WOO_FEED_FREE_PATH . 'includes/class-woo-feed-installer.php';
83
 
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.58
14
  * Author: WebAppick
15
  * Author URI: https://webappick.com/
16
  * License: GPL v2
77
  require_once WOO_FEED_FREE_PATH . 'includes/cron-helper.php';
78
 
79
  /**
80
+ * Installer Class
81
  */
82
  require_once WOO_FEED_FREE_PATH . 'includes/class-woo-feed-installer.php';
83