Charitable Documentation

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

Charitable Tributes: Settings, Integrations, and Developer Reference

Requires: 

  • Charitable Pro 1.8.16+
  • Charitable Tributes 1.0.0+

This page is the complete reference for Charitable Tributes: every setting you can change, how it works with the other Charitable addons, and the full developer surface of hooks, AJAX actions, REST endpoints, and templates.

If you are looking for how to do a specific task, the focused guides are usually a better starting point. This page is the map of everything.

Tributes Settings

All settings live under Charitable » Tributes » Settings, organized into tabs.

General

  • Default privacy level – the privacy level applied to new honorees (public, family approval, members, or private link).
  • Default tribute label – the wording used when a tribute type does not specify its own.
  • Form pattern – the default layout for tribute fields on donation forms.
  • Donor context line – the helper text shown above the tribute fields.
  • GDPR consent text – the consent wording shown when a donor chooses to notify a loved one.

Donation Form

  • Form pattern – choose Blocks inline (tribute fields in the amount section) or Blocks step (tribute fields on their own step).
  • Donor context line – customize the helper text in your own voice.

Integrations

A toggle for each of the five integrations, so you can turn any of them off. See the Integrations section below for what each one does.

Tributes Emails

  • Enable and configure the tribute notification, including from-name, from-email, and per-tribute-type subjects and bodies.
  • Configure the family digest schedule (off, weekly, biweekly, or monthly), the day it sends, and its subject.

Tributes E-card

  • Enable the richer e-card format and set its headline, attribution line, and accent color.
  • Set per-tribute-type subject, eyebrow, and closing wording.
  • Send Test E-card to preview the result.

Custom Fields

An AJAX-driven manager for defining your own fields on honorees and on tribute campaigns. Custom fields appear on the records and are available as email tags.

Settings are stored in the charitable_tributes_settings option; custom field definitions in charitable_tributes_custom_fields.

Tributes Integrations with other addons

Tributes detects each related addon and adds tribute-aware behavior. If an addon is not installed, that integration simply does nothing. Each can be toggled off in Settings > Integrations.

AddonWhat Tributes addsSetting
Recurring DonationsThe annual tribute opt-in that turns a one-time gift into a recurring gift, with tribute details preserved on every renewal.recurring_upsell
Donor Wall(core)An “In Memory of [Honoree]” tag appended to the donor’s name on your site’s main donor wall.donor_wall_tribute_tag
DonorTrustSuppresses DonorTrust badges on tribute pages, which have their own donor attribution.donortrust_suppress
PDF ReceiptsA formatted tribute section in the generated PDF receipt. Requires PDF Receipts 1.1.3+.pdf_receipts_tribute_section
Automation ConnectRegisters tribute events (donation completed, campaign created, honoree created) for webhooks and automations.automation_connect_events

Privacy and accessibility

  • GDPR – Tributes participates in WordPress’s personal-data export and erasure tools, so a data request includes tribute and honoree information tied to the person.
  • Consent – family notifications only send when the donor confirms consent, and family digests require an explicit opt-in.
  • Accessibility – the donor-facing surfaces are built to WCAG 2.1 AA.

Developer reference for Tributes

Actions

ActionFires when
charitable_tributes_initThe addon container is ready. The safest place to register extensions.
charitable_tributes_campaign_createdA tribute campaign is created.
charitable_tributes_donation_linkedA donation is linked to an honoree (back-compat event).
charitable_tributes_donation_completedA tribute donation completes (canonical event, broad payload).
charitable_tributes_donation_refundedA tribute donation is refunded.
charitable_tributes_honoree_createdAn honoree record is created.
charitable_tributes_honoree_mergedTwo honorees are merged.
charitable_tributes_annual_reminder_sentAn annual giving reminder is sent.
charitable_tributes_family_digest_sentA family digest email is sent.
charitable_tributes_notification_send_failedA notification or e-card send throws (payload: donation id + Throwable).

The charitable_tributes_donation_completed payload:

add_action( 'charitable_tributes_donation_completed', function ( $donation_id, $data ) {
    // $data: donation_id, honoree_id, campaign_id, amount, currency,
    //        tribute_type, donor_id, donor_display
}, 10, 2 );

Filters

FilterDefaultPurpose
charitable_tributes_admin_tabsarrayModify the admin page tab list.
charitable_tributes_admin_sub_tabsarrayModify the settings sub-tabs.
charitable_tributes_templatesarrayRegister custom tribute templates.
charitable_tributes_url_basetributeChange the rewrite slug for tribute and honoree URLs.
charitable_tributes_type_optionsarrayFilter the available tribute types, optionally per campaign.
charitable_tributes_message_max_length500Donor message character limit.
charitable_tributes_hide_donor_commentfalseHide the donor message field.
charitable_tributes_honoree_context_fallbackcontextProvide honoree context for blocks with no explicit honoree.
charitable_tributes_unsubscribe_token_max_age30 daysLifetime of unsubscribe tokens.
charitable_tributes_receipt_email_enabledtrueShow the tribute section on receipt emails.
charitable_tributes_receipt_email_show_phototrueInclude the honoree photo on the receipt.
charitable_tributes_receipt_email_show_messagetrueInclude the donor message on the receipt.
charitable_tributes_receipt_email_show_ecardtrueReflect e-card styling on the receipt.
charitable_tributes_receipt_email_show_tribute_linktrueLink to the tribute page from the receipt.
charitable_send_tribute_notificationtrueGate the standard notification per donation.
charitable_send_tribute_ecardtrueGate the e-card per donation.

AJAX endpoints

All are wp_ajax_ only (no public access), require a nonce, and check the manage_charitable_settings capability.

ActionPurpose
charitable_tributes_wizard_openInitialize the wizard session.
charitable_tributes_wizard_stepRender and handle a wizard step.
charitable_tributes_wizard_set_campaign_statusPublish or draft the new campaign.
charitable_tributes_wizard_discardDiscard the wizard session.
charitable_tributes_save_honoree_notesSave admin notes on an honoree.
charitable_tributes_save_custom_fieldsSave custom field definitions.
charitable_tributes_add_family_contactAdd a family contact.
charitable_tributes_update_family_contactUpdate a family contact.
charitable_tributes_delete_family_contactDelete a family contact.
charitable_tributes_honoree_mergeMerge two honorees.
charitable_tributes_honoree_searchSearch honorees by name.
charitable_tributes_dismiss_bannerDismiss the welcome banner.
charitable_tributes_ecard_test_actionSend a test e-card.

REST API

Read-only endpoints for syncing tribute data into an external CRM or reporting stack.

Tribute campaigns – GET /wp-json/wp/v2/tribute_campaigns

Query paramExampleFilters by
tribute_typein-memory-ofTribute type.
templatein-loving-memoryTemplate used.
honoree123Honoree ID.
date_from / date_to2026-01-01Date range.

Each response includes a tribute_meta object with honoree_idtemplate_idtotal_raised, and donor_count.

Honorees – GET /wp-json/wp/v2/charitable-honorees

Query paramExampleFilters by
templatein-loving-memoryLinked tribute template.
has_donations1 or 0Only honorees with, or without, donations.

Each response includes a tribute_meta object with total_raiseddonor_countgift_countlast_donation_at, and linked_campaigns_count.

Database schema

TablePurpose
wp_charitable_honoree_donationsOne denormalized row per gift, linked to an honoree.
wp_charitable_honoree_family_contactsFamily contact records.
wp_charitable_honoree_totals_cacheCached per-honoree totals.

Use the repositories rather than querying directly:

use Charitable\Pro\Tributes\Repositories\Repositories;

Repositories::honorees();
Repositories::honoree_donations();
Repositories::honoree_family_contacts();
Repositories::honoree_totals_cache();

Templates

Override any of these by copying them into your theme, following Charitable’s template loader convention:

  • templates/single-tribute_campaign.php
  • templates/emails/tribute-notification.php (and -plain.php)
  • templates/emails/tribute-ecard.php
  • templates/emails/family-digest.php (and -plain.php)
  • blocks/<block>/render.php for each of the six blocks.

Automation Connect events

When Automation Connect is active, Tributes registers its events through the charitable_automation_connect_events filter, exposing tribute donation completed, tribute campaign created, and new honoree events for no-code automations.

Related

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.