Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updates #4

Merged
merged 7 commits into from
Aug 17, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions includes/admin/payments/class-payments-table.php
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,11 @@ public function get_columns() {
*/
public function get_sortable_columns() {
$columns = array(
'donation' => array( 'ID', true ),
'amount' => array( 'amount', false ),
'date' => array( 'date', false )
'donation' => array( 'ID', true ),
'donation_form' => array( 'donation_form', false ),
'status' => array( 'status', false ),
'amount' => array( 'amount', false ),
'date' => array( 'date', false )
);

return apply_filters( 'give_payments_table_sortable_columns', $columns );
Expand Down
2 changes: 1 addition & 1 deletion includes/forms/template.php
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ function give_payment_mode_select( $form_id ) {

<?php do_action( 'give_purchase_form', $form_id ); ?>

</div><!-- the checkout fields are loaded into this-->
</div>

<?php do_action( 'give_purchase_form_wrap_bottom', $form_id );

Expand Down