Skip to content

Instantly share code, notes, and snippets.

@ericnicolaas
Last active December 30, 2015 23:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericnicolaas/fb61c48fcfd6b93d6654 to your computer and use it in GitHub Desktop.
Save ericnicolaas/fb61c48fcfd6b93d6654 to your computer and use it in GitHub Desktop.
Charitable Roadmap - what happened in 2015 and what's to come in 2016.
<?php
/**
* After more than a year in development, we finally
* launched Charitable on August 19.
*
* @see https://www.wpcharitable.com/charitable-now-available-on-wordpress-org/
*/
did_action( 'charitable_launch' );
/**
* A month later, on September 23, we released our
* Stripe extension.
*
* @see https://www.wpcharitable.com/stripe-release-1-0-0/
*/
did_action( 'charitable_release_stripe' );
/**
* Released Ambassadors extension on October 6. Ambassadors is
* designed for peer-to-peer fundraising and front-end
* campaign submissions.
*
* @see https://www.wpcharitable.com/peer-to-peer-fundraising-crowdfunding-charitable/
*/
did_action( 'charitable_release_ambassadors' );
/**
* On November 24, we added our Easy Digital Downloads
* integration, a plugin created for e-commerce stores
* & non-profits alike.
*
* @see https://www.wpcharitable.com/easy-digital-downloads-donations/
*/
did_action( 'charitable_release_edd_connect' );
/**
* And to wrap the year up, on December 29 we put out
* our Authorize.Net addon.
*
* @see https://www.wpcharitable.com/accept-donations-with-authorize-net/
*/
did_action( 'charitable_release_authorize_net' );
/**
* Which brings us to 2016 -- the future. Want a sneak
* peek at what we're planning to do in the next 12 months?
*/
do_action( 'charitable_2016' );
// Integrate with MailChimp, Constant Contact and other newsletter services.
add_action( 'charitable_2016', 'charitable_release_newsletter_connect' );
// Accept recurring donations for your non-profit.
add_action( 'charitable_2016', 'charitable_release_recurring_donations' );
// 2Checkout, PayPal Express and more.
add_action( 'charitable_2016', 'charitable_release_more_gateways' );
// Charitable itself will continue to improve.
add_action( 'charitable_2016', 'charitable_improve_improve_improve' );
/**
* Follow us?
*
* @see https://twitter.com/wpcharitable/
* @see https://www.facebook.com/wpcharitable/
* @see https://www.wpcharitable.com/
* @see https://github.com/Charitable/Charitable
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment