/home/lnzliplg/www/wp-content/themes/flex-ecommerce-store/inc/dashboard/js/notice.js
jQuery("body").on("click", '#flex-ecommerce-store-welcome-notice .notice-dismiss', function (event) {
    event.preventDefault();

    console.log("close clicked");

    jQuery.ajax({
      type: 'POST',
      url: ajaxurl,
      data: {
          action: 'flex_ecommerce_store_dismissed_notice',
      },
      success: function () {
          // Remove the notice on success
          $('.notice[data-notice="example"]').remove();
      }
    });
  }
)