Kadence RCP Developers
The Kadence RCP (Restrict Content Pro) Developers section is a specialized resource for advanced users, engineers, and agencies who want to extend the core functionality of their membership platform beyond standard settings. By providing a deep dive into the plugin’s architecture, this section empowers developers to create bespoke membership experiences, integrate with custom third-party systems, and fine-tune the user journey through code. These technical resources are essential for building high-performance, highly customized membership ecosystems that align with specific business logic.
The documentation focuses on three primary areas of customization: Hooks (Actions and Filters), Template Overrides, and Custom Functions. Developers can leverage an extensive list of APPLY_FILTERS and ADD_FILTER hooks to modify everything from email headers to membership level ordering. The platform’s template system allows you to safely override core files—such as registration and login forms—by moving them to a child theme, ensuring your site remains update-safe. While Liquid Web provides these technical references to assist your development, please note that custom code implementations fall outside the scope of standard technical support.
Kadence RCP Developers articles
This collection serves as a technical reference guide, providing action and filter lists, template override instructions, and code snippets for Restrict Content Pro.
Customize suspended profile message for RCP Ultimate Member
Read more: Customize suspended profile message for RCP Ultimate MemberNote: This is part of the developer docs and is considered custom code. Unfortunately, we cannot provide support for custom code at this time as we do not have the additional resources that would be necessary to provide support for custom code. If you need assistance with this, please reach out to our list of…
Customizing The Blocking UI On The Registration Form
Read more: Customizing The Blocking UI On The Registration FormNote: This is part of the developer docs and is considered custom code. Unfortunately, we cannot provide support for custom code at this time as we do not have the additional resources that would be necessary to provide support for custom code. If you need assistance with this, please reach out to our list of…
Customizing The Stripe Elements Card Form
Read more: Customizing The Stripe Elements Card FormNote: This is part of the developer docs and is considered custom code. Unfortunately, we cannot provide support for custom code at this time as we do not have the additional resources that would be necessary to provide support for custom code. If you need assistance with this, please reach out to our list of…
delete_generated_data
Read more: delete_generated_dataNote: This is part of the developer docs and is considered custom code. Unfortunately, we cannot provide support for custom code at this time as we do not have the additional resources that would be necessary to provide support for custom code. If you need assistance with this, please reach out to our list of…
Editing Template Files
Read more: Editing Template FilesRestrict Content Pro includes a template files system that makes it really simple for users to customize the registration form, profile form, login form, and more. This quick tutorial will walk you through how to use them to make modifications to the default plugin display. The template files reside inside of wp-content/plugins/restrict-content-pro/templates, and there is a…
Email Filters
Read more: Email FiltersNote: This is part of the developer docs and is considered custom code. Unfortunately, we cannot provide support for custom code at this time as we do not have the additional resources that would be necessary to provide support for custom code. If you need assistance with this, please reach out to our list of…
Group Accounts – Actions & Filters
Read more: Group Accounts – Actions & FiltersHere’s a list of some useful actions and filters used within the Group Accounts plugin: Actions rcpga_add_member_to_group_after Runs right after a new user is added to a group. $_POST data is available here. Parameters: $user_id (int) – ID number of the new member’s user account. $args (array) – Arguments used when adding the member to the group.…
Group Accounts – Functions
Read more: Group Accounts – FunctionsHere’s a list of some useful functions and methods included in the plugin: Group Object The RCPGA_Group object was introduced in Group Accounts version 2.0. It contains all the information about a group. The following methods are available: get_group_id()Returns the ID of the group. get_owner_id()Returns the user ID of the owner of the group. get_owner()Returns the WP_User…