Version Description
(2020-10-26) = * Fix: Switcher activation issue.
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 4.1.0 |
Comparing to | |
See all releases |
Code changes from version 4.0.9 to 4.1.0
- README.txt +4 -1
- woo-feed.php +3 -3
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags:product feed,woocommerce product feed,google shopping feed,google shopping,
|
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.5
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 4.0
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -308,6 +308,9 @@ Using pro version:
|
|
308 |
|
309 |
== Changelog ==
|
310 |
|
|
|
|
|
|
|
311 |
= 4.0.9 (2020-10-22) =
|
312 |
* Fix: Helper functions error solved.
|
313 |
* Tweak: Performance enhancement.
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.5
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 4.1.0
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
308 |
|
309 |
== Changelog ==
|
310 |
|
311 |
+
= 4.1.0 (2020-10-26) =
|
312 |
+
* Fix: Switcher activation issue.
|
313 |
+
|
314 |
= 4.0.9 (2020-10-22) =
|
315 |
* Fix: Helper functions error solved.
|
316 |
* Tweak: Performance enhancement.
|
woo-feed.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: WooCommerce Product 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.0
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|
@@ -38,7 +38,7 @@ if ( ! defined( 'WOO_FEED_FREE_VERSION' ) ) {
|
|
38 |
* @var string
|
39 |
* @since 3.1.6
|
40 |
*/
|
41 |
-
define( 'WOO_FEED_FREE_VERSION', '4.0
|
42 |
}
|
43 |
|
44 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|
@@ -798,7 +798,7 @@ if ( ! function_exists( 'woo_feed_update_feed_status' ) ) {
|
|
798 |
$feedName = isset( $_POST['feedName'] ) ? sanitize_text_field( wp_unslash( $_POST['feedName'] ) ) : '';
|
799 |
if ( ! empty( $feedName ) ) {
|
800 |
$feedInfo = maybe_unserialize( get_option( $feedName ) );
|
801 |
-
$feedInfo['status'] = isset( $_POST['status'] ) && 1 === $_POST['status'] ? 1 : 0;
|
802 |
|
803 |
$feed_slug = str_replace('wf_feed_','wf_config',$feedName);
|
804 |
if ( 1 === $feedInfo['status'] ) {
|
10 |
* Plugin Name: WooCommerce Product 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.1.0
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|
38 |
* @var string
|
39 |
* @since 3.1.6
|
40 |
*/
|
41 |
+
define( 'WOO_FEED_FREE_VERSION', '4.1.0' );
|
42 |
}
|
43 |
|
44 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|
798 |
$feedName = isset( $_POST['feedName'] ) ? sanitize_text_field( wp_unslash( $_POST['feedName'] ) ) : '';
|
799 |
if ( ! empty( $feedName ) ) {
|
800 |
$feedInfo = maybe_unserialize( get_option( $feedName ) );
|
801 |
+
$feedInfo['status'] = isset( $_POST['status'] ) && 1 === (int) $_POST['status'] ? 1 : 0;
|
802 |
|
803 |
$feed_slug = str_replace('wf_feed_','wf_config',$feedName);
|
804 |
if ( 1 === $feedInfo['status'] ) {
|