Skip to content

Instantly share code, notes, and snippets.

@mauriciogofas
Forked from dancameron/functions.php
Last active August 29, 2015 14:14
Show Gist options
  • Save mauriciogofas/e0b74c9a418768d04e04 to your computer and use it in GitHub Desktop.
Save mauriciogofas/e0b74c9a418768d04e04 to your computer and use it in GitHub Desktop.
Modify client dashboard date format in Sprout Invoices
<?php
function change_client_dash_date_format() {
return 'd/m/Y';
}
add_filter( 'si_client_dash_date_format', 'change_client_dash_date_format' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment