Charitable Documentation

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

PayPal Commerce Account Type

Requires:

The Account Type setting on the PayPal Commerce gateway tells PayPal how to classify every donation your site sends to them. The choice you make here affects four things on PayPal’s side: the transaction fee tier you receive, how donor disputes are handled, how PayPal’s fraud and risk engine evaluates your transactions, and how transactions appear in both your PayPal merchant reports and your donor’s PayPal activity history.

The setting is required on Charitable Pro 1.8.16+ – PayPal Commerce donations are blocked at the donation form until you pick one and save.

Finding it

WordPress Admin > Charitable > Settings > Payment Gateways > PayPal Commerce > Organization > Account Type

You’ll see two options:

  • Nonprofit / Charitable Organization
  • Business / Standard

There is no default. You must pick one before your site can accept PayPal Commerce donations.

Which option should I pick?

Pick Nonprofit / Charitable Organization if:

  • Your organization is a registered 501(c)(3), 501(c)(4), or equivalent charity in your country.
  • Your organization is unregistered but functionally operates as a charity (community fundraising, church without formal status, fiscal sponsorship, grassroots cause).
  • The transactions you’re collecting are genuinely donations – donors are giving without expectation of receiving goods or services in exchange.

Pick Business / Standard if:

  • You’re using Charitable to collect event tickets, membership dues, sponsorship payments, or similar exchanges where the donor receives something in return.
  • Your organization is a for-profit business using Charitable for any reason.
  • Your transactions don’t qualify as charitable donations under your local tax authority’s definition.

If you run a hybrid operation – a nonprofit that also sells event tickets through Charitable – pick Nonprofit / Charitable as your default and use the per-campaign filter described in the developer notes below to override individual non-donation campaigns.

What changes when you pick Nonprofit / Charitable

Charitable sends category: "DONATION" on every line item in the PayPal order payload. PayPal applies four effects on their side:

1. Discounted donation fee

PayPal charges a lower per-transaction fee on transactions tagged as donations. This is a real, automatic fee reduction that applies to your account immediately – no separate application required. The exact rate varies by region and currency; PayPal publishes current rates on their Merchant Fees page.

If your PayPal Business account is also flagged as a verified charity (which PayPal determines from the nonprofit information you provided during your PayPal Business account setup – EIN, registration documents, business type, industry, etc.), you automatically receive the lower charity rate instead. PayPal applies whichever rate is lower. Your charity flag on PayPal’s side is independent of the Account Type setting in Charitable – this setting tells PayPal how to classify the transaction; your account flag tells PayPal what discount tier you qualify for. See Charity status on your PayPal account below for how to check or update your PayPal account’s nonprofit information.

2. Dispute handling

Donation transactions are not covered by PayPal Purchase Protection. Any dispute a donor raises is routed through their card issuer or bank instead of PayPal’s buyer protection program. This generally works in your favor – you have one fewer chargeback vector to defend against, and donor disputes against donations are rare.

3. Risk and fraud evaluation

PayPal routes donation transactions through a giving-specific risk framework with thresholds and patterns calibrated for charitable giving. Their team evaluates nonprofit transactions separately from commercial purchases, and the risk model accommodates donation-specific patterns (one-time gifts from new donors, recurring small amounts from established donors, year-end giving surges) that would look suspicious in a standard commerce context.

4. Reporting and donor experience

Transactions appear as donations – not purchases – in both your PayPal merchant reports and your donor’s PayPal activity history. PayPal also adjusts content throughout the donor-facing PayPal checkout to use donation-appropriate language. Donors see they donated to your organization, not that they paid for a product.

What changes when you pick Business / Standard

Charitable sends category: "DIGITAL_GOODS" on every line item. PayPal treats the transactions as commercial purchases:

  • Standard commercial transaction fees apply.
  • PayPal Purchase Protection covers donor disputes.
  • Standard commerce risk framework.
  • Transactions appear as purchases in merchant reports and donor activity.

This is the correct setting for event tickets, memberships, sponsorships, and any payment where the donor receives something in exchange.

This setting classifies transactions, not your account

This setting controls how PayPal classifies each individual donation transaction Charitable sends. It does not update your PayPal account’s nonprofit status (PayPal handles that separately, during your Business account setup – see Charity status on your PayPal account below).

If you select Nonprofit / Charitable but your PayPal Business account isn’t actually associated with a charitable organization, you’ll still send donation-classified transactions, but you won’t receive the lower charity rate (that’s gated on the account flag, not this setting). PayPal may also flag the discrepancy through their risk monitoring over time. Be honest about which option matches your operation.

Charity status on your PayPal account

Two different things determine what fees you pay on donations:

  1. The transaction classification you send (controlled by this Account Type setting). Picking Nonprofit / Charitable tells PayPal “this transaction is a donation,” which unlocks PayPal’s discounted donation fee tier.
  2. Your PayPal Business account’s charity status (determined by PayPal during your account setup). If your PayPal Business account is flagged as a verified charity, PayPal applies the lower charity rate instead – automatically, with no change required in Charitable.

The two work together. Most Charitable users on the Nonprofit / Charitable setting receive the discounted donation fee (from the classification). Charitable users whose PayPal accounts are also flagged as verified charities receive the lower charity rate (from the account flag).

Checking or updating your PayPal charity status

PayPal handles charity verification as part of standard Business account setup – it isn’t a separate program with a separate application URL. When you set up (or update) a PayPal Business account, PayPal asks for:

  • Business type (Nonprofit / Charity is one of the options)
  • Industry classification
  • EIN or tax identification number
  • Nonprofit registration documentation (in the US, your 501(c)(3) determination letter; in other countries, your local charity registration)

If you set up your PayPal Business account before your nonprofit was formally registered (or you didn’t identify as a nonprofit at signup), contact PayPal Business support and ask them to update your business profile to reflect your nonprofit status. Once PayPal updates your account flag, the lower charity rate applies automatically on every future transaction Charitable sends with the Nonprofit / Charitable classification.

You don’t need to change anything in Charitable when your charity flag is updated on PayPal’s side. The Account Type setting in Charitable stays on Nonprofit / Charitable; PayPal applies the lower rate based on your account flag.

Changing your Account Type later

You can change the setting at any time. New donations made after you save use the new classification. Existing donations and their PayPal records are not retroactively reclassified.

If you change from Nonprofit / Charitable to Business / Standard while you have active recurring donations, the next renewal cycle uses the new classification. The donor isn’t notified – only the merchant-side classification on PayPal changes.

Why the setting is required

Charitable Pro 1.8.16 made this setting mandatory because the wrong default has real consequences. If we silently assumed everyone is a nonprofit, for-profit merchants using Charitable for event tickets would have their transactions misclassified as donations, exposing them to potential PayPal terms-of-service issues. If we assumed everyone is a business, nonprofit merchants would pay higher fees than they should.

The B-strict default-handling forces an explicit choice on every site so the merchant – not the plugin – owns the classification decision.

Developer notes

Per-campaign override

Advanced sites can override the category on a per-campaign basis using the charitable_paypal_commerce_line_item_category filter:

add_filter(
    'charitable_paypal_commerce_line_item_category',
    function ( $category, $payment_method, $context ) {
        // Override for a specific campaign ID - e.g., a nonprofit's
        // separate event-ticket campaign.
        if ( $context instanceof Charitable_Campaign_Donation
            && 1234 === (int) $context->get_campaign_id() ) {
            return 'DIGITAL_GOODS';
        }
        return $category;
    },
    10,
    3
);

Apple Pay payment methods automatically fall back to PHYSICAL_GOODS regardless of the Account Type setting, because PayPal currently rejects DONATION for Apple Pay (status under re-evaluation by PayPal). PayPal Wallet, Venmo, ACDC card fields, Google Pay, and vault-based recurring renewals all support DONATION and use the value derived from the Account Type setting. The Apple Pay fallback runs before the filter so it cannot be overridden.

Vault renewals

Recurring donations processed via Charitable’s Vault + Cron mode carry the same category on every renewal as their original donation, based on the gateway setting at renewal time. If you change Account Type, the change propagates to future renewals automatically.

Related

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!

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.

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.