Skip to content

A comprehensive membership plugin with customizable dashboard and payment integration

Notifications You must be signed in to change notification settings

muhfaris/member-zone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Member Zone

Screenshot

Settings

image

Membership

image

Member list

image

Custom hooks registration

// Add content before the registration form
add_action('memberzone_before_registration_form', function() {
    echo '<p class="memberzone-form-intro">' . esc_html__('Please fill out the form below to register.', 'memberzone') . '</p>';
});

// Add a custom field after the username field
add_action('memberzone_after_username_field', function() {
    echo '<div class="memberzone-field-group">';
    echo '<input type="text" name="first_name" placeholder="' . esc_attr__('First Name', 'memberzone') . '" class="memberzone-input memberzone-first-name">';
    echo '</div>';
});

// Add content after the registration form
add_action('memberzone_after_registration_form', function() {
    echo '<p class="memberzone-form-footer">' . esc_html__('Thank you for registering!', 'memberzone') . '</p>';
});

Add filter and action registration

add_filter('memberzone_registration_username', function($username) {
    return strtoupper($username); // Example: Convert username to uppercase
});
add_action('memberzone_after_user_registration', function($user_id, $membership_level) {
    // Custom code, like sending a welcome email
    wp_mail(get_userdata($user_id)->user_email, 'Welcome!', 'Thank you for registering.');
}, 10, 2);

About

A comprehensive membership plugin with customizable dashboard and payment integration

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published