plugin updates
This commit is contained in:
@@ -977,7 +977,7 @@ class Hubwoo_Admin {
|
||||
$single_cart['sent'] = 'yes';
|
||||
}
|
||||
|
||||
$guest_user_properties = apply_filters( 'hubwoo_map_new_abncart_properties', $single_cart['email'], $guest_user_properties );
|
||||
$guest_user_properties = apply_filters( 'hubwoo_map_new_abncart_properties', $guest_user_properties, $single_cart['email'] );
|
||||
|
||||
if ( ! empty( $guest_user_properties ) ) {
|
||||
$guest_abandoned_carts[] = array(
|
||||
|
||||
@@ -1767,7 +1767,7 @@
|
||||
const deal_property = await jQuery.ajax({ type : 'POST', url : ajaxUrl, data : { action : 'hubwoo_deals_create_property', hubwooSecurity, }, dataType : 'json', });
|
||||
|
||||
allCreatedProperties = allCreatedProperties.map((prop) => { return prop.replace(/["']/g, "").trim()})
|
||||
await saveUpdates( { 'hubwoo-groups-created': allCreatedGroups, 'hubwoo-properties-created': allCreatedProperties, 'hubwoo_fields_setup_completed': 1, 'hubwoo_pro_setup_completed': 1, 'hubwoo_plugin_version': '1.5.7' } );
|
||||
await saveUpdates( { 'hubwoo-groups-created': allCreatedGroups, 'hubwoo-properties-created': allCreatedProperties, 'hubwoo_fields_setup_completed': 1, 'hubwoo_pro_setup_completed': 1, 'hubwoo_plugin_version': '1.5.8' } );
|
||||
await runEcommSetup();
|
||||
updateProgressBar( 100 );
|
||||
transferScreen( 'move-to-list' );
|
||||
@@ -2187,6 +2187,13 @@
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
jQuery(document).on('input', '#hubwoo_abncart_timing', function() {
|
||||
var value = jQuery(this).val();
|
||||
if (value < 5 && value !== "") {
|
||||
jQuery(this).val(5);
|
||||
}
|
||||
});
|
||||
},
|
||||
);
|
||||
}( jQuery ) );
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
*** MWB HubSpot for WooCommerce Changelog ***
|
||||
|
||||
|
||||
|
||||
2024-10-24 - version 1.5.8
|
||||
* Fix - Fixed Abandoned Cart bugs.
|
||||
|
||||
2024-08-30 - version 1.5.7
|
||||
* Fix - Bulk line item update.
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ if ( ! class_exists( 'Hubwoo' ) ) {
|
||||
$this->version = HUBWOO_VERSION;
|
||||
} else {
|
||||
|
||||
$this->version = '1.5.7';
|
||||
$this->version = '1.5.8';
|
||||
}
|
||||
|
||||
$this->plugin_name = 'makewebbetter-hubspot-for-woocommerce';
|
||||
@@ -555,7 +555,7 @@ if ( ! class_exists( 'Hubwoo' ) ) {
|
||||
|
||||
if ( self::is_setup_completed() ) {
|
||||
|
||||
return get_option( 'hubwoo_pro_version', '1.5.7' );
|
||||
return get_option( 'hubwoo_pro_version', '1.5.8' );
|
||||
} else {
|
||||
|
||||
return HUBWOO_VERSION;
|
||||
|
||||
@@ -15,11 +15,11 @@
|
||||
* Plugin Name: MWB HubSpot for WooCommerce
|
||||
* Plugin URI: https://wordpress.org/plugins/makewebbetter-hubspot-for-woocommerce
|
||||
* Description: Integrate WooCommerce with HubSpot’s free CRM, abandoned cart tracking, email marketing, marketing automation, analytics & more.
|
||||
* Version: 1.5.7
|
||||
* Version: 1.5.8
|
||||
* Requires at least: 4.4.0
|
||||
* Tested up to: 6.6.1
|
||||
* Tested up to: 6.6.2
|
||||
* WC requires at least: 3.5.0
|
||||
* WC tested up to: 9.2.3
|
||||
* WC tested up to: 9.3.3
|
||||
* Author: MakeWebBetter
|
||||
* Author URI: http://www.makewebbetter.com/?utm_source=MWB-HubspotFree-backend&utm_medium=MWB-backend&utm_campaign=backend
|
||||
* License: GPLv3 or later
|
||||
@@ -109,7 +109,7 @@ if ( $hubwoo_pro_activated && $hubwoo_pro_flag ) {
|
||||
function hubwoo_pro_define_constants() {
|
||||
hubwoo_pro_define( 'HUBWOO_ABSPATH', dirname( __FILE__ ) . '/' );
|
||||
hubwoo_pro_define( 'HUBWOO_URL', plugin_dir_url( __FILE__ ) );
|
||||
hubwoo_pro_define( 'HUBWOO_VERSION', '1.5.7' );
|
||||
hubwoo_pro_define( 'HUBWOO_VERSION', '1.5.8' );
|
||||
hubwoo_pro_define( 'HUBWOO_PLUGINS_PATH', plugin_dir_path( __DIR__ ) );
|
||||
hubwoo_pro_define( 'HUBWOO_CLIENT_ID', '769fa3e6-79b1-412d-b69c-6b8242b2c62a' );
|
||||
hubwoo_pro_define( 'HUBWOO_SECRET_ID', '2893dd41-017e-4208-962b-12f7495d16b0' );
|
||||
|
||||
@@ -3,11 +3,11 @@ Contributors: MakeWebBetter
|
||||
Donate link: https://makewebbetter.com/
|
||||
Tags: abandoned cart, email marketing, marketing automation, woocommerce, hubspot
|
||||
Requires at least: 4.4.0
|
||||
Tested up to: 6.6.1
|
||||
Tested up to: 6.6.2
|
||||
WC requires at least: 3.5.0
|
||||
WC tested up to: 9.2.3
|
||||
WC tested up to: 9.3.3
|
||||
Requires PHP: 5.1
|
||||
Stable tag: 1.5.7
|
||||
Stable tag: 1.5.8
|
||||
License: GPLv3 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
@@ -141,6 +141,8 @@ Please visit the MakeWebBetter [knowledge base](https://support.makewebbetter.co
|
||||
If you have the free HubSpot plan, you can sync Product Name, Product Image, Product Price, Product Description. And if you use a Marketing professional or enterprise plan, you can sync all the data included in the free plan along with the Product SKU and Product Image URL.
|
||||
|
||||
== Changelog ==
|
||||
= 1.5.8 - Released on 24 October 2024 =
|
||||
* Fix - Fixed Abandoned Cart bugs.
|
||||
= 1.5.7 - Released on 30 August 2024 =
|
||||
* Fix - Bulk line item update, filters added.
|
||||
= 1.5.6 - Released on 05 June 2024 =
|
||||
@@ -227,5 +229,5 @@ If you have the free HubSpot plan, you can sync Product Name, Product Image, Pro
|
||||
|
||||
== Upgrade Notice ==
|
||||
|
||||
= 1.5.7 - Released on 30 August 2024 =
|
||||
= 1.5.8 - Released on 24 October 2024 =
|
||||
* Fix - Minor Fixes.
|
||||
|
||||
Reference in New Issue
Block a user