Charitable Documentation

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

Admin Bar Notifications for Charitable Ambassadors

Requires: Charitable Pro 1.8.16+
Charitable Ambassadors 3.0.0+

When something significant happens in your Ambassadors program, you shouldn’t have to open the dashboard to find out. Charitable Pro’s bell-icon notification panel in the WordPress admin bar is a small inbox for moments that matter.

Now, Ambassadors 3.0 wires four program-specific events to it:

  • A growing moderation queue
  • A parent campaign’s first fundraiser
  • A fundraiser crossing its goal
  • Your program reaching a new lifetime milestone

The four events are designed to be rare and meaningful. You should be able to glance at the bell and trust that anything there is worth your attention. No event fires more than once per fundraiser or parent campaign.

The Four Events

EventFires whenBell-icon title
Moderation queue healthPending count crosses a threshold (default 5) for the first time today.“5 fundraisers awaiting review”
First fundraiserThe first fundraiser on a parent campaign goes live.“First fundraiser on [Parent Title]”
Goal reachedA fundraiser crosses 100% of its goal for the first time.“[Fundraiser Title] reached its goal”
Total raised tierSite-wide total ambassador-raised crosses a tier threshold ($1K, $5K, $10K, $25K, $50K, $100K, $250K, $500K, $1M).“Ambassadors program raised $10,000 lifetime”

Each event uses a per-event “latch” stored as post-meta or option, so re-firing doesn’t happen. If a fundraiser dips below its goal (refund) and crosses it again, the latch is cleared and re-armed, so you do get notified again.

Event 1: Moderation Queue Health

Fires when the count of Pending fundraisers crosses a threshold (default 5) for the first time on a given calendar day.

The check is gated on:

  • A new fundraiser transitioning to pending (so it doesn’t fire on every page load).
  • The pending count being >= threshold.
  • The latch for today not yet being set.

The latch is a daily option: _charitable_ambassadors_notif_moderation_queue_<YYYY-MM-DD>. Once set, no further moderation-queue notifications fire that day.

Override the threshold:

add_filter( 'charitable_ambassadors_notifications_moderation_queue_threshold', function () {
    return 10;  // fire only when 10+ pending
} );

Event 2: First Fundraiser

Fires the first time a parent campaign gets its first published fundraiser, the moment the program “comes alive” for that parent.

Latch: per-parent post-meta _charitable_ambassadors_notif_first_fundraiser_fired. Once set, never re-fires for that parent.

Event 3: Goal Reached

Fires when a fundraiser crosses 100% of its goal for the first time. The check runs at donation-completion time.

Latch: per-fundraiser post-meta _charitable_ambassadors_notif_goal_reached. The latch is cleared if a donation is later refunded and the fundraiser drops below goal, so if it crosses again later, you get notified again.

Event 4: Total Raised Tier

Fires when the site-wide ambassador-raised total crosses a tier threshold. Default tiers:

$1,000  |  $5,000  |  $10,000  |  $25,000  |  $50,000
$100,000  |  $250,000  |  $500,000  |  $1,000,000

Each tier is its own latch (option _charitable_ambassadors_notif_total_raised_tier_<amount>), so crossing $1K, then later $5K, then later $10K all trigger separately.

Customize the tier list:

add_filter( 'charitable_ambassadors_notifications_total_raised_tiers', function () {
    return [ 5000, 25000, 100000, 1000000 ];  // milestones we actually care about
} );

Backfill on Activation

On Ambassadors 3.0 activation, the plugin suppresses historical events by pre-setting every relevant latch. Otherwise on first activation you’d get a flood of “X reached goal” notifications for fundraisers that crossed years ago.

The backfill:

  • Stamps _notif_first_fundraiser_fired on every parent that already has at least one published fundraiser.
  • Stamps _notif_goal_reached on every fundraiser already at 100%+.
  • Stamps the appropriate _notif_total_raised_tier_<amount> for every tier already crossed.

