Charitable Documentation

Learn how to make the most of Charitable with clear, step-by-step instructions.

Campaign Update Addon: Campaign Updates

Requires:

  • Charitable Pro 1.8.15+
  • Charitable Campaign Updates 1.0.8+

Campaign Updates lets you publish progress posts for any campaign, display them on the campaign page (or any page), and email the donors who opted in. Three update types (general, milestone, urgent), one “featured” pin per campaign, and a per-campaign unsubscribe link in every email so list hygiene takes care of itself.

The Campaign Updates panel in the Campaign Builder, showing the updates feed for a campaign with several recent updates listed in card form.

When you’d use it

  • You want donors to see the campaign keep moving after they give, not just at end-of-campaign thank-yous.
  • You’re running a multi-week or multi-month campaign and need a way to surface milestones and urgent asks (matching gift expiring, emergency stretch goal).
  • You want one signed-up audience per campaign instead of one site-wide list that includes everyone.

Finding it

The whole feature lives inside the Campaign Builder. Open any campaign and look in the left sidebar:

WordPress Admin > Campaigns > [your campaign] > Campaign Builder > Campaign Updates

The panel has three sub-tabs at the bottom:

  • Updates Feed — the default. Latest update preview plus the full feed of update cards (add, edit, delete, send).
  • Subscribers — donors who opted in to receive email updates for this campaign, plus the email-send history.
  • Settings — the per-campaign on/off, content limit, and email behavior.

The big picture

There are three moving parts working together:

Part Where it lives What it does
The updates feed Campaign Builder > Campaign Updates > Updates Feed The list of updates for one campaign. Add, edit, delete, send.
The donor opt-in Donation form, when contact consent is enabled A “I want to receive updates” checkbox next to the consent checkbox at donation time.
The display Campaign page (via Campaign Builder field or Gutenberg block) The public-facing list that donors and visitors see on the campaign page.

A campaign needs all three turned on to deliver the full experience: you publish an update, the donors who opted in get an email, and visitors who land on the campaign page see the update displayed there.

Step-by-step setup

The first time you set this up for a campaign:

  1. Turn it on for the campaign. Open Campaign Builder > Campaign Updates > Settings. Flip Enable Campaign Updates to On. This is the master switch for everything else on this campaign.
  2. Verify the opt-in path exists. Go to Charitable > Settings > Privacy and confirm Contact consent is on. The Campaign Updates opt-in checkbox piggybacks on this; without it, the checkbox can’t render on the donation form. (The Settings tab will warn you if any of these prerequisites are missing.)
  3. Add the Campaign Updates field to the campaign layout. Open Campaign Builder > Design > Add Fields and drop Campaign Updates wherever you want updates to show on the campaign page. For Gutenberg-based campaigns or non-campaign pages, use the Campaign Updates block instead.
  4. Confirm the email is enabled. Go to Charitable > Settings > Emails and make sure Campaign Update is enabled. The Settings tab will also flag this if it’s missing.
  5. Post your first update. Back in Campaign Builder > Campaign Updates > Updates Feed, click Add First Update. See Creating updates for the full modal walkthrough.

After step 5, your donation form will show the opt-in checkbox, your campaign page will show the update, and (depending on your sending mode) the email may go out automatically or wait for you to send it.

Settings tab

Every campaign has its own settings under Campaign Builder > Campaign Updates > Settings:

The Campaign Updates Settings tab inside the Campaign Builder, showing Display Settings and Email Notifications sections.

Display Settings

Setting What it does
Enable Campaign Updates Master switch for this campaign. Off means: no opt-in checkbox, no email sends, no updates rendered on the front end.
Content Limit Maximum number of updates the field/block should display by default. Each instance of the Campaign Updates field can override this. Set to 0 for no limit.

Email Notifications

Setting What it does
Enable Update Emails Allows update emails to be sent for this campaign. Also requires the Campaign Update email to be enabled in Charitable’s global email settings.
Automatic Email Sending Three modes – Manual only (you click “send” per update), Auto for featured updates (publishing a featured update auto-sends), Auto for all updates (every published update auto-sends).
Email Content Length Number of characters of the update body to include in the email. 0 means full content. Useful for keeping emails skimmable.

The Settings tab shows yellow warning banners if it detects any of:

  • The Campaign Update email is disabled in Charitable email settings.
  • Contact consent is off in Privacy settings.
  • The campaign form has no privacy/consent field (so new donors can’t opt in).

Fix what the warnings flag before you start posting updates, or new donors won’t be able to subscribe.

