Version Description
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 3.0.11 |
Comparing to | |
See all releases |
Code changes from version 3.0.10 to 3.0.11
- README.txt +4 -1
- admin/partials/woo-feed-admin-display.php +0 -4
- includes/class-woo-feed.php +1 -1
- includes/classes/class-woo-feed-products.php +5 -1
- woo-feed.php +3 -2
README.txt
CHANGED
@@ -4,7 +4,7 @@ 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.
|
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.10(2019-03-18) =
|
300 |
* Fixed: product tags issue fixed
|
301 |
* Added: new Google Merchant attributes added
|
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.11
|
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.11(2019-03-21) =
|
300 |
+
* Fixed: facebook variation description issue fixed
|
301 |
+
|
302 |
= 3.0.10(2019-03-18) =
|
303 |
* Fixed: product tags issue fixed
|
304 |
* Added: new Google Merchant attributes added
|
admin/partials/woo-feed-admin-display.php
CHANGED
@@ -17,10 +17,6 @@ $product = new Woo_Feed_Products();
|
|
17 |
$attributes=new Woo_Feed_Default_Attributes();
|
18 |
$product->load_attributes();
|
19 |
|
20 |
-
//echo "<pre>";
|
21 |
-
//print_r();
|
22 |
-
//die();
|
23 |
-
|
24 |
?>
|
25 |
|
26 |
<div class="wrap" id="Feed">
|
17 |
$attributes=new Woo_Feed_Default_Attributes();
|
18 |
$product->load_attributes();
|
19 |
|
|
|
|
|
|
|
|
|
20 |
?>
|
21 |
|
22 |
<div class="wrap" id="Feed">
|
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.11';
|
74 |
|
75 |
$this->load_dependencies();
|
76 |
$this->set_locale();
|
includes/classes/class-woo-feed-products.php
CHANGED
@@ -560,7 +560,11 @@ class Woo_Feed_Products
|
|
560 |
|
561 |
if($this->feedRule['provider'] == 'facebook'){
|
562 |
$variationInfo=explode("-",$variation->get_name());
|
563 |
-
|
|
|
|
|
|
|
|
|
564 |
$description.=" ".$extension;
|
565 |
}
|
566 |
|
560 |
|
561 |
if($this->feedRule['provider'] == 'facebook'){
|
562 |
$variationInfo=explode("-",$variation->get_name());
|
563 |
+
if(isset($variationInfo[1])){
|
564 |
+
$extension=$variationInfo[1];
|
565 |
+
}else{
|
566 |
+
$extension=$variation->get_id();
|
567 |
+
}
|
568 |
$description.=" ".$extension;
|
569 |
}
|
570 |
|
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
|
@@ -1125,4 +1125,5 @@ function woo_feed_save_wpml_notice() {
|
|
1125 |
update_option('woo_feed_wpml_notice',$value);
|
1126 |
|
1127 |
wp_send_json_success();
|
1128 |
-
}
|
|
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.11
|
20 |
* Author: WebAppick
|
21 |
* Author URI: https://webappick.com/
|
22 |
* License: GPL v2
|
1125 |
update_option('woo_feed_wpml_notice',$value);
|
1126 |
|
1127 |
wp_send_json_success();
|
1128 |
+
}
|
1129 |
+
|