Skip to content

Commit

Permalink
fix(donor-detail-page): show payment number
Browse files Browse the repository at this point in the history
  • Loading branch information
ravinderk committed Mar 23, 2018
1 parent 28c46e1 commit 72f6bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/admin/donors/donors.php
Expand Up @@ -789,7 +789,7 @@ class="button js-cancel"><?php _e( 'Cancel', 'give' ); ?></button>
<?php if ( ! empty( $payments ) ) { ?>
<?php foreach ( $payments as $payment ) : ?>
<tr>
<td><?php echo $payment->ID; ?></td>
<td><?php echo Give()->seq_donation_number->get_serial_code( $payment->ID ); ?></td>
<td><?php echo give_donation_amount( $payment->ID, array( 'currency' => true, 'amount' => true, 'type' => 'donor' ) ); ?></td>
<td><?php echo date_i18n( give_date_format(), strtotime( $payment->post_date ) ); ?></td>
<td><?php echo give_get_payment_status( $payment, true ); ?></td>
Expand Down

0 comments on commit 72f6bdf

Please sign in to comment.