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!

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.

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.