Managing Subscribers
Everything you need to manage your paying readers â view their status, assign plans manually for offline payments, edit access, export data, and understand the full email automation system.
On this page
Subscriber Columns in Users List
After installing MyPaywall, three new columns appear in WP Admin â Users:
- Plan â Shows the subscriber's current plan name as a colour-coded badge. Green = active subscription, Red = expired.
- Access Expires â The expiry date. If the subscription expires within 7 days, the date shows in amber with a "N days left" warning.
- Amount Paid â The last payment amount in âš or $ depending on which gateway was used.
The Access Expires column is sortable. Click the column header to sort all users by expiry date â ascending to see who is about to expire, descending to see newest subscribers first.
Regular WordPress users (admins, editors, regular subscribers without a paid plan) show a dash (â) in these columns. They are not charged or restricted in any way.
Manual Plan Assignment
Use this when a reader has paid by cash, bank transfer, UPI outside the plugin, or any method where the payment did not flow through the configured gateway.
Go to WP Admin â Users
You will see a new + Assign Plan button in the toolbar above the users list (next to the standard filters).
Click "+ Assign Plan"
A modal dialog opens with the assignment form.
Fill in the form
- Email * â The reader's email address. If no WordPress account exists, one will be created automatically.
- Name â Optional but recommended. Used in welcome email.
- Plan * â Select from your active plans dropdown.
- Amount Paid â What they paid (for your records). Does not need to match the plan price.
- Gateway / Source â Free text. Examples:
cash,bank_transfer,upi_manual,cheque. - Transaction Ref â Optional UTR number, bank ref, or any identifier for your records.
- Send email â Check to send welcome/renewal email. Uncheck for silent assignment (e.g. bulk imports).
Click Assign Plan
The user is created (if new) or updated (if existing). A "View user" link appears confirming success. The welcome email is sent if the checkbox was checked.
The access duration, expiry date, and welcome email are identical to what happens when a reader pays through Razorpay. The only difference is the gateway is recorded as whatever you entered in the Source field.
Editing Subscriber Access
To edit an existing subscriber's plan, expiry date, or payment details:
Go to WP Admin â Users and find the subscriber
Use the search box or sort by the Access Expires column to find them.
Click their name or "Edit" to open their user profile
Scroll to the bottom of the profile page. You will find a MyPaywall Subscription section.
Edit the fields you need
- Plan â Change their plan from the dropdown
- Access Expiry â Change the date using the date picker. Changing this immediately affects their access on the next page load.
- Amount Paid â Update for your records
- Gateway / Source â Update the payment method record
- Transaction Ref â Update the reference number
Scroll up and click "Update User"
WordPress saves all profile changes including the MyPaywall subscription section.
If you delete the date from the Access Expiry field and save, the subscriber loses access on their very next page visit. Use this to revoke access for non-payment or policy violations.
How Access Expiry Works
MyPaywall uses a real-time access check â there is no scheduled job that "expires" accounts. Here is exactly what happens:
- When a reader visits any premium content, the plugin reads their
apw_sub_expiryvalue from the database. - It compares that timestamp to the current time.
- If
expiry > nowâ full access granted. - If
expiry ⤠nowâ paywall shown, even if they are logged in.
This means access is revoked automatically and instantly the moment the clock passes their expiry time. No cron job, no manual action needed.
When a subscriber renews, the new duration is added to their current expiry (not from today) â so they never lose days they already paid for.
CSV Export
Export your full subscriber list as a CSV file compatible with Excel, Google Sheets, and any CRM.
Go to WP Admin â Users
Look for the âŦ Export CSV button in the toolbar next to the "+ Assign Plan" button.
Click "Export CSV"
A CSV file downloads immediately. The filename is mypaywall-subscribers-YYYY-MM-DD.csv.
The exported file contains these columns:
| Column | Contents |
|---|---|
| Name | WordPress display name |
| User's email address | |
| Plan | Plan display name (e.g. "Annual Access") |
| Start Date | Date of last payment (YYYY-MM-DD) |
| Expiry Date | Access expiry date (YYYY-MM-DD) |
| Status | Active or Expired |
| Amount Paid | Last payment amount |
| Gateway | Payment gateway or source (e.g. razorpay, cash) |
| Transaction ID | Gateway transaction reference |
The file includes a UTF-8 BOM character so Excel opens Indian names and special characters correctly without encoding issues. Do not use "Open" directly â use File â Import or double-click the file.
Email Automation Overview
MyPaywall sends four types of automated emails. All are enabled by default and fully customizable.
đ§ Welcome Email
Sent to a new subscriber immediately after their first payment is confirmed. Contains login credentials (username and auto-generated password), plan details, expiry date, and login URL.
đ Renewal Email
Sent to an existing subscriber when they pay again. Shows their new expiry date. Does not include password (they already have an account).
â° 7-Day Expiry Reminder
Sent automatically 7 days before a subscriber's access expires. Includes a link to the subscribe page to renew. Sent only once per expiry cycle.
đ Admin Notification
A compact summary sent to the site admin email whenever a new subscription or renewal is completed. Contains name, email, plan, amount, and expiry date. No passwords.
Customizing Email Templates
All email templates can be customized at Settings â MyPaywall â Emails tab.
Each template has a subject line and body field. Leave the body field blank to use the default template. Use placeholders to insert dynamic content:
The welcome email is the only place the auto-generated password is ever sent. If you remove {password} from the template, new subscribers will have no way to log in without using the password reset link. Keep {reset_url} in the template as a fallback.
Example welcome email body
This is the default template. You can copy and customize it:
Hi {first_name},
Your payment was successful and your account is ready.
âââââââââââââââââââââââââââ
YOUR LOGIN DETAILS
âââââââââââââââââââââââââââ
Website: {site_name}
Username: {username}
Password: {password}
Login: {login_url}
âââââââââââââââââââââââââââ
YOUR SUBSCRIPTION
âââââââââââââââââââââââââââ
Plan: {plan}
Expires: {expiry}
You now have full access to all premium content.
If you need help logging in:
{reset_url}
Thank you!
â {site_name}
MyPaywall sends plain text emails by design. Plain text emails have higher deliverability, render identically across all email clients including mobile, and are less likely to land in spam. You cannot add images or HTML formatting to the email body.