Gifari Industries - BD Cyber Security Team
Home
/
home
/
decohaslibrary
/
bist
/
wp-content
/
plugins
/
user-registration
/
assets
/
js
/
admin
/
✏️
Editing: ur-notice.js
jQuery(function ($) { // Review notice. $(".user-registration-notice").each(function () { $(this) .find(".notice-dismiss") .on("click", function (e) { e.preventDefault(); var notice_type = $(this) .closest(".user-registration-notice") .data("purpose"), notice_id = $(this) .closest(".user-registration-notice") .data("notice-id"), notice_type_nonce = notice_type + "_nonce", dismiss_forever = $(this).hasClass( "notice-dismiss-permanently" ); $(this) .closest("#user-registration-" + notice_id + "-notice") .hide(); var data = { action: "user_registration_dismiss_notice", security: ur_notice_params[notice_type_nonce], notice_type: notice_type, notice_id: notice_id, dismissed: true, dismiss_forever: dismiss_forever, }; $.post(ur_notice_params.ajax_url, data, function (response) { // Success. Do nothing. Silence is golden. }); }); }); });
💾 Save
❌ Cancel