Tips

  • One featured update at a time. Marking a second update as featured automatically unfeatures the previous one. Use it for “this is the one thing you need to know right now.”
  • Drafts don’t email. Saving as draft is safe – drafts are invisible to donors and never trigger sends, even in auto-send modes. Use drafts to compose updates before they go live.
  • Test before sending. The send modal has a “Send Test Email” link that sends to the currently-logged-in user. Always send yourself a test before hitting the real list.
  • Donor opt-out is per-campaign. A donor unsubscribing from your gala campaign doesn’t unsubscribe them from your animal-rescue campaign. The unsubscribe link is campaign-scoped.
  • Re-subscribe is automatic on new donations. If a donor unsubscribes then later makes a fresh donation to the same campaign with the opt-in checked, they’re back on the list. No manual cleanup needed.

Developer reference

Filters

These are the high-traffic filters most likely to come up in customization work. See Hooks and Filters for the complete inventory.

Filter Default Purpose
charitable_campaign_updates_default_checked false Whether the donation-form opt-in checkbox is pre-checked.
charitable_campaign_updates_consent_label "I want to receive updates about this campaign's progress." The opt-in checkbox label.
charitable_campaign_updates_require_contact_consent true Whether the opt-in checkbox is disabled until contact consent is checked.
charitable_campaign_update_types (array) The list of update types – general, milestone, urgent – and their labels, icons, and colors.
charitable_campaign_updates_content_limit (int) Per-campaign default content limit.
charitable_can_user_manage_campaign_updates true Whether the current user can add/edit/delete updates for a campaign.

Actions

Action When it runs
charitable_campaign_update_meta_saved After an update’s post meta is saved from the admin (post_id, post).
charitable_campaign_updates_builder_loaded When the Campaign Builder’s Campaign Updates panel finishes loading.
charitable_campaign_updates_activated On plugin activation.
charitable_campaign_updates_installed After plugin install (version string passed).

Helper functions and post type

Symbol Purpose
charitable_get_campaign_update_types() Returns the array of registered update types. Apply the charitable_campaign_update_types filter to add/modify types.
Post type: campaign_update Each update is a campaign_update post with _campaign_id, _update_type, _featured, and (for urgent) _urgency_level meta.

Capability gate

Edit access defaults to anyone who can edit the campaign. Override the charitable_can_user_manage_campaign_updates filter to restrict (for example, to only the campaign author):

add_filter( 'charitable_can_user_manage_campaign_updates', function( $can, $campaign_id ) {
    if ( ! $can ) {
        return $can;
    }
    $campaign = get_post( $campaign_id );
    return $campaign && (int) $campaign->post_author === get_current_user_id();
}, 10, 2 );

Customization examples

Pre-check the opt-in checkbox for first-time donors:

add_filter( 'charitable_campaign_updates_default_checked', '__return_true' );

Change the consent label to something campaign-specific:

add_filter( 'charitable_campaign_updates_consent_label', function( $label ) {
    return 'Email me updates about this campaign. We send roughly one per month.';
} );

Add a fourth update type (“inspiration”) for sharing donor stories:

add_filter( 'charitable_campaign_update_types', function( $types ) {
    $types['inspiration'] = array(
        'label'       => __( 'Inspiration', 'your-textdomain' ),
        'description' => __( 'Stories and quotes from donors and beneficiaries.', 'your-textdomain' ),
        'icon'        => 'fa-heart',
        'color'       => '#9333ea',
    );
    return $types;
} );

Override the default per-campaign content limit globally to 10:

add_filter( 'charitable_campaign_updates_content_limit', function( $limit, $campaign_id ) {
    return 10;
}, 10, 2 );

Related


Still have questions? We’re here to help!

Last Modified:

What's New In Charitable

View The Latest Updates
🔔 Subscribe to get our latest updates
📧 Subscribe to Emails

Email Subscription

Join our Newsletter

We won’t spam you. We only send an email when we think it will genuinely help you. Unsubscribe at any time!

GiveWP Migrations New

White Glove Migration Service for GiveWP

Thinking about switching your fundraising platform from GiveWP to Charitable, but don’t want to risk losing your data or handle a complex technical setup yourself? Charitable’s White Glove Migration Service features:

👥 Flawless Donor Mapping: Safely transfer your entire supporter database with zero data loss.

📊 Complete Financial History: Meticulously preserve every historical transaction for continuous, accurate reporting.

🔄 Seamless Recurring Giving: Safely transfer active sustaining subscriptions without disrupting your incoming revenue or requiring your donors to update their information.

💳 Zero Gateway Disruptions: Keep using Stripe, PayPal, or any other GiveWP-compatible processor you already love.

