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/app/views/admin/members/list.php
<?php if (!defined('ABSPATH')) {
    die('You are not allowed to call this page directly.');
} ?>
<div class="wrap">
  <h2>
    <?php esc_html_e('Members', 'memberpress'); ?>
    <?php MeprHooks::do_action('mepr_after_admin_members_heading'); ?>
    <a href="<?php echo esc_url(admin_url('admin.php?page=memberpress-members&action=new')); ?>" class="add-new-h2"><?php esc_html_e('Add New', 'memberpress'); ?></a>
  </h2>

  <?php if (!isset($errors)) {
      // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
        $errors = '';
  } ?>
  <?php MeprView::render('/admin/errors', compact('errors', 'message')); ?>

  <?php
    $migrating = get_transient('mepr_members_migrate_start');
    if (isset($migrating) && $migrating) { ?>
      <div class="notice notice-warning">
        <p>Your Members data is currently being migrated so that active and inactive memberships will now appear in separate columns.</p>
        <p>This message will disappear when it is completed. If you see this message for more than a few days, please contact MemberPress support.</p>
      </div>
    <?php } ?>

  <?php $list_table->display(); ?>
</div>