दान संबंधी दस्तावेज़ीकरण

स्पष्ट, चरण-दर-चरण निर्देशों के साथ दान संबंधी का अधिकतम लाभ उठाना सीखें।

Campaign Update Addon: Campaign Updates

आवश्यकताएँ:

  • Charitable Pro 1.8.15+
  • Charitable Campaign Updates 1.0.8+

Campaign Updates lets you publish progress posts for any campaign, display them on the campaign page (or any page), and email the donors who opted in. Three update types (general, milestone, urgent), one “featured” pin per campaign, and a per-campaign unsubscribe link in every email so list hygiene takes care of itself.

The Campaign Updates panel in the Campaign Builder, showing the updates feed for a campaign with several recent updates listed in card form.

When you’d use it

  • You want donors to see the campaign keep moving after they give, not just at end-of-campaign thank-yous.
  • You’re running a multi-week or multi-month campaign and need a way to surface milestones and urgent asks (matching gift expiring, emergency stretch goal).
  • You want one signed-up audience per campaign instead of one site-wide list that includes everyone.

Finding it

The whole feature lives inside the Campaign Builder. Open any campaign and look in the left sidebar:

WordPress Admin > Campaigns > [your campaign] > Campaign Builder > Campaign Updates

The panel has three sub-tabs at the bottom:

  • Updates Feed — the default. Latest update preview plus the full feed of update cards (add, edit, delete, send).
  • Subscribers — donors who opted in to receive email updates for this campaign, plus the email-send history.
  • Settings — the per-campaign on/off, content limit, and email behavior.

The big picture

There are three moving parts working together:

Part Where it lives What it does
The updates feed Campaign Builder > Campaign Updates > Updates Feed The list of updates for one campaign. Add, edit, delete, send.
The donor opt-in Donation form, when contact consent is enabled A “I want to receive updates” checkbox next to the consent checkbox at donation time.
The display Campaign page (via Campaign Builder field or Gutenberg block) The public-facing list that donors and visitors see on the campaign page.

A campaign needs all three turned on to deliver the full experience: you publish an update, the donors who opted in get an email, and visitors who land on the campaign page see the update displayed there.

Step-by-step setup

The first time you set this up for a campaign:

  1. Turn it on for the campaign. Open Campaign Builder > Campaign Updates > Settings. Flip Enable Campaign Updates to On. This is the master switch for everything else on this campaign.
  2. Verify the opt-in path exists. Go to Charitable > Settings > Privacy and confirm Contact consent is on. The Campaign Updates opt-in checkbox piggybacks on this; without it, the checkbox can’t render on the donation form. (The Settings tab will warn you if any of these prerequisites are missing.)
  3. Add the Campaign Updates field to the campaign layout. Open Campaign Builder > Design > Add Fields and drop Campaign Updates wherever you want updates to show on the campaign page. For Gutenberg-based campaigns or non-campaign pages, use the Campaign Updates block instead.
  4. Confirm the email is enabled. Go to Charitable > Settings > Emails and make sure Campaign Update is enabled. The Settings tab will also flag this if it’s missing.
  5. Post your first update. Back in Campaign Builder > Campaign Updates > Updates Feed, click Add First Update. See Creating updates for the full modal walkthrough.

After step 5, your donation form will show the opt-in checkbox, your campaign page will show the update, and (depending on your sending mode) the email may go out automatically or wait for you to send it.

Settings tab

Every campaign has its own settings under Campaign Builder > Campaign Updates > Settings:

The Campaign Updates Settings tab inside the Campaign Builder, showing Display Settings and Email Notifications sections.

Display Settings

सेटिंग What it does
Enable Campaign Updates Master switch for this campaign. Off means: no opt-in checkbox, no email sends, no updates rendered on the front end.
Content Limit Maximum number of updates the field/block should display by default. Each instance of the Campaign Updates field can override this. Set to 0 for no limit.

Email Notifications

