Changeset 3346776
- Timestamp:
- 08/19/2025 06:33:34 AM (7 months ago)
- Location:
- woo-mailerlite/trunk
- Files:
-
- 5 edited
-
admin/controllers/WooMailerLiteAdminSettingsController.php (modified) (1 diff)
-
includes/api/WooMailerLiteClassicApi.php (modified) (1 diff)
-
includes/controllers/WooMailerLiteOrderController.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
woo-mailerlite.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-mailerlite/trunk/admin/controllers/WooMailerLiteAdminSettingsController.php
r3344677 r3346776 170 170 WooMailerLiteOptions::update('group', ['id' => $response->data->id, 'name' => $response->data->name]); 171 171 } 172 $shopName = get_bloginfo('name') ?? home_url(); 172 $shopName = get_bloginfo('name'); 173 $shopName = !empty($shopName) ? $shopName : home_url(); 173 174 $shopId = WooMailerLiteOptions::get('shopId'); 174 175 $currency = get_option('woocommerce_currency'); -
woo-mailerlite/trunk/includes/api/WooMailerLiteClassicApi.php
r3338878 r3346776 65 65 } 66 66 67 public function syncCategory() 68 { 69 return $this->successResponse(); 70 } 71 67 72 public function createField($params) 68 73 { -
woo-mailerlite/trunk/includes/controllers/WooMailerLiteOrderController.php
r3346224 r3346776 55 55 $customerFields = array_intersect_key($filteredCustomerData, array_flip($syncFields)); 56 56 $subscribe = false; 57 if (isset($cart->su sbscribe)) {58 $subscribe = $cart->su sbscribe;57 if (isset($cart->subscribe)) { 58 $subscribe = $cart->subscribe; 59 59 } 60 60 if (WooMailerLiteOptions::get("settings.checkoutHidden")) { -
woo-mailerlite/trunk/readme.txt
r3346224 r3346776 6 6 Tested up to: 6.8.2 7 7 Requires PHP: 7.2.5 8 Stable tag: 3.0. 58 Stable tag: 3.0.6 9 9 License: GPLv3 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 85 85 == Changelog == 86 86 87 = 3.0.6 (18th August 2025) = 88 * Bug fixes and improvements 89 87 90 = 3.0.5 (18th August 2025) = 88 91 * Bug fixes and improvements -
woo-mailerlite/trunk/woo-mailerlite.php
r3346224 r3346776 16 16 * Plugin URI: https://wordpress.org/plugins/woo-mailerlite/ 17 17 * 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. 518 * Version: 3.0.6 19 19 * Author: MailerLite 20 20 * Author URI: https://mailerlite.com … … 40 40 * Update when you release new versions. 41 41 */ 42 define( 'WOO_MAILERLITE_VERSION', '3.0. 5' );42 define( 'WOO_MAILERLITE_VERSION', '3.0.6' ); 43 43 44 44 define('WOO_MAILERLITE_ASYNC_JOBS', false);
Note: See TracChangeset
for help on using the changeset viewer.