How to Hide the Recurring Payment Option From the User Dashboard
You can hide the recurring payment option from the user dashboard package selection area by using custom CSS.
This is useful if you do not want users to see or select the recurring option when choosing a membership package from their dashboard.
Custom CSS
Add the following CSS in Theme Options > Design > Custom CSS, in Appearance > Customize > Additional CSS, or directly in the style.css file from your child theme:
#pack_recuring {
display: none !important;
}
[for="pack_recurring"] {
display: none !important;
}
[id="pack_recurring"] {
display: none !important;
}
Important Note
This CSS hides the recurring option from the user dashboard interface. It does not change the payment gateway settings or membership package logic.
If you do not want to use recurring payments at all, make sure your membership and payment settings are also configured correctly in the theme options and in your payment processor account.
Clear Cache
After adding the CSS, clear your website cache, server cache, CDN cache if used, and browser cache.
If WPResidence theme cache is enabled, clear the theme cache as well to see the change immediately.