सेटिंग What it does
Enable Update Emails Allows update emails to be sent for this campaign. Also requires the Campaign Update email to be enabled in Charitable’s global email settings.
Automatic Email Sending Three modes – Manual only (you click “send” per update), Auto for featured updates (publishing a featured update auto-sends), Auto for all updates (every published update auto-sends).
Email Content Length Number of characters of the update body to include in the email. 0 means full content. Useful for keeping emails skimmable.

The Settings tab shows yellow warning banners if it detects any of:

  • The Campaign Update email is disabled in Charitable email settings.
  • Contact consent is off in Privacy settings.
  • The campaign form has no privacy/consent field (so new donors can’t opt in).

Fix what the warnings flag before you start posting updates, or new donors won’t be able to subscribe.

टिप्स

  • One featured update at a time. Marking a second update as featured automatically unfeatures the previous one. Use it for “this is the one thing you need to know right now.”
  • Drafts don’t email. Saving as draft is safe – drafts are invisible to donors and never trigger sends, even in auto-send modes. Use drafts to compose updates before they go live.
  • Test before sending. The send modal has a “Send Test Email” link that sends to the currently-logged-in user. Always send yourself a test before hitting the real list.
  • Donor opt-out is per-campaign. A donor unsubscribing from your gala campaign doesn’t unsubscribe them from your animal-rescue campaign. The unsubscribe link is campaign-scoped.
  • Re-subscribe is automatic on new donations. If a donor unsubscribes then later makes a fresh donation to the same campaign with the opt-in checked, they’re back on the list. No manual cleanup needed.

Developer reference

फ़िल्टर

These are the high-traffic filters most likely to come up in customization work. See Hooks and Filters for the complete inventory.

फ़िल्टर डिफ़ॉल्ट उद्देश्य
charitable_campaign_updates_default_checked false Whether the donation-form opt-in checkbox is pre-checked.
charitable_campaign_updates_consent_label "I want to receive updates about this campaign's progress." The opt-in checkbox label.
charitable_campaign_updates_require_contact_consent सत्य Whether the opt-in checkbox is disabled until contact consent is checked.
charitable_campaign_update_types (array) The list of update types – general, milestone, urgent – and their labels, icons, and colors.
charitable_campaign_updates_content_limit (int) Per-campaign default content limit.
charitable_can_user_manage_campaign_updates सत्य Whether the current user can add/edit/delete updates for a campaign.

कार्रवाई

कार्रवाई When it runs
charitable_campaign_update_meta_saved After an update’s post meta is saved from the admin (post_id, post).
charitable_campaign_updates_builder_loaded When the Campaign Builder’s Campaign Updates panel finishes loading.
charitable_campaign_updates_activated On plugin activation.
charitable_campaign_updates_installed After plugin install (version string passed).

Helper functions and post type

Symbol उद्देश्य
charitable_get_campaign_update_types() Returns the array of registered update types. Apply the charitable_campaign_update_types filter to add/modify types.
Post type: campaign_update Each update is a campaign_update post with _campaign_id, _update_type, _featured, and (for urgent) _urgency_level meta.

Capability gate

Edit access defaults to anyone who can edit the campaign. Override the charitable_can_user_manage_campaign_updates filter to restrict (for example, to only the campaign author):

add_filter( 'charitable_can_user_manage_campaign_updates', function( $can, $campaign_id ) {
    if ( ! $can ) {
        return $can;
    }
    $campaign = get_post( $campaign_id );
    return $campaign && (int) $campaign->post_author === get_current_user_id();
}, 10, 2 );

Customization examples

Pre-check the opt-in checkbox for first-time donors:

add_filter( 'charitable_campaign_updates_default_checked', '__return_true' );

Change the consent label to something campaign-specific:

add_filter( 'charitable_campaign_updates_consent_label', function( $label ) {
    return 'Email me updates about this campaign. We send roughly one per month.';
} );

Add a fourth update type (“inspiration”) for sharing donor stories:

add_filter( 'charitable_campaign_update_types', function( $types ) {
    $types['inspiration'] = array(
        'label'       => __( 'Inspiration', 'your-textdomain' ),
        'description' => __( 'Stories and quotes from donors and beneficiaries.', 'your-textdomain' ),
        'icon'        => 'fa-heart',
        'color'       => '#9333ea',
    );
    return $types;
} );

