Version Description
Removed currency from Zbozi shipping costs
Download this release
Release Info
Developer | jorisverwater |
Plugin | Product Feed PRO for WooCommerce |
Version | 11.7.7 |
Comparing to | |
See all releases |
Code changes from version 11.7.6 to 11.7.7
- classes/class-get-products.php +11 -3
- js/woosea_key.js +1 -1
- readme.txt +7 -1
- woocommerce-sea.php +2 -2
classes/class-get-products.php
CHANGED
@@ -1302,7 +1302,9 @@ class WooSEA_Get_Products {
|
|
1302 |
//$product->$k = $v;
|
1303 |
} elseif (preg_match("/g:product_highlight/i",$k)){
|
1304 |
$v = preg_replace('/&/', '&', $v);
|
1305 |
-
|
|
|
|
|
1306 |
} elseif (preg_match("/g:product_detail/i",$k)){
|
1307 |
if(!empty($v)){
|
1308 |
$product_detail_split = explode("#", $v);
|
@@ -1989,8 +1991,11 @@ class WooSEA_Get_Products {
|
|
1989 |
if($nr_split == 7){
|
1990 |
$delivery_id_split = explode(" ", $delivery_split[2]);
|
1991 |
$delivery_price_split = explode("||", $delivery_split[3]);
|
1992 |
-
|
1993 |
$delivery_id = $delivery->addChild('DELIVERY_ID', htmlspecialchars($delivery_id_split[0]));
|
|
|
|
|
|
|
|
|
1994 |
$delivery_price = $delivery->addChild('DELIVERY_PRICE', trim(htmlspecialchars($delivery_price_split[0])));
|
1995 |
$delivery_price_cod = $delivery->addChild('DELIVERY_PRICE_COD', trim(htmlspecialchars($delivery_split[6])));
|
1996 |
} else {
|
@@ -2000,7 +2005,10 @@ class WooSEA_Get_Products {
|
|
2000 |
if(in_array($zbozi_id, $zbozi_delivery_id)){
|
2001 |
$delivery_split[2] = $zbozi_id;
|
2002 |
}
|
2003 |
-
|
|
|
|
|
|
|
2004 |
|
2005 |
$delivery_id = $delivery->addChild('DELIVERY_ID', htmlspecialchars($delivery_split[2]));
|
2006 |
$del_price_split = explode(" ",trim($delivery_split[3]));
|
1302 |
//$product->$k = $v;
|
1303 |
} elseif (preg_match("/g:product_highlight/i",$k)){
|
1304 |
$v = preg_replace('/&/', '&', $v);
|
1305 |
+
$product_highlight = $product->addChild('g:product_highlight', $v, $namespace['g']);
|
1306 |
+
} elseif (preg_match("/g:promotion_id/i",$k)){
|
1307 |
+
$promotion_id = $product->addChild('g:promotion_id', $v, $namespace['g']);
|
1308 |
} elseif (preg_match("/g:product_detail/i",$k)){
|
1309 |
if(!empty($v)){
|
1310 |
$product_detail_split = explode("#", $v);
|
1991 |
if($nr_split == 7){
|
1992 |
$delivery_id_split = explode(" ", $delivery_split[2]);
|
1993 |
$delivery_price_split = explode("||", $delivery_split[3]);
|
|
|
1994 |
$delivery_id = $delivery->addChild('DELIVERY_ID', htmlspecialchars($delivery_id_split[0]));
|
1995 |
+
|
1996 |
+
$delivery_price_split[0] = str_replace("EUR", "", $delivery_price_split[0]);
|
1997 |
+
$delivery_price_split[0] = str_replace("CZK", "", $delivery_price_split[0]);
|
1998 |
+
|
1999 |
$delivery_price = $delivery->addChild('DELIVERY_PRICE', trim(htmlspecialchars($delivery_price_split[0])));
|
2000 |
$delivery_price_cod = $delivery->addChild('DELIVERY_PRICE_COD', trim(htmlspecialchars($delivery_split[6])));
|
2001 |
} else {
|
2005 |
if(in_array($zbozi_id, $zbozi_delivery_id)){
|
2006 |
$delivery_split[2] = $zbozi_id;
|
2007 |
}
|
2008 |
+
}
|
2009 |
+
|
2010 |
+
$delivery_split[3] = str_replace("EUR", "", $delivery_split[3]);
|
2011 |
+
$delivery_split[3] = str_replace("CZK", "", $delivery_split[3]);
|
2012 |
|
2013 |
$delivery_id = $delivery->addChild('DELIVERY_ID', htmlspecialchars($delivery_split[2]));
|
2014 |
$del_price_split = explode(" ",trim($delivery_split[3]));
|
js/woosea_key.js
CHANGED
@@ -26,7 +26,7 @@ jQuery(document).ready(function($) {
|
|
26 |
var license_key = $('#license-key').val();
|
27 |
|
28 |
jQuery.ajax({
|
29 |
-
url: 'https://www.adtribes.io/check/license.php?key=' + license_key + '&email=' + license_email + '&domain=' + root_domain + '&version=11.7.
|
30 |
jsonp: 'callback',
|
31 |
dataType: 'jsonp',
|
32 |
type: 'GET',
|
26 |
var license_key = $('#license-key').val();
|
27 |
|
28 |
jQuery.ajax({
|
29 |
+
url: 'https://www.adtribes.io/check/license.php?key=' + license_key + '&email=' + license_email + '&domain=' + root_domain + '&version=11.7.7',
|
30 |
jsonp: 'callback',
|
31 |
dataType: 'jsonp',
|
32 |
type: 'GET',
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
|
|
5 |
Tags: Google Shopping Feed, Facebook feed, Facebook catalog feed, WooCommerce Product Feed, Product Feed, Bing Shopping Feed, Bing Product Feed, Google Merchant Feed, Skroutz, Google Product Feed, Pinterest, Idealo, Pixels, Conversion API
|
6 |
Requires at least: 4.5
|
7 |
Tested up to: 6.0
|
8 |
-
Stable tag: 11.7.
|
9 |
|
10 |
== Description ==
|
11 |
|
@@ -345,6 +345,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
|
|
345 |
|
346 |
=== Changelog ===
|
347 |
|
|
|
|
|
|
|
348 |
= 11.7.6 (2022-07-31) =
|
349 |
* Added the link_template field for Google Shopping feeds
|
350 |
|
@@ -3761,6 +3764,9 @@ Questions left or unanswered? Please do not hesitate to contact us at support@ad
|
|
3761 |
|
3762 |
== Upgrade Notice ==
|
3763 |
|
|
|
|
|
|
|
3764 |
= 11.7.6 =
|
3765 |
Added the link_template field for Google Shopping feeds
|
3766 |
|
5 |
Tags: Google Shopping Feed, Facebook feed, Facebook catalog feed, WooCommerce Product Feed, Product Feed, Bing Shopping Feed, Bing Product Feed, Google Merchant Feed, Skroutz, Google Product Feed, Pinterest, Idealo, Pixels, Conversion API
|
6 |
Requires at least: 4.5
|
7 |
Tested up to: 6.0
|
8 |
+
Stable tag: 11.7.7
|
9 |
|
10 |
== Description ==
|
11 |
|
345 |
|
346 |
=== Changelog ===
|
347 |
|
348 |
+
= 11.7.7 (2022-08-01) =
|
349 |
+
* Removed currency from Zbozi shipping costs
|
350 |
+
|
351 |
= 11.7.6 (2022-07-31) =
|
352 |
* Added the link_template field for Google Shopping feeds
|
353 |
|
3764 |
|
3765 |
== Upgrade Notice ==
|
3766 |
|
3767 |
+
= 11.7.7 =
|
3768 |
+
Removed currency from Zbozi shipping costs
|
3769 |
+
|
3770 |
= 11.7.6 =
|
3771 |
Added the link_template field for Google Shopping feeds
|
3772 |
|
woocommerce-sea.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Product Feed PRO for WooCommerce
|
4 |
-
* Version: 11.7.
|
5 |
* Plugin URI: https://www.adtribes.io/support/?utm_source=wpadmin&utm_medium=plugin&utm_campaign=woosea_product_feed_pro
|
6 |
* Description: Configure and maintain your WooCommerce product feeds for Google Shopping, Catalog managers, Remarketing, Bing, Skroutz, Yandex, Comparison shopping websites and over a 100 channels more.
|
7 |
* Author: AdTribes.io
|
@@ -48,7 +48,7 @@ if (!defined('ABSPATH')) {
|
|
48 |
* Plugin versionnumber, please do not override.
|
49 |
* Define some constants
|
50 |
*/
|
51 |
-
define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '11.7.
|
52 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
|
53 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
|
54 |
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Product Feed PRO for WooCommerce
|
4 |
+
* Version: 11.7.7
|
5 |
* Plugin URI: https://www.adtribes.io/support/?utm_source=wpadmin&utm_medium=plugin&utm_campaign=woosea_product_feed_pro
|
6 |
* Description: Configure and maintain your WooCommerce product feeds for Google Shopping, Catalog managers, Remarketing, Bing, Skroutz, Yandex, Comparison shopping websites and over a 100 channels more.
|
7 |
* Author: AdTribes.io
|
48 |
* Plugin versionnumber, please do not override.
|
49 |
* Define some constants
|
50 |
*/
|
51 |
+
define( 'WOOCOMMERCESEA_PLUGIN_VERSION', '11.7.7' );
|
52 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME', 'woocommerce-product-feed-pro' );
|
53 |
define( 'WOOCOMMERCESEA_PLUGIN_NAME_SHORT', 'woo-product-feed-pro' );
|
54 |
|