🚀 Expert Technical Setup: Relax while our team handles the heavy lifting to install and configure your forms—plus, qualifying users get a full year of Charitable Pro completely free.

Visit this page to learn more.

automation Improvement

📢 New Feature Alert: Automation Connect 2.0 Is Here! 🚀

Thinking about connecting your fundraising data to tools like Mailchimp, Slack, or Google Sheets, but don’t want to hire a developer or write custom code? Charitalbe’s new automation addon has:

⚡ 17 Event Triggers: Instantly fire webhooks for a donor’s first gift, renewal payments, or reached campaign milestones.

🎯 Smart Conditional Logic: Use powerful AND/OR logic across 11 fields to only send data when it meets your exact criteria, like newsletter opt-ins.

📊 Custom Payload Control: Select from 80+ clean data fields across donor, donation, and campaign metadata so your apps get exactly what they need.

🚀 Pre-Built Platform Templates: Skip the setup from scratch with ready-to-go templates for Zapier, Make.com, n8n, HubSpot, and Slack.

🛡️ Reliable Developer Tools: Power your workflows with signed HMAC-SHA256 payloads, complete WordPress filters, and automatic retry logs.

automation Improvement

🔌 Charitable Meets Zapier: Connect to 7,000+ Apps and Automate Your Fundraising

Tired of manually copying donation data into accounting sheets or tracking down new donor signups? Put your administrative tasks on autopilot. Charitable is now officially on Zapier, giving you a powerful, no-code way to plug your fundraising directly into the rest of your favorite tools.

Every donation, donor signup, and campaign milestone can now trigger an automated workflow seamlessly.

What’s New:

♾️ Connect to 7,000+ Apps: Bridge your Charitable campaigns with everyday software like Google Sheets, QuickBooks, Slack, Mailchimp, HubSpot, Notion, Airtable, and thousands more.

⚡ 12 Powerful Triggers: Build deep workflows using smart automation triggers covering the entire donation lifecycle—including New Donation, New Donor, Subscription Cancelled, and Campaign Goal Reached.

📋 Pre-Built Action Templates: Get started in three minutes or less with our pre-made template combinations, like automatically logging new donations straight into a Google Sheet or firing custom donor welcome emails through Gmail.

🚫 Zero Code Needed: No complex webhooks or custom PHP scripts required. Just pick your trigger, choose your app, map your fields, and let Zapier handle the heavy lifting.

Ready to save hours of admin time? Grab Charitable Pro with the Automation Connect addon today and launch your first Zap!

Improvement Payments

🚀 Introducing PayPal Commerce: One Connection, Six Ways to Donate

Donors expect modern, flexible payment options when they support a cause. If they don’t see their preferred method on your donation form, they often disappear without a word. With PayPal Commerce, we are bringing a completely modernized checkout experience right to your campaigns.

Enjoy a single integration that upgrades your forms, makes giving seamless, and helps you capture every single donation.

What’s New:

🔌 One-Click Connection: Skip messy API keys and developer docs. Simply click “Connect with PayPal,” sign in to your business account, and your modern form is live in under five minutes.

💳 Six Ways to Give: Give your supporters instant access to PayPal balance, Venmo (US), Pay Later financing, major credit/debit cards, Apple Pay (Safari), and Google Pay (Chrome) all from the exact same form.

🔄 Flexible Recurring Giving: Fully supports monthly giving. Choose between the PayPal Subscriptions API (handled automatically on PayPal’s end) or Vault + Cron (handled securely right on your site).

💬 Friendly Error Recovery: No more confusing browser alerts. If a payment is declined, donors see plain-language, inline messages that guide them on how to fix the issue and complete their gift.

Ready for PayPal, modernized? Update to Charitable Pro 1.8.15+ (or Charitable Lite 1.8.11+) and connect your account today!

Campaigns New

⏳ Campaign Countdown: Drive Urgency and Lift Donations

Urgency is one of the most powerful tools in fundraising! Meet Campaign Countdown—a live, real-time timer built to turn procrastination into immediate generosity.

campaign_countdown_animation

What’s New:

⏱️ Live, Real-Time Urgency: Beautifully track days, hours, minutes, and seconds down to your campaign’s deadline w/ live-updating visual countdowns.

🎨 Tailored to Your Look: Choose between Boxed bordered tiles or a clean, single-line Inline display. Match your theme instantly with font and deep color controls.

🛠️ Place it Anywhere: Drop the countdown anywhere you like using the Campaign Builder field, a dedicated Gutenberg block, or a simple shortcode.

🚨 Smart Expiry Actions: Total control over the end state—choose to automatically replace the timer with a custom message, freeze it at zero, and more.