Override the default per-campaign content limit globally to 10:

add_filter( 'charitable_campaign_updates_content_limit', function( $limit, $campaign_id ) {
    return 10;
}, 10, 2 );

संबंधित


अभी भी प्रश्न हैं? हम मदद के लिए यहाँ हैं!

अंतिम बार संशोधित:

चैरिटेबल में नया क्या है

नवीनतम अपडेट देखें
🔔 हमारे नवीनतम अपडेट प्राप्त करने के लिए सदस्यता लें
📧 ईमेल के लिए सदस्यता लें

ईमेल सदस्यता

हमारे न्यूज़लेटर में शामिल हों

हम आपको स्पैम नहीं भेजेंगे। हम केवल तभी ईमेल भेजते हैं जब हमें लगता है कि यह वास्तव में आपकी मदद करेगा। आप किसी भी समय सदस्यता समाप्त कर सकते हैं!

गिवडब्ल्यूपी माइग्रेशन नया

GiveWP के लिए व्हाइट ग्लोव माइग्रेशन सेवा

अपने फ़ंडरेज़िंग प्लेटफ़ॉर्म को GiveWP से Charitable पर स्विच करने के बारे में सोच रहे हैं, लेकिन अपना डेटा खोने का जोखिम नहीं उठाना चाहते या स्वयं एक जटिल तकनीकी सेटअप को संभालना नहीं चाहते? Charitable की व्हाइट ग्लोव माइग्रेशन सेवा में शामिल हैं:

👥 निर्दोष डोनर मैपिंग: शून्य डेटा हानि के साथ अपने पूरे समर्थक डेटाबेस को सुरक्षित रूप से स्थानांतरित करें।

📊 पूर्ण वित्तीय इतिहास: निरंतर, सटीक रिपोर्टिंग के लिए हर ऐतिहासिक लेनदेन को सावधानीपूर्वक संरक्षित करें।

🔄 निर्बाध आवर्ती दान: अपने आने वाले राजस्व को बाधित किए बिना या अपने दाताओं को अपनी जानकारी अपडेट करने की आवश्यकता के बिना सक्रिय स्थायी सब्सक्रिप्शन को सुरक्षित रूप से स्थानांतरित करें।

💳 शून्य गेटवे व्यवधान: स्ट्राइप, पेपाल, या किसी अन्य GiveWP-संगत प्रोसेसर का उपयोग करना जारी रखें जिसे आप पहले से ही पसंद करते हैं।

🚀 विशेषज्ञ तकनीकी सेटअप: जब हमारी टीम आपके फ़ॉर्म को इंस्टॉल और कॉन्फ़िगर करने का भारी काम संभालती है तो आराम करें—साथ ही, योग्य उपयोगकर्ताओं को Charitable Pro का पूरा साल पूरी तरह से मुफ़्त मिलता है।

अधिक जानने के लिए इस पृष्ठ पर जाएँ

ऑटोमेशन सुधार

📢 नई सुविधा अलर्ट: ऑटोमेशन कनेक्ट 2.0 यहाँ है! 🚀

अपने फ़ंडरेज़िंग डेटा को Mailchimp, Slack, या Google Sheets जैसे टूल से जोड़ने के बारे में सोच रहे हैं, लेकिन डेवलपर को काम पर नहीं रखना चाहते या कस्टम कोड नहीं लिखना चाहते? Charitable के नए ऑटोमेशन ऐडऑन में है:

⚡ 17 इवेंट ट्रिगर: डोनर के पहले उपहार, नवीनीकरण भुगतान, या अभियान मील के पत्थर तक पहुंचने के लिए तुरंत वेबहुक फायर करें।

🎯 स्मार्ट कंडीशनल लॉजिक: केवल तभी डेटा भेजने के लिए 11 फ़ील्ड में शक्तिशाली AND/OR लॉजिक का उपयोग करें जब यह आपकी सटीक शर्तों को पूरा करता हो, जैसे न्यूज़लेटर ऑप्ट-इन।

