Skip to content

Instantly share code, notes, and snippets.

@picocodes
Created September 27, 2023 08:54
Show Gist options
  • Save picocodes/887dfce5d6e67960c888903f3938eded to your computer and use it in GitHub Desktop.
Save picocodes/887dfce5d6e67960c888903f3938eded to your computer and use it in GitHub Desktop.
<?php
add_filter( 'getpaid_invoice_totals_rows', function( $totals, $invoice ) {
$discount = $invoice->get_discount_code();
if ( ! empty( $discount ) ) {
$totals['discount'] .= ' (' . $discount . ')';
}
return $totals;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment