jQuery(document).ready(function () { /* If there are required actions, add an icon with the number of required actions in the About activello page -> Actions required tab */ var activello_nr_actions_required = activelloWelcomeScreenObject.nr_actions_required; if ((typeof activello_nr_actions_required !== 'undefined') && (activello_nr_actions_required != '0')) { jQuery('li.activello-w-red-tab a').append('' + activello_nr_actions_required + ''); } /* Dismiss required actions */ jQuery(".activello-required-action-button").click(function () { var id = jQuery(this).attr('id'), action = jQuery(this).attr('data-action'); jQuery.ajax({ type : "GET", data : { action: 'activello_dismiss_required_action', id: id, todo: action }, dataType : "html", url : activelloWelcomeScreenObject.ajaxurl, beforeSend: function (data, settings) { jQuery('.activello-tab-pane#actions_required h1').append('
'); }, success : function (data) { location.reload(); jQuery("#temp_load").remove(); /* Remove loading gif */ }, error : function (jqXHR, textStatus, errorThrown) { console.log(jqXHR + " :: " + textStatus + " :: " + errorThrown); } }); }); /* Dismiss recommended plugins */ jQuery(".activello-recommended-plugin-button").click(function () { var id = jQuery(this).attr('id'), action = jQuery(this).attr('data-action'); jQuery.ajax({ type : "GET", data : { action: 'activello_dismiss_recommended_plugins', id: id, todo: action }, dataType : "html", url : activelloWelcomeScreenObject.ajaxurl, beforeSend: function (data, settings) { jQuery('.activello-tab-pane#actions_required h1').append('
'); }, success : function (data) { location.reload(); jQuery("#temp_load").remove(); /* Remove loading gif */ }, error : function (jqXHR, textStatus, errorThrown) { console.log(jqXHR + " :: " + textStatus + " :: " + errorThrown); } }); }); });