📊 कस्टम पेलोड नियंत्रण: डोनर, दान और अभियान मेटाडेटा में 80+ क्लीन डेटा फ़ील्ड में से चुनें ताकि आपके ऐप्स को वही मिले जिसकी उन्हें आवश्यकता है।

🚀 प्री-बिल्ट प्लेटफ़ॉर्म टेम्प्लेट: Zapier, Make.com, n8n, HubSpot, और Slack के लिए तैयार टेम्प्लेट के साथ स्क्रैच से सेटअप छोड़ें।

🛡️ विश्वसनीय डेवलपर टूल: हस्ताक्षरित HMAC-SHA256 पेलोड, पूर्ण वर्डप्रेस फ़िल्टर और स्वचालित पुनः प्रयास लॉग के साथ अपने वर्कफ़्लो को पावर दें।

ऑटोमेशन सुधार

🔌 चैरिटेबल ज़ैपियर से जुड़ता है: 7,000+ ऐप्स से कनेक्ट करें और अपने धन उगाहने को स्वचालित करें

दान डेटा को मैन्युअल रूप से अकाउंटिंग शीट में कॉपी करने या नए दाता साइनअप को ट्रैक करने से थक गए हैं? अपने प्रशासनिक कार्यों को ऑटोपायलट पर रखें। चैरिटेबल अब आधिकारिक तौर पर ज़ैपियर पर है, जो आपको अपने धन उगाहने को सीधे अपने पसंदीदा टूल के बाकी हिस्सों में प्लग करने का एक शक्तिशाली, नो-कोड तरीका प्रदान करता है।

हर दान, दाता साइनअप, और अभियान मील का पत्थर अब निर्बाध रूप से एक स्वचालित वर्कफ़्लो को ट्रिगर कर सकता है।

नई क्या है:

♾️ 7,000+ ऐप्स से कनेक्ट करें: अपने चैरिटेबल अभियानों को Google Sheets, QuickBooks, Slack, Mailchimp, HubSpot, Notion, Airtable, और हजारों अन्य जैसे रोजमर्रा के सॉफ़्टवेयर के साथ ब्रिज करें।

⚡ 12 शक्तिशाली ट्रिगर: संपूर्ण दान जीवनचक्र को कवर करने वाले स्मार्ट ऑटोमेशन ट्रिगर का उपयोग करके गहन वर्कफ़्लो बनाएं—जिसमें नया दान, नया दाता, सदस्यता रद्द, और अभियान लक्ष्य तक पहुंचना शामिल है।

📋 पूर्व-निर्मित एक्शन टेम्प्लेट: हमारे पूर्व-निर्मित टेम्प्लेट संयोजनों के साथ तीन मिनट या उससे कम समय में शुरुआत करें, जैसे कि Google शीट में सीधे नए दान लॉग करना या Gmail के माध्यम से कस्टम दाता स्वागत ईमेल भेजना।

🚫 किसी कोड की आवश्यकता नहीं: किसी जटिल वेबहुक या कस्टम PHP स्क्रिप्ट की आवश्यकता नहीं है। बस अपना ट्रिगर चुनें, अपना ऐप चुनें, अपने फ़ील्ड मैप करें, और ज़ैपियर को भारी काम करने दें।

एडमिन समय के घंटों को बचाने के लिए तैयार हैं? आज ही ऑटोमेशन कनेक्ट एडऑन के साथ चैरिटेबल प्रो प्राप्त करें और अपना पहला ज़ैप लॉन्च करें!

सुधार भुगतान

🚀 पेपैल कॉमर्स का परिचय: एक कनेक्शन, दान करने के छह तरीके

दानकर्ता जब किसी कारण का समर्थन करते हैं तो आधुनिक, लचीले भुगतान विकल्पों की उम्मीद करते हैं। यदि वे आपके दान फ़ॉर्म पर अपनी पसंदीदा विधि नहीं देखते हैं, तो वे अक्सर बिना कुछ कहे चले जाते हैं। पेपैल कॉमर्स के साथ, हम आपके अभियानों में एक पूरी तरह से आधुनिक चेकआउट अनुभव ला रहे हैं।

