Version Description
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 3.1.15 |
Comparing to | |
See all releases |
Code changes from version 3.1.14 to 3.1.15
- README.txt +4 -1
- admin/partials/woo-feed-manage-list.php +4 -2
- woo-feed.php +2 -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.2
|
7 |
-
Stable tag: 3.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -304,6 +304,9 @@ Using pro version:
|
|
304 |
|
305 |
== Changelog ==
|
306 |
|
|
|
|
|
|
|
307 |
= 3.1.14(2019-07-23) =
|
308 |
* Added: modina.de template added
|
309 |
|
4 |
Tags:woocommerce,google product feed,facebook product feed,woocommerce product feed,woocommerce,
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.2
|
7 |
+
Stable tag: 3.1.15
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
304 |
|
305 |
== Changelog ==
|
306 |
|
307 |
+
= 3.1.15(2019-07-24) =
|
308 |
+
* Fixed: Cross-site scripting (XSS) vulnerability issue resolved
|
309 |
+
|
310 |
= 3.1.14(2019-07-23) =
|
311 |
* Added: modina.de template added
|
312 |
|
admin/partials/woo-feed-manage-list.php
CHANGED
@@ -59,8 +59,10 @@ if(isset($_POST)&& isset($_POST['filename'])){
|
|
59 |
|
60 |
<?php
|
61 |
|
62 |
-
|
63 |
-
|
|
|
|
|
64 |
if (isset($_GET['cat']) && $_GET['cat']=='no') {
|
65 |
$message.="<br/><br/><b style='color: #f49242;'>Warning:</b><ul>Google Product category is not selected. Your AdWords CPC rate will be high. Add proper Google Product Category to each product & reduce CPC rate. <a target='_blank' href='https://webappick.helpscoutdocs.com/article/19-how-to-map-store-category-with-merchant-category'>Learn more...</a> </li></ul>";
|
66 |
}
|
59 |
|
60 |
<?php
|
61 |
|
62 |
+
$link = filter_input( INPUT_GET, 'link', FILTER_VALIDATE_URL );
|
63 |
+
|
64 |
+
if (isset($link) && !empty($link)) {
|
65 |
+
$message="<b style='color: #008779;'>Feed Generated Successfully. Feed URL: <a href=".esc_url($link)." target='_blank'>".esc_url($link)."</a></b>";
|
66 |
if (isset($_GET['cat']) && $_GET['cat']=='no') {
|
67 |
$message.="<br/><br/><b style='color: #f49242;'>Warning:</b><ul>Google Product category is not selected. Your AdWords CPC rate will be high. Add proper Google Product Category to each product & reduce CPC rate. <a target='_blank' href='https://webappick.helpscoutdocs.com/article/19-how-to-map-store-category-with-merchant-category'>Learn more...</a> </li></ul>";
|
68 |
}
|
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.1.
|
20 |
* Author: WebAppick
|
21 |
* Author URI: https://webappick.com/
|
22 |
* License: GPL v2
|
@@ -36,7 +36,7 @@ if (!defined('ABSPATH')) {
|
|
36 |
exit;
|
37 |
}
|
38 |
|
39 |
-
define("WOO_FEED_VERSION", "3.1.
|
40 |
|
41 |
/**
|
42 |
* The core plugin class that is used to define internationalization,
|
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.1.15
|
20 |
* Author: WebAppick
|
21 |
* Author URI: https://webappick.com/
|
22 |
* License: GPL v2
|
36 |
exit;
|
37 |
}
|
38 |
|
39 |
+
define("WOO_FEED_VERSION", "3.1.15");
|
40 |
|
41 |
/**
|
42 |
* The core plugin class that is used to define internationalization,
|