HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux bsx-1-dev 6.8.0-101-generic #101-Ubuntu SMP PREEMPT_DYNAMIC Mon Feb 9 10:15:05 UTC 2026 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/memberpress/js/admin_shared.js
jQuery(document).ready(function($) {
  // Login form shortcode
  if($('#_mepr_manual_login_form').is(":checked")) {
    $('div#mepr-shortcode-login-page-area').show();
  } else {
    $('div#mepr-shortcode-login-page-area').hide();
  }

  $('#_mepr_manual_login_form').on('click' , function() {
    $('div#mepr-shortcode-login-page-area').slideToggle();
  });

  // Unauthorized stuff
  var unauth_tgl_ids = {
    excerpt: {
      src: '_mepr_unauth_excerpt_type',
      target: '_mepr_unauth_excerpt_type-size'
    },
    message: {
      src: '_mepr_unauthorized_message_type',
      target: '_mepr_unauthorized_message_type-editor'
    }
  };

  var unauth_tgl = function(src,target) {
    if($('#'+src).val()=='custom')
      $('#'+target).slideDown();
    else
      $('#'+target).slideUp();
  };

  unauth_tgl(unauth_tgl_ids.excerpt.src,unauth_tgl_ids.excerpt.target);
  $('#'+unauth_tgl_ids.excerpt.src).on('change', function() {
    unauth_tgl(unauth_tgl_ids.excerpt.src,unauth_tgl_ids.excerpt.target);
  });

  unauth_tgl(unauth_tgl_ids.message.src,unauth_tgl_ids.message.target);
  $('#'+unauth_tgl_ids.message.src).on('change', function() {
    unauth_tgl(unauth_tgl_ids.message.src,unauth_tgl_ids.message.target);
  });

  $('table.wp-list-table tr').on('mouseenter',
    function(e) {
      $(this).find('.mepr-row-actions').css('visibility','visible');
    }
  );
  $('table.wp-list-table tr').on('mouseleave',
    function(e) {
      $(this).find('.mepr-row-actions').css('visibility','hidden');
    }
  );

  $( '.mepr-auto-trim' ).on('blur', function(e) {
    var value = $(this).val();
    $(this).val( value.trim() );
  });

  $('.mepr-slide-toggle').on('click', function(e) {
    e.preventDefault();
    $($(this).attr('data-target')).slideToggle();
  });

  //Change mouse pointer over li items
  $('body').on('mouseenter', '.mepr-sortable li', function() {
    $(this).addClass('mepr-hover');
  });
  $('body').on('mouseleave', '.mepr-sortable li', function() {
    $(this).removeClass('mepr-hover');
  });

  //Change mouse pointer over drag target
  $('body').on('mouseenter', '.mp-icon-drag-target', function() {
    $(this).addClass('mepr-hover');
  });
  $('body').on('mouseleave', '.mp-icon-drag-target', function() {
    $(this).removeClass('mepr-hover');
  });



  $('.mepr-admin-notice.mepr-auto-open').each( function() {
    var _this = this;

    $.magnificPopup.open({
      items: {
        src: _this,
        type: 'inline'
      }
    });
  });

  var mepr_stop_addon_notices = function(addon, cb) {
    var args = {
      action: 'mepr_addon_stop_notice',
      addon: addon,
    };

    $.post(ajaxurl, args, cb, 'json');
  };

  $('.mepr-addon-stop-notices').on('click', function() {
    var _this = this;
    mepr_stop_addon_notices($(this).parent().data('addon'), function(response) {
      if(typeof response.error === 'undefined') {
        $.magnificPopup.close();
      }
      else {
        alert(response.error);
        $.magnificPopup.close();
      }
    });
  });

  $('.mepr-addon-activate, .mepr-addon-install').on('click', function() {
    var _this = this;
    mepr_stop_addon_notices($(this).parent().data('addon'), function(response) {
      if(typeof response.error === 'undefined') {
        location.href = $(_this).data('href');
      }
      else {
        alert(response.error);
        $.magnificPopup.close();
      }
    });
  });

  $('.mepr-confirm').on('click', function(e) {
    var confirm_message = $(this).data('message');

    if(!confirm(confirm_message)) {
      e.preventDefault();
    }
  });

  $('body').on('click', '#mepr_stripe_connect_upgrade_notice button.notice-dismiss', function(e){
    Cookies.set('mepr_stripe_connect_upgrade_dismissed', '1', { expires: 1, path: '/' });
  });

  $('body').on('click', '#mepr_paypal_connect_upgrade_notice button.notice-dismiss', function(e){
    Cookies.set('mepr_paypal_connect_upgrade_dismissed', '1', { expires: 1, path: '/' });
  });

  // Show notifications on page load for query show=notifications
  if (window.meprIpnInbox) {
    const urlParams = new URLSearchParams(window.location.search);
    if (urlParams.has('show') && 'notifications' === urlParams.get('show')) {
      window.meprIpnInbox.open();
    }
  }

  $('body').on('click', '.mepr-notice-dismiss-permanently button.notice-dismiss', function () {
    $.ajax({
      url: MeprAdminShared.ajax_url,
      method: 'POST',
      data: {
        action: 'mepr_dismiss_notice',
        _ajax_nonce: MeprAdminShared.dismiss_notice_nonce,
        notice: $(this).closest('.notice').data('notice')
      }
    })
  });

  $('body').on('click', '.mepr-global-notice-dismiss-permanently button.notice-dismiss', function () {
    $.ajax({
      url: MeprAdminShared.ajax_url,
      method: 'POST',
      data: {
        action: 'mepr_dismiss_global_notice',
        _ajax_nonce: MeprAdminShared.dismiss_notice_nonce,
        notice: $(this).closest('.notice').data('notice')
      }
    })
  });

  $('body').on('click', '.mepr-notice-dismiss-daily button.notice-dismiss', function () {
    $.ajax({
      url: MeprAdminShared.ajax_url,
      method: 'POST',
      data: {
        action: 'mepr_dismiss_daily_notice',
        _ajax_nonce: MeprAdminShared.dismiss_notice_nonce,
        notice: $(this).closest('.notice').data('notice')
      }
    })
  });

  $('body').on('click', '.mepr-notice-dismiss-weekly button.notice-dismiss', function () {
    $.ajax({
      url: MeprAdminShared.ajax_url,
      method: 'POST',
      data: {
        action: 'mepr_dismiss_weekly_notice',
        _ajax_nonce: MeprAdminShared.dismiss_notice_nonce,
        notice: $(this).closest('.notice').data('notice')
      }
    })
  });

  $('body').on('click', '.notice.is-dismissible .mepr-dismiss-this-notice', function (e) {
    e.preventDefault();
    $(this).closest('.notice').find('button.notice-dismiss').trigger('click');
  });

  $('body').on('click', '.mepr-notice-dismiss-24hour button.notice-dismiss', function (e) {

    var notice = $(this).closest('.notice');

    if( notice.hasClass('mepr-notice-dismiss-fee-notice') ){
      return;
    }

    $.ajax({
      url: MeprAdminShared.ajax_url,
      method: 'POST',
      data: {
        action: 'mepr_dismiss_notice_drm',
        _ajax_nonce: MeprAdminShared.dismiss_notice_nonce,
        notice: notice.data('notice'),
        secret: notice.data('secret')
      }
    })
  });

  $('body').on('click', '.mepr-notice-dismiss-fee-notice button.notice-dismiss', function (e) {

    $.ajax({
      url: MeprAdminShared.ajax_url,
      method: 'POST',
      data: {
        action: 'mepr_dismiss_fee_notice_drm',
        _ajax_nonce: MeprAdminShared.dismiss_notice_nonce,
      }
    })
  });

  $('body').on('click', 'a.mepr-btn-fee-learnmore', function (e) {
    e.preventDefault();
    $('#mepr-drm-fee-notice-wrapper').hide();
    $('body').addClass('mepr-locked mepr-notice-modal-active');
  });

  var enabling_stripe_tax = false;

  $('#mepr-enable-stripe-tax').on('click', function () {
    var $button = $(this),
        button_html = $button.html(),
        button_width = $button.width();

    if(enabling_stripe_tax) {
      return;
    }

    enabling_stripe_tax = true;
    $button.width(button_width).html('<i class="mp-icon mp-icon-spinner animate-spin"></i>');

    $.ajax({
      url: MeprAdminShared.ajax_url,
      method: 'POST',
      data: {
        action: 'mepr_enable_stripe_tax',
        _ajax_nonce: MeprAdminShared.enable_stripe_tax_nonce,
        gateway_id: $button.data('gateway-id')
      }
    })
    .done(function (response) {
      if(response && typeof response.success === 'boolean') {
        if(response.success) {
          $.magnificPopup.open({
            mainClass: 'mepr-shared-mfp',
            items: {
              src: '#mepr-stripe-tax-enabled-popup',
              type: 'inline'
            }
          });

          $button.closest('.notice').remove();
        }
        else if(response.data === false) {
          $.magnificPopup.open({
            mainClass: 'mepr-shared-mfp',
            items: {
              src: '#mepr-stripe-tax-inactive-popup',
              type: 'inline'
            }
          });
        }
      }
      else {
        alert('Request failed.');
      }
    })
    .fail(function () {
      alert('Request failed.');
    })
    .always(function () {
      $button.html(button_html).width('auto');
      enabling_stripe_tax = false;
    });
  });

  $('#mepr-enable-stripe-tax-no').on('click', function (e) {
    e.preventDefault();

    $.ajax({
      url: MeprAdminShared.ajax_url,
      method: 'POST',
      data: {
        action: 'mepr_dismiss_stripe_tax_notice',
        _ajax_nonce: MeprAdminShared.dismiss_notice_nonce,
      }
    });

    if($.magnificPopup) {
      $.magnificPopup.open({
        mainClass: 'mepr-shared-mfp',
        items: {
          src: '#mepr-stripe-tax-no-popup',
          type: 'inline'
        }
      });
    }

    $(this).closest('.notice').remove();
  });
});