Plugin Directory

Changeset 3346776


Ignore:
Timestamp:
08/19/2025 06:33:34 AM (7 months ago)
Author:
mailerlite
Message:

updated to 3.0.6

Location:
woo-mailerlite/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • woo-mailerlite/trunk/admin/controllers/WooMailerLiteAdminSettingsController.php

    r3344677 r3346776  
    170170            WooMailerLiteOptions::update('group', ['id' => $response->data->id, 'name' => $response->data->name]);
    171171        }
    172         $shopName = get_bloginfo('name') ?? home_url();
     172        $shopName = get_bloginfo('name');
     173        $shopName = !empty($shopName) ? $shopName : home_url();
    173174        $shopId = WooMailerLiteOptions::get('shopId');
    174175        $currency = get_option('woocommerce_currency');
  • woo-mailerlite/trunk/includes/api/WooMailerLiteClassicApi.php

    r3338878 r3346776  
    6565    }
    6666
     67    public function syncCategory()
     68    {
     69        return $this->successResponse();
     70    }
     71
    6772    public function createField($params)
    6873    {
  • woo-mailerlite/trunk/includes/controllers/WooMailerLiteOrderController.php

    r3346224 r3346776  
    5555            $customerFields = array_intersect_key($filteredCustomerData, array_flip($syncFields));
    5656            $subscribe = false;
    57             if (isset($cart->susbscribe)) {
    58                 $subscribe = $cart->susbscribe;
     57            if (isset($cart->subscribe)) {
     58                $subscribe = $cart->subscribe;
    5959            }
    6060            if (WooMailerLiteOptions::get("settings.checkoutHidden")) {
  • woo-mailerlite/trunk/readme.txt

    r3346224 r3346776  
    66Tested up to: 6.8.2
    77Requires PHP: 7.2.5
    8 Stable tag: 3.0.5
     8Stable tag: 3.0.6
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    8585== Changelog ==
    8686
     87= 3.0.6 (18th August 2025) =
     88* Bug fixes and improvements
     89
    8790= 3.0.5 (18th August 2025) =
    8891* Bug fixes and improvements
  • woo-mailerlite/trunk/woo-mailerlite.php

    r3346224 r3346776  
    1616 * Plugin URI:        https://wordpress.org/plugins/woo-mailerlite/
    1717 * Description:       Official MailerLite integration for WooCommerce. Track sales and campaign ROI, import products details, automate emails based on purchases and seamlessly add your customers to your email marketing lists via WooCommerce's checkout process.
    18  * Version:           3.0.5
     18 * Version:           3.0.6
    1919 * Author:            MailerLite
    2020 * Author URI:        https://mailerlite.com
     
    4040 * Update when you release new versions.
    4141 */
    42 define( 'WOO_MAILERLITE_VERSION', '3.0.5' );
     42define( 'WOO_MAILERLITE_VERSION', '3.0.6' );
    4343
    4444define('WOO_MAILERLITE_ASYNC_JOBS', false);
Note: See TracChangeset for help on using the changeset viewer.