You won’t see any historical notifications, but new events from the moment of activation forward will fire normally.

Tips Worth Keeping in Mind

A few things that will help you get the most out of the notification panel without letting it become noise.

  • Leave defaults alone for the first month. They’re tuned to feel rare. Suppress events only if you find one fires too often for your taste.
  • The bell-icon is a digest, not a real-time stream. Notifications stay until dismissed; they don’t auto-expire.
  • Use the master kill switch in development. No need to see bell-icon updates while iterating on a customization.
  • Total raised tiers are a quiet “you’re growing” signal. Often the most rewarding notification, it’s literally a confirmation that the program is working.

Developer Reference

The rest of this page is for developers customizing or extending the Ambassadors notification system.

Master Kill Switch

If the bell-icon notifications aren’t useful for your program, disable them all in one line:

add_filter( 'charitable_ambassadors_notifications_enabled', '__return_false' );

This is global. It suppresses every event the Ambassadors triggers fire. Pro’s own notifications (donation received, etc.) are unaffected.

Per-Event Control

You can suppress individual events without killing the whole feature. Each event has a _should_fire_<event> filter:

add_filter( 'charitable_ambassadors_notifications_should_fire_moderation_queue', '__return_false' );
add_filter( 'charitable_ambassadors_notifications_should_fire_first_fundraiser', '__return_false' );
add_filter( 'charitable_ambassadors_notifications_should_fire_goal_reached', '__return_false' );
add_filter( 'charitable_ambassadors_notifications_should_fire_total_raised', '__return_false' );

Each is wrapped in an apply_filters call at trigger time, so returning false short-circuits the notification before it’s posted.

Customizing Event Content

Each event also has an _args_<event> filter that receives the args array before it’s passed to Pro’s notification API. Use this to change the title, link, body, or icon:

add_filter( 'charitable_ambassadors_notifications_args_goal_reached', function ( $args, $fundraiser_id ) {
    $args['title'] = '🎯 ' . $args['title'];
    $args['link']  = get_edit_post_link( $fundraiser_id );  // link to edit instead of view
    return $args;
}, 10, 2 );

Storage

LatchKeyScope
Moderation queue (daily)_charitable_ambassadors_notif_moderation_queue_<YYYY-MM-DD>option
First fundraiser (per parent)_charitable_ambassadors_notif_first_fundraiser_firedpost-meta on parent
Goal reached (per fundraiser)_charitable_ambassadors_notif_goal_reachedpost-meta on fundraiser
Total raised tier (per tier)_charitable_ambassadors_notif_total_raised_tier_<amount>option

Pro API

Notifications are posted via Pro’s public API:

Charitable_Local_Notifications::add( $args );

The args shape and storage are Pro’s; Ambassadors just calls in.

Gotcha: Charitable_Local_Notifications::add() stores entries as a numerically-indexed list, not an ID-keyed map. If you query the underlying storage directly, treat it as a list.

Filters

FilterDefaultPurpose
charitable_ambassadors_notifications_enabledtrueMaster kill switch.
charitable_ambassadors_notifications_should_fire_<event>truePer-event suppression.
charitable_ambassadors_notifications_args_<event>computedPer-event args modifier.
charitable_ambassadors_notifications_moderation_queue_threshold5Pending-count threshold.
charitable_ambassadors_notifications_total_raised_tiersarray of 9Tier amounts in ascending order.

Actions

ActionArgsFires when
charitable_ambassadors_notification_fired$event_slug, $argsA notification was posted to Pro’s bell-icon.
charitable_ambassadors_notification_suppressed$event_slug, $reasonA notification was suppressed (kill switch, per-event, or latch held).

Triggers Class

Charitable_Ambassadors_Notification_Triggers::get_instance();

Singleton. All event listeners are registered in its __construct(). You can remove_action() specific listeners by reference if you need surgical disabling.

Test-Mode Exclusion

