Version Description
(2021-05-10) = * Fixed: Status tab active issue fixed.
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 4.3.82 |
Comparing to | |
See all releases |
Code changes from version 4.3.81 to 4.3.82
- README.txt +4 -1
- admin/partials/woo-feed-status.php +2 -2
- woo-feed.php +2 -2
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: Product Feed, WooCommerce, Google Shopping, Google Merchant, Facebook Cata
|
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.7
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 4.3.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -501,6 +501,9 @@ Using pro version:
|
|
501 |
|
502 |
== Changelog ==
|
503 |
|
|
|
|
|
|
|
504 |
= 4.3.81 (2021-05-07) =
|
505 |
* Added: New attribute Product Description (with HTML) added. This attribute will return product description with HTML tags.
|
506 |
|
5 |
Requires at least: 3.6
|
6 |
Tested Up To: 5.7
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 4.3.82
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
501 |
|
502 |
== Changelog ==
|
503 |
|
504 |
+
= 4.3.82 (2021-05-10) =
|
505 |
+
* Fixed: Status tab active issue fixed.
|
506 |
+
|
507 |
= 4.3.81 (2021-05-07) =
|
508 |
* Added: New attribute Product Description (with HTML) added. This attribute will return product description with HTML tags.
|
509 |
|
admin/partials/woo-feed-status.php
CHANGED
@@ -29,12 +29,12 @@
|
|
29 |
'tab' => 'log-tab',
|
30 |
],admin_url('admin.php?page=webappick-wp-status'));
|
31 |
|
32 |
-
$tab_name= isset($_GET['tab'])?sanitize_text_field($_GET['tab']):false; //phpcs:ignore
|
33 |
|
34 |
?>
|
35 |
|
36 |
<h2 class="nav-tab-wrapper">
|
37 |
-
<a href="<?php echo esc_url($status_tab); ?>" class="nav-tab <?php echo esc_html((
|
38 |
<a href="<?php echo esc_url($log_tab); ?>" class="nav-tab <?php echo esc_html((isset($tab_name) && 'log-tab' === $tab_name) ? 'nav-tab-active' : ''); ?>">Logs</a>
|
39 |
</h2>
|
40 |
|
29 |
'tab' => 'log-tab',
|
30 |
],admin_url('admin.php?page=webappick-wp-status'));
|
31 |
|
32 |
+
$tab_name= isset($_GET['tab'])? sanitize_text_field($_GET['tab']) : false; //phpcs:ignore
|
33 |
|
34 |
?>
|
35 |
|
36 |
<h2 class="nav-tab-wrapper">
|
37 |
+
<a href="<?php echo esc_url($status_tab); ?>" class="nav-tab <?php echo esc_html( ( !$tab_name || 'status-tab' === $tab_name ) ? 'nav-tab-active' : ''); ?>">Status</a>
|
38 |
<a href="<?php echo esc_url($log_tab); ?>" class="nav-tab <?php echo esc_html((isset($tab_name) && 'log-tab' === $tab_name) ? 'nav-tab-active' : ''); ?>">Logs</a>
|
39 |
</h2>
|
40 |
|
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.3.
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|
@@ -39,7 +39,7 @@ if ( ! defined( 'WOO_FEED_FREE_VERSION' ) ) {
|
|
39 |
* @var string
|
40 |
* @since 3.1.6
|
41 |
*/
|
42 |
-
define( 'WOO_FEED_FREE_VERSION', '4.3.
|
43 |
}
|
44 |
|
45 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|
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.3.82
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|
39 |
* @var string
|
40 |
* @since 3.1.6
|
41 |
*/
|
42 |
+
define( 'WOO_FEED_FREE_VERSION', '4.3.82' );
|
43 |
}
|
44 |
|
45 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|