Version Description
(2022-01-21) = * Fixed: Facebook language override & Facebook inventory attribute missing - issue has been solved. * Tweak: Added filter to the title attribute to remove attributes after the title for variation products.
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 4.4.46 |
Comparing to | |
See all releases |
Code changes from version 4.4.45 to 4.4.46
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.2
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 4.4.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -516,6 +516,10 @@ Using pro version:
|
|
516 |
|
517 |
== Changelog ==
|
518 |
|
|
|
|
|
|
|
|
|
519 |
= 4.4.45 (2022-01-12) =
|
520 |
* Added: Quantity and Price attributes added for skroutz.gr template.
|
521 |
* Fixed: Category mapping not saving for google attributes first time - issue has been solved.
|
5 |
Requires at least: 4.4
|
6 |
Tested Up To: 5.8.2
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 4.4.46
|
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.46 (2022-01-21) =
|
520 |
+
* Fixed: Facebook language override & Facebook inventory attribute missing - issue has been solved.
|
521 |
+
* Tweak: Added filter to the title attribute to remove attributes after the title for variation products.
|
522 |
+
|
523 |
= 4.4.45 (2022-01-12) =
|
524 |
* Added: Quantity and Price attributes added for skroutz.gr template.
|
525 |
* Fixed: Category mapping not saving for google attributes first time - issue has been solved.
|
includes/classes/class-woo-feed-constants.php
CHANGED
@@ -22,7 +22,7 @@ class Woo_Feed_Constants {
|
|
22 |
* @var string
|
23 |
* @since 3.1.6
|
24 |
*/
|
25 |
-
define( 'WOO_FEED_FREE_VERSION', '4.4.
|
26 |
}
|
27 |
|
28 |
if ( ! defined( 'WOO_FEED_FREE_PATH' ) ) {
|
22 |
* @var string
|
23 |
* @since 3.1.6
|
24 |
*/
|
25 |
+
define( 'WOO_FEED_FREE_VERSION', '4.4.46' );
|
26 |
}
|
27 |
|
28 |
if ( ! defined( 'WOO_FEED_FREE_PATH' ) ) {
|
includes/classes/class-woo-feed-default-attributes.php
CHANGED
@@ -848,6 +848,8 @@ class Woo_Feed_Default_Attributes {
|
|
848 |
'custom_label_4' => 'Custom label 4 [custom_label_4]',
|
849 |
'---6' => '',
|
850 |
'--7' => 'Additional Attributes',
|
|
|
|
|
851 |
'status' => 'Status [status]',
|
852 |
'video' => 'Video [video]',
|
853 |
'unit_price_value' => 'Unit Price > Value [unit_price_value]',
|
848 |
'custom_label_4' => 'Custom label 4 [custom_label_4]',
|
849 |
'---6' => '',
|
850 |
'--7' => 'Additional Attributes',
|
851 |
+
'inventory' => 'Facebook Inventory[inventory]',
|
852 |
+
'override' => 'Facebook Override[override]',
|
853 |
'status' => 'Status [status]',
|
854 |
'video' => 'Video [video]',
|
855 |
'unit_price_value' => 'Unit Price > Value [unit_price_value]',
|
includes/classes/class-woo-feed-products-v3.php
CHANGED
@@ -1703,7 +1703,12 @@ class Woo_Feed_Products_v3
|
|
1703 |
$variation_attributes = implode(', ', $attributes);
|
1704 |
}
|
1705 |
|
1706 |
-
|
|
|
|
|
|
|
|
|
|
|
1707 |
}
|
1708 |
|
1709 |
return apply_filters('woo_feed_filter_product_title', $title, $product, $this->config);
|
1703 |
$variation_attributes = implode(', ', $attributes);
|
1704 |
}
|
1705 |
|
1706 |
+
//get product title with variation attribute
|
1707 |
+
$get_with_var_attributes = apply_filters("woo_feed_get_product_title_with_variation_attribute", true, $product, $this->config);
|
1708 |
+
|
1709 |
+
if( $get_with_var_attributes ) {
|
1710 |
+
$title .= " - " . $variation_attributes;
|
1711 |
+
}
|
1712 |
}
|
1713 |
|
1714 |
return apply_filters('woo_feed_filter_product_title', $title, $product, $this->config);
|
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.
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|
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.46
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|