The total-raised tier check excludes donations marked _postmeta('test_mode') = '1'. The exclusion lives in Charitable_Ambassadors_Overview_Data::get_donation_aggregates(), which the notifier reuses.

Capabilities

The bell-icon panel itself is gated by Pro’s standard capability. Ambassadors notifications inherit that gate.

Customization Examples

Common tweaks. Add any of these to your theme’s functions.php or a site-specific plugin.

Replace the “5 fundraisers awaiting review” copy with your team’s language:

add_filter( 'charitable_ambassadors_notifications_args_moderation_queue', function ( $args, $count ) {
    $args['title'] = sprintf( '%d fundraisers need your review (huddle time)', $count );
    return $args;
}, 10, 2 );

Mirror every Ambassadors notification to Slack:

add_action( 'charitable_ambassadors_notification_fired', function ( $event_slug, $args ) {
    wp_remote_post( 'https://hooks.slack.com/...', [
        'body'    => json_encode( [
            'text' => "*{$event_slug}*: " . ( $args['title'] ?? '' ),
        ] ),
        'headers' => [ 'Content-Type' => 'application/json' ],
    ] );
}, 10, 2 );

Reset the “first fundraiser” latch for testing (rerun the notification):

delete_post_meta( $parent_id, '_charitable_ambassadors_notif_first_fundraiser_fired' );
// Now the next published fundraiser on this parent will re-fire the event.

Different tiers for two different sites in a multisite:

add_filter( 'charitable_ambassadors_notifications_total_raised_tiers', function ( $tiers ) {
    if ( is_main_site() ) {
        return [ 25000, 100000, 500000, 1000000 ];
    }
    return [ 1000, 5000, 10000 ];
} );

Wrapping Up

That covers the Ambassadors notification events from how they fire to how to tune them. They work automatically from activation and require no configuration to be useful. If you want to adjust the moderation threshold, change the milestone tiers, or route notifications to Slack, the filters and customization examples above cover all of those cases.

If you have questions about any of the notification events or the Pro notification API, our support team is happy to help.

You May Also Want to Read

These docs cover the features most closely connected to the events that trigger Ambassadors notifications.

  • Overview Dashboard – the total-raised tier event uses the Overview data class, and the dashboard is where you’ll see your program-level numbers.
  • Moderation – where the moderation queue health notification takes you when the pending count crosses the threshold.
  • Email Templates – the sibling transactional-email surface for ambassador-facing notifications.
  • Hooks & Filters in Ambassadors – the full filter and action reference for the entire Ambassadors add-on.

Helpful Links

🤝 Get help when you need it

Connect with Customer Support →  

📑 Find the guide you need

Browse the Documentation Hub →  

⬇️ Download proven strategies, campaign ideas, and expert tools
Get the Fundraising Kit →  

💸 Get Free Fundraising Resources
Head to the Charitable Fundraising Hub

🤔 Got questions about Charitable?
Charitable FAQs

Need help understanding non-profit terms and jargon?
See our Non-Profit Glossary

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!

automation update

⚡ Visual Automation Builder: Drag and Drop With No Code!

Charitable Automation Connect 2.3.0 introduces the Visual Automation Builder, a full-screen canvas that lays each automation out as a flow of connected cards: a trigger, optional conditions, and a list of actions that run in order.

🧩 Many actions, one trigger: Tag a donor, send an email, add a note, and fire a webhook from a single event, dragged into any order.

✉️ Act inside Charitable: New Send Email, Tag Donor, and Add Donor Note actions run with no external service required.

🔤 Merge tags: Personalize emails and notes with live fields like {first_name}, {total}, and {campaign_name}.

🔁 Apply to existing donors: Run Tag Donor and Add Donor Note against the donors you already have.

🖥️ Canvas or Simple: Switch views anytime, and automations built before 2.3.0 keep working unchanged.

Read more here.

Integration updated

📬 Introducing Brevo for Charitable: Turn Donors into Subscribers Automatically

