plugin updates

This commit is contained in:
Tony Volpe
2024-10-24 12:57:16 -04:00
parent 8217f0dbed
commit 5e040c9234
399 changed files with 3377 additions and 46318 deletions

View File

@@ -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(

View File

@@ -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 ) );