143 Snippets
20+ Favourites
40+ Downloads

Changing Text For Suggestion Donation Descriptions

You can place this code in your theme functions.php or use WPCode.

Add Custom Campaign And Donation Field

/** * In this example, a new email field is added which can be used both…

Add Campaign Raised Summary

/** * Add a short summary after the donation details showing the funds raised by each…

Add Individual Category Tag Columns

/** * By default, Charitable shows a "Campaign Categories" column in the * donations export, which…

Add Custom Campaign Field

/** * This example shows how you can add a new campaign field to be displayed…

Remove Terms Fields

/** * If you would like to enable the terms and conditions, privacy * policy and…

Move Campaign Summary Description Below Content

/** * In this example, we shuffle the order of things on the campaign page. *…

Customize Donation Stats

/** * Customize the stats that are shown in the Donation Stats widget. * * In…

Remove Organisation Field

/** * Remove "organisation" from the profile form. */ function ed_remove_organisation_from_profile( $fields ) { unset( $fields[…

Add Campaigns Menu

/** * This function will add a top-level Campaigns menu tab to the menu * in…

Charitable Reporting: Adjusting Initial Filters

add_filter( 'charitable_report_overview_args', 'example_charitable_report_overview_defaults', 999 ); function example_charitable_report_overview_defaults( $defaults = array() ) { // Defaults array contains:…

1 10 11 12