Version Description
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 3.0.2 |
Comparing to | |
See all releases |
Code changes from version 3.0.1 to 3.0.2
- README.txt +5 -2
- includes/class-woo-feed.php +1 -1
- woo-feed.php +5 -1
README.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: wahid0003
|
|
3 |
Donate link: https://webappick.com
|
4 |
Tags:woocommerce,google product feed,facebook product feed,woocommerce product feed,woocommerce,
|
5 |
Requires at least: 3.6
|
6 |
-
Tested Up To: 5.
|
7 |
-
Stable tag: 3.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -296,6 +296,9 @@ Using pro version:
|
|
296 |
|
297 |
== Changelog ==
|
298 |
|
|
|
|
|
|
|
299 |
= 3.0.1(2019-02-06) =
|
300 |
* Manufacturer attribute added to NexTag template
|
301 |
|
3 |
Donate link: https://webappick.com
|
4 |
Tags:woocommerce,google product feed,facebook product feed,woocommerce product feed,woocommerce,
|
5 |
Requires at least: 3.6
|
6 |
+
Tested Up To: 5.1
|
7 |
+
Stable tag: 3.0.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
296 |
|
297 |
== Changelog ==
|
298 |
|
299 |
+
= 3.0.2(2019-02-15) =
|
300 |
+
* WordPress version 5.1 compatibility checked
|
301 |
+
|
302 |
= 3.0.1(2019-02-06) =
|
303 |
* Manufacturer attribute added to NexTag template
|
304 |
|
includes/class-woo-feed.php
CHANGED
@@ -70,7 +70,7 @@ class Woo_Feed
|
|
70 |
public function __construct()
|
71 |
{
|
72 |
$this->woo_feed = 'woo-feed';
|
73 |
-
$this->version = '3.0.
|
74 |
|
75 |
$this->load_dependencies();
|
76 |
$this->set_locale();
|
70 |
public function __construct()
|
71 |
{
|
72 |
$this->woo_feed = 'woo-feed';
|
73 |
+
$this->version = '3.0.2';
|
74 |
|
75 |
$this->load_dependencies();
|
76 |
$this->set_locale();
|
woo-feed.php
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
* Plugin Name: WooCommerce Product Feed
|
17 |
* Plugin URI: https://webappick.com/
|
18 |
* Description: This plugin generate WooCommerce product feed for Shopping Engines like Google Shopping,Facebook Product Feed,eBay,Amazon,Idealo and many more..
|
19 |
-
* Version: 3.0.
|
20 |
* Author: WebAppick
|
21 |
* Author URI: https://webappick.com/
|
22 |
* License: GPL v2
|
@@ -652,6 +652,10 @@ function woo_feed_save_feed_file(){
|
|
652 |
wp_die();
|
653 |
}
|
654 |
|
|
|
|
|
|
|
|
|
655 |
function woo_feed_check_google_category($feedInfo){
|
656 |
|
657 |
# Check Google Product Category for Google & Facebook Template and show message
|
16 |
* Plugin Name: WooCommerce Product Feed
|
17 |
* Plugin URI: https://webappick.com/
|
18 |
* Description: This plugin generate WooCommerce product feed for Shopping Engines like Google Shopping,Facebook Product Feed,eBay,Amazon,Idealo and many more..
|
19 |
+
* Version: 3.0.2
|
20 |
* Author: WebAppick
|
21 |
* Author URI: https://webappick.com/
|
22 |
* License: GPL v2
|
652 |
wp_die();
|
653 |
}
|
654 |
|
655 |
+
/** Check google product category added or not after making a feed.
|
656 |
+
* @param $feedInfo
|
657 |
+
* @return string
|
658 |
+
*/
|
659 |
function woo_feed_check_google_category($feedInfo){
|
660 |
|
661 |
# Check Google Product Category for Google & Facebook Template and show message
|