The moment a supporter makes a gift is when they are most engaged. With the new Brevo integration for Charitable, you can automatically turn those one-time donors into long-term subscribers without touching a single spreadsheet.

Simply collect donor consent right on your donation form and start your welcome series immediately.

What’s New:

🔄 Automated Subscriber Sync: New donors who opt in are added straight to your Brevo contact list as soon as their payment clears—no manual exports or CSV imports required.

🎯 Granular Consent & Opt-In Control: Customize your checkbox label, choose whether it defaults to checked or unchecked, or turn on Brevo double opt-in to keep your list clean and compliant.

📋 Per-Campaign List Mapping: Route supporters to your global email list or map specific campaigns to targeted Brevo lists to tailor your follow-up messaging.

⚡ 5-Minute Setup: Connect instantly by pasting your Brevo API key into the Newsletter settings, map your contact fields, and start building your email list on autopilot.

Ready to grow your mailing list? Brevo is available now starting on the Charitable Plus plan—connect your account today!

recurring donations updated

💳 Introducing Card Updates: Fix Expired Cards Without Losing Subscriptions!

newExpired or updated credit cards are one of the biggest silent leaks in recurring fundraising. With Card Updates in the Recurring Donations extension, donors can now refresh their payment details directly—keeping their subscription, schedule, and giving history completely intact.

No canceled plans, no lost history, and zero administrative headache for your team.

What’s New:

⚡ 30-Second Self-Service: Donors get a dedicated “Update Card” button in their dashboard that opens Stripe’s secure, PCI-compliant Customer Portal to update card details instantly.

🔒 Scoped & Safe Access: Scoped exclusively to card updates by default, donors can’t accidentally cancel or alter their plans from inside the portal, keeping your webhooks and data in sync.

🤝 Admin-Assisted Support: Helping a donor on the phone? Open their secure Stripe portal in one click from your admin screen or generate a single-use update link to email them.

📋 Automatic Audit Trail: Every payment method update is recorded automatically with a timestamp in both system-wide logs and the individual donor’s profile.

Ready to protect your recurring revenue? Get the Plus or Pro plan and update Recurring Donations to 2.3.0+ and enable “Update Payment Method” under your Settings today!

Integration page builder

Divi Fans Rejoice! Native Divi 5 Campaign Progress Bar Module!

With our new native Divi 5 module, you can anchor your microsites with real-time fundraising stats directly on the visual canvas. Here’s how it works, and why it’s worth turning on today.

Create campaign updates that are VISUAL AND LIVE. You can also:

📊 Campaign Progress Bar: Drop a live progress bar into any Divi 5 layout and show goal progress in real time.

🎨 Deep styling controls: Easily customize the bar and track color, height, and radius to match your brand perfectly.

👁️ Visual Builder ready: Configure and preview everything directly on the Divi canvas as a first-class module.

🔁 Identical rendering: The same exact engine powers this module, meaning consistent design without legacy shims.

✅ Faster launches: Never leave the Divi 5 interface to configure shortcodes or guess how your goal labels will look.

Learn more here.

Integration page builder

👉🏻 New in Charitable: Native Elementor Widgets for Seamless Campaign Building

With native Elementor widgets, you design donation campaigns right alongside the rest of your page without touching code. Here’s how it works, and why it’s worth turning on today.

Create fundraising pages that are VISUAL, NATIVE, AND SHORTCODE-FREE. You can also:

⚡ Mini Donation: Add a compact, high-converting donation widget with preset amounts and full color control.

⏳ Campaign Countdown: Build urgency for a deadline-driven appeal, complete with optional confetti when the goal is hit.

📣 Donation Feed: Prove momentum by showing visitors the social proof of real people giving right now.

🏆 Donor Leaderboard: Celebrate top supporters with gold, silver, and bronze styling to spark friendly giving.

🖼️ Campaign Showcase: Feature multiple campaigns in a landing page grid or carousel, with search, filters, and badges.

Learn more here.