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!

Addon New

🗒️ Custom Receipts… New Addon!

With Custom Receipts, you decide which page your donors see, on every campaign. Here’s how it works, and why it’s worth turning on today.

Left side shows a donation receipt with donation number, date, total, and payment method for a  gift to Anywhere, titled 'One Family Gets Clean Water For A Week.'

Create receipts that are CUSTOM TO THE DONOR OR CAMPAIGN. You can also:

📅 Year-end appeal: Reinforce the goal and invite donors to share while momentum is high.

🎗️ Memorial or tribute campaign: Give a gentle, respectful thank-you that fits the moment.

💎 Major gifts: Show a special message only to donors who give above a threshold.

🔁 Recurring growth: Invite one-time donors to become monthly supporters right on the receipt.

🌍 Global campaigns: Surface a country-specific note, like a Gift Aid reminder, only where it applies.

Learn more here.

New templates

🤩 New Beacon Campaign Templates w/ “Hero” Block!

With the new Beacon Campaign Templates for Charitable Pro, you can launch a stunning, full-width fundraising page that instantly captures visitor attention above the fold.

Fundraising page header for Save Maple Grove Park with a donation widget and a small square photo of a sunlit tree thumbnail on the left.

🔦 Above-the-Fold Impact: Lead with a full-width hero image, your logo, and your goal with a donation widget locked right on top of the banner so your ask and momentum register instantly without scrolling.

📐 Two Flexible Layouts: Choose between a structured two-column layout for side-by-side storytelling and supporting details, or a clean one-column view designed for uninterrupted long-form narratives.

⚡ All-in-One Hero Field: Powered by the new Campaign Hero field, bringing background media, live progress bars, custom donation amounts, and recurring giving tabs together into a single cohesive block that can be dropped into any layout.

🎨 Automatic Theme Matching: The hero banner and donation widget automatically inherit your campaign theme’s button and accent colors, ensuring your entire presentation stays beautifully on-brand without touching a line of CSS.

Learn more here.

donation form Feature New

📝 Donation Form Block: Embed a Working Donation Form Anywhere

With the new Donation Form Block for Charitable Pro, you can drop a fully working donation form directly onto any page or post in the WordPress block editor. No redirects, no page reloads, and zero friction between reading your story and making a contribution.

📝 Drop Forms Anywhere: Place a working form directly onto your homepage, inside a story-driven blog post, on a dedicated landing page, or within a campaign announcement.

🎯 Dynamic Campaign Binding: Easily choose a specific campaign from the block sidebar or set it to automatically bind to whichever campaign is currently being viewed.

📐 Full vs. Minimal Form Views: Switch between a full layout or a compact minimal view to perfectly fit sidebars, narrow columns, or wide landing pages.

🎨 Scoped No-Code Styling: Customize typography, container spacing, border radius, amount buttons, and accent colors independently for every form instance without touching a line of CSS.

Learn more here.

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.