Version Description
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 3.1.17 |
Comparing to | |
See all releases |
Code changes from version 3.1.16 to 3.1.17
- README.txt +4 -1
- includes/classes/class-woo-feed-savefile.php +2 -0
- 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.16(2019-07-25) =
|
308 |
* Fixed: google_attributes option issue fixed
|
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.17
|
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.17(2019-07-29) =
|
308 |
+
* Fixed: feed files permission issue fixed
|
309 |
+
|
310 |
= 3.1.16(2019-07-25) =
|
311 |
* Fixed: google_attributes option issue fixed
|
312 |
|
includes/classes/class-woo-feed-savefile.php
CHANGED
@@ -68,6 +68,7 @@ class Woo_Feed_Savefile
|
|
68 |
}
|
69 |
|
70 |
fclose($fp);
|
|
|
71 |
update_option("WPF_DIRECTORY_PERMISSION_CHECK","");
|
72 |
return true;
|
73 |
} else {
|
@@ -92,6 +93,7 @@ class Woo_Feed_Savefile
|
|
92 |
$fp = fopen($file, "wb");
|
93 |
fwrite($fp, $content);
|
94 |
fclose($fp);
|
|
|
95 |
update_option("WPF_DIRECTORY_PERMISSION_CHECK","");
|
96 |
return true;
|
97 |
} else {
|
68 |
}
|
69 |
|
70 |
fclose($fp);
|
71 |
+
chmod($file, 0777);
|
72 |
update_option("WPF_DIRECTORY_PERMISSION_CHECK","");
|
73 |
return true;
|
74 |
} else {
|
93 |
$fp = fopen($file, "wb");
|
94 |
fwrite($fp, $content);
|
95 |
fclose($fp);
|
96 |
+
chmod($file, 0777);
|
97 |
update_option("WPF_DIRECTORY_PERMISSION_CHECK","");
|
98 |
return true;
|
99 |
} else {
|
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.17
|
20 |
* Author: WebAppick
|
21 |
* Author URI: https://webappick.com/
|
22 |
* License: GPL v2
|
36 |
exit;
|
37 |
}
|
38 |
|
39 |
+
define("WOO_FEED_VERSION", "3.1.17");
|
40 |
|
41 |
/**
|
42 |
* The core plugin class that is used to define internationalization,
|