PluginProbe
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor / 4.0.3
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor v4.0.3
4.0.3 4.0.2 4.0.1 4.0.0 3.16.6 3.16.5 3.16.4 3.16.3 3.16.2 3.16.1 3.16.0 3.15.9 3.9.9 3.9.5 3.9.6 3.9.7 3.9.8 1.1.7 1.1.8 1.1.9 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 All 341 releases
← All changes | assets/lib/wck-api/wordpress-creation-kit.js +12 -1 3.9.8 → 4.0.3 View file →
@@ -70,9 +70,20 @@
70 70 jQuery.each( response.errorfields, function (index, field) {
71 71 jQuery( '#'+value+' .field-label[for="' + field + '"]' ).addClass('error');
72 72 });
73 73
74 - alert( response.error );
74 + // Extend with a custom tooltip instead of alert
75 + jQuery('<div>' + response.error + '</div>').dialog({
76 + modal: true,
77 + title: 'Error',
78 + width: 400,
79 + minHeight: 200,
80 + buttons: {
81 + Ok: function() {
82 + jQuery(this).dialog('close');
83 + }
84 + }
85 + });
75 86 }
76 87 else{
77 88 /* refresh the list */
78 89 jQuery('#container_'+value).replaceWith(response.entry_list);