This guide covers how to get support for CP Staff and what information to include when reaching out.
Support Channels
ChurchPlugins Support Portal
For direct support, visit churchplugins.com/support. Premium license holders receive priority support.
Documentation
Browse the full CP Staff documentation for guides on setup, configuration, and customization.
Community
Connect with other ChurchPlugins users to share tips and ask questions through the ChurchPlugins community.
Before Contacting Support
Try these self-service steps first:
- Check the FAQ for answers to common questions
- Review Troubleshooting for known issues and solutions
- Update the plugin to the latest version — your issue may already be fixed
- Test with a default theme (e.g., Twenty Twenty-Four) to rule out theme conflicts
- Disable other plugins temporarily to rule out plugin conflicts
What to Include in a Support Request
Providing detailed information helps resolve your issue faster:
- WordPress version (found in Dashboard > Updates)
- CP Staff version (found in Plugins list)
- PHP version (found in Tools > Site Health > Info > Server)
- Active theme name and version
- Description of the issue — what you expected vs. what happened
- Steps to reproduce — how to recreate the problem
- Screenshots — if the issue is visual, include screenshots of the problem
- Browser console errors — open your browser’s developer tools (F12) and check the Console tab
- Error logs — check
wp-content/debug.logifWP_DEBUG_LOGis enabled
Enabling Debug Mode
If support asks for debug information:
- Open your site’s
wp-config.phpfile - Add or update these lines:
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false ); - Reproduce the issue
- Check
wp-content/debug.logfor relevant error messages - Share the relevant log entries with support
- Disable debug mode when finished by setting
WP_DEBUGback tofalse
