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!

ambassadors New

👤 Creator Profiles: Put a Face to Every Peer-to-Peer Campaign

Ambassadors 3.3.0 now provies Creator Profiles — giving your supporters a permanent, shareable public home that turns one-time fundraisers into ongoing relationships.

👤 Public Creator Pages: Give every fundraiser an instant, clean landing page at /creator/their-name/ to showcase their custom avatar, bio, and a browsable grid of their campaigns.

📊 Proof of Impact: Boost donor trust by displaying site-wide milestones on the profile—like total funds raised and total donor counts.

💳 Interactive Hover Cards: When donors hover over a creator’s name on a campaign page, a compact card expands with their bio and social handles right at the moment of decision.

📍 Responsible Location Sharing: Allow creators to safely show local supporters where they are based using only city, state, and country details.

🛠️ Self-Serve Customization: Fundraisers can update their own profiles and link up to six social networks directly from the My Campaigns hub, saving you admin time.

Ready to empower your advocates? Update to Ambassadors 3.3.0 and turn on “Enable Public Creator Page” today!

Improvement Payments

📱 Turn Mobile Scrollers Into Donors: Meet Charitable’s Mollie Upgrade

Losing mobile supporters because they hate typing out long card numbers on their phones? Charitable’s updated Mollie integration features:

⚡ One-Tap Wallet Checkout: Enable donors to complete their gifts instantly using Apple Pay or Google Pay with a simple face scan, fingerprint, or tap.

💰 No Extra PCI Burden: Skip complex domain verification and security compliance since all wallet transactions run safely through Mollie’s hosted checkout.

🛠️ Custom Cancel Routing: Keep the experience predictable by automatically sending donors who back out to your cancellation page, or use developer filters to route them to a custom page.

Visit this page to learn more.

ambassadors improved New

Moderation and Directory Screens In Ambassadors 3.0

Ambassadors 3.0 has new features: moderation and directory screens… now easily see those who are earning donations on your peer to peer network – including campaign creators that might need to be verified – all in one place. Generate reports, email ambassadors and campaign creators directly and more.

🚀 See when campaign creators and ambassadors have updated their campaigns, what donors/donation they have brought in and more.

🎉 Manually add ambassadors and campaign creators, and approve them in one-click!

Visit this page to learn more.

New Payments

⚡ Unlock India-Based Donations: Meet Charitable’s Native Razorpay Integration

Trying to collect donations in India? Charitable’s native Razorpay integration features:

⚡ Instant UPI Integration: Accept fast, local donations directly inside your form via apps like PhonePe, Google Pay, Paytm, and BHIM without sending donors away from your site.

📲 Auto-Generated Campaign QRs: Instantly render scannable QR codes encoding a UPI deep link directly on your public campaign pages and sidebars for an effortless “scan-to-give” experience.

💰 Dual Local & Global Reach: Headline your campaigns in INR while seamlessly accepting major international currencies like USD, EUR, GBP, and CAD to maximize global support.

🔁 Seamless Recurring Giving: Fully integrates with the Charitable Recurring addon to manage automatic monthly subscriptions directly through Razorpay without extra code.

↩️ Automatic Two-Way Sync: Keep your books perfectly clean with two-way refund syncing—issue a refund inside WordPress or your Razorpay dashboard and both sides update automatically.

🔒 Webhook-Verified Security: Automatically protect your donation records using HMAC-signed webhook verification to ensure every status update represents real money cleared on the rails.

Visit this page to learn more.

Integration New

🎉 New Built-in PushEngage Integration

Struggling with falling email open rates and rising ad costs just to keep your supporters engaged? Charitable’s built-in PushEngage integration features:

🔔 Zero-Fee Direct Messaging: Deliver crisp, instant pop-up notifications straight to your donors’ desktops and mobile devices.

⏱️ Four Smart Automated Triggers: Automatically send updates for immediate donation thank yous, full-list campaign launches, urgent “ending soon” alerts, and goal milestone celebrations.

📈 Group Momentum Broadcasts: Turn private milestones into public wins by automatically broadcasting alerts to your entire subscriber list the moment a campaign hits 50%, 75%, or 100% of its goal.

📊 Automatic Analytics Tracking: Monitor exactly where your incoming notification traffic is coming from with built-in attribution that requires zero complex configuration.

Visit this page to learn more.