Skip to content

Instantly share code, notes, and snippets.

@ericnicolaas
Last active October 24, 2015 02:40
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/fa17e6c3619e338e224a to your computer and use it in GitHub Desktop.
Save ericnicolaas/fa17e6c3619e338e224a to your computer and use it in GitHub Desktop.
Set the default colour used by Charitable in the Checkout theme by Array.
<?php
/**
* Set the default colour used by Charitable.
*
* @return string
*/
function checkout_charitable_default_colour() {
return '#37BF91';
}
add_filter( 'charitable_default_highlight_colour', 'checkout_charitable_default_colour' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment