CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.3.89

Version Description

(2021-05-27) = * Fixed: Set woocommerce default country to new feed.

Download this release

Release Info

Developer wahid0003
Plugin Icon 128x128 CTX Feed – WooCommerce Product Feed Manager Plugin
Version 4.3.89
Comparing to
See all releases

Code changes from version 4.3.88 to 4.3.89

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.88
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -501,8 +501,11 @@ Using pro version:
501
 
502
  == Changelog ==
503
 
 
 
 
504
  = 4.3.88 (2021-05-26) =
505
- * Added: Brand taxonomy issue for quick edit fixed.
506
 
507
  = 4.3.87 (2021-05-23) =
508
  * Added: Filter hook added for auto update interval.
5
  Requires at least: 3.6
6
  Tested Up To: 5.7
7
  Requires PHP: 5.6
8
+ Stable tag: 4.3.89
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.89 (2021-05-27) =
505
+ * Fixed: Set woocommerce default country to new feed.
506
+
507
  = 4.3.88 (2021-05-26) =
508
+ * Fixed: Brand taxonomy issue for quick edit fixed.
509
 
510
  = 4.3.87 (2021-05-23) =
511
  * Added: Filter hook added for auto update interval.
admin/partials/woo-feed-content-settings.php CHANGED
@@ -34,8 +34,10 @@ global $feedRules, $wooFeedDropDown, $merchant;
34
  <td>
35
  <select wftitle="<?php esc_attr_e( 'Select a country', 'woo-feed' ); ?>" name="feed_country" id="feed_country" class="generalInput wfmasterTooltip" required>
36
  <?php
 
 
37
  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
38
- echo $wooFeedDropDown->countriesDropdown( $feedRules['feed_country'] );
39
  ?>
40
  </select>
41
  </td>
34
  <td>
35
  <select wftitle="<?php esc_attr_e( 'Select a country', 'woo-feed' ); ?>" name="feed_country" id="feed_country" class="generalInput wfmasterTooltip" required>
36
  <?php
37
+ $shop_country = WC()->countries->get_base_country();
38
+ $default_country = ! empty( $feedRules['feed_country'] ) ? $feedRules['feed_country'] : $shop_country;
39
  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
40
+ echo $wooFeedDropDown->countriesDropdown( $default_country );
41
  ?>
42
  </select>
43
  </td>
includes/class-woo-feed-installer.php CHANGED
@@ -41,8 +41,7 @@ class Woo_Feed_installer {
41
  * @return array
42
  */
43
  public static function cron_schedules( $schedules ) {
44
- $get_interval = get_option( 'wf_schedule' );
45
- $interval = apply_filters('woo_feed_update_interval', $get_interval);
46
  $schedules['woo_feed_corn'] = array(
47
  'display' => esc_html__( 'Woo Feed Update Interval', 'woo-feed' ),
48
  'interval' => $interval,
41
  * @return array
42
  */
43
  public static function cron_schedules( $schedules ) {
44
+ $interval = get_option( 'wf_schedule' );
 
45
  $schedules['woo_feed_corn'] = array(
46
  'display' => esc_html__( 'Woo Feed Update Interval', 'woo-feed' ),
47
  'interval' => $interval,
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.88
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.88' );
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.89
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.89' );
43
  }
44
 
45
  if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {