Making WordPress.org

Changeset 2483


Ignore:
Timestamp:
02/08/2016 07:53:33 PM (11 years ago)
Author:
iandunn
Message:

WordCamp Budgets: Add Bank Name field for Direct Deposit payments.

Location:
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/wordcamp-budgets.php

    r2481 r2483  
    399399                                case 'payable_to':
    400400
     401                                case 'ach_bank_name':
    401402                                case 'ach_routing_number':
    402403                                case 'ach_account_number':
     
    466467                        'beneficiary_country',
    467468                        'beneficiary_country_iso3166',
     469                        'ach_bank_name',
    468470                        'ach_routing_number',
    469471                        'ach_account_number',
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/views/payment-request/metabox-payment.php

    r2481 r2483  
    66
    77        <table id="payment_method_direct_deposit_fields" class="form-table payment_method_fields <?php echo 'Direct Deposit' == $selected_payment_method ? 'active' : 'hidden'; ?>">
     8                <?php $this->render_text_input( $post, 'Bank Name', 'ach_bank_name' ); ?>
    89                <?php $this->render_radio_input( $post, 'Account Type', 'ach_account_type' ); ?>
    910                <?php $this->render_text_input( $post, 'Routing Number', 'ach_routing_number' ); ?>
Note: See TracChangeset for help on using the changeset viewer.