एक एकल एकीकरण का आनंद लें जो आपके फ़ॉर्म को अपग्रेड करता है, दान को निर्बाध बनाता है, और आपको हर एक दान को कैप्चर करने में मदद करता है।

नई क्या है:

🔌 एक-क्लिक कनेक्शन: गंदे एपीआई कुंजी और डेवलपर दस्तावेज़ों को छोड़ें। बस "पेपैल से कनेक्ट करें" पर क्लिक करें, अपने व्यवसाय खाते में साइन इन करें, और आपका आधुनिक फ़ॉर्म पांच मिनट से भी कम समय में लाइव हो जाएगा।

💳 देने के छह तरीके: अपने समर्थकों को पेपैल बैलेंस, वेन्मो (यूएस), पे लेटर फाइनेंसिंग, प्रमुख क्रेडिट/डेबिट कार्ड, एप्पल पे (सफारी), और गूगल पे (क्रोम) सभी एक ही फ़ॉर्म से तुरंत एक्सेस दें।

🔄 लचीला आवर्ती दान: मासिक दान का पूरी तरह से समर्थन करता है। पेपैल सब्सक्रिप्शन एपीआई (पेपैल के अंत में स्वचालित रूप से संभाला जाता है) या वॉल्ट + क्रॉन (सीधे आपकी साइट पर सुरक्षित रूप से संभाला जाता है) के बीच चयन करें।

💬 अनुकूल त्रुटि रिकवरी: कोई और भ्रमित करने वाले ब्राउज़र अलर्ट नहीं। यदि कोई भुगतान अस्वीकृत हो जाता है, तो दानकर्ताओं को सादे-भाषा, इनलाइन संदेश दिखाई देते हैं जो उन्हें समस्या को ठीक करने और अपना उपहार पूरा करने के तरीके के बारे में मार्गदर्शन करते हैं।

पेपैल के लिए तैयार हैं, आधुनिक? चैरिटेबल प्रो 1.8.15+ (या चैरिटेबल लाइट 1.8.11+) में अपडेट करें और आज ही अपना खाता कनेक्ट करें!

अभियान नया

⏳ अभियान काउंटडाउन: तात्कालिकता को बढ़ाएं और दान बढ़ाएं

तात्कालिकता धन उगाहने वाले सबसे शक्तिशाली उपकरणों में से एक है! अभियान काउंटडाउन से मिलें—एक लाइव, वास्तविक समय टाइमर जो टालमटोल को तत्काल उदारता में बदलने के लिए बनाया गया है।

अभियान_काउंटडाउन_एनीमेशन

नई क्या है:

⏱️ लाइव, रियल-टाइम तात्कालिकता: लाइव-अपडेटिंग विज़ुअल काउंटडाउन के साथ अपने अभियान की समय सीमा तक दिनों, घंटों, मिनटों और सेकंडों को खूबसूरती से ट्रैक करें।

🎨 आपके लुक के अनुरूप: बॉक्स्ड बॉर्डर्ड टाइल्स या एक साफ, सिंगल-लाइन इनलाइन डिस्प्ले के बीच चुनें। फ़ॉन्ट और डीप कलर कंट्रोल्स के साथ तुरंत अपने थीम से मिलान करें।

🛠️ कहीं भी रखें: कैंपेन बिल्डर फ़ील्ड, एक समर्पित गुटेनबर्ग ब्लॉक, या एक साधारण शॉर्टकोड का उपयोग करके कहीं भी काउंटडाउन ड्रॉप करें।

🚨 स्मार्ट समाप्ति क्रियाएं: अंतिम स्थिति पर पूर्ण नियंत्रण—टाइमर को स्वचालित रूप से एक कस्टम संदेश से बदलने, इसे शून्य पर फ्रीज करने और बहुत कुछ करने के लिए चुनें।