Making WordPress.org


Ignore:
Timestamp:
02/26/2016 01:19:41 AM (10 years ago)
Author:
iandunn
Message:

WordCamp Budgets: Add address fields for check payments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/views/payment-request/metabox-payment.php

    r2600 r2635  
    1919    <table id="payment_method_check_fields" class="form-table payment_method_fields <?php echo 'Check' == $selected_payment_method ? 'active' : 'hidden'; ?>">
    2020        <?php $this->render_text_input( $post, 'Payable To', 'payable_to' ); ?>
     21        <?php $this->render_text_input(    $post, 'Street Address',    'check_street_address' ); ?>
     22        <?php $this->render_text_input(    $post, 'City',              'check_city'           ); ?>
     23        <?php $this->render_text_input(    $post, 'State / Province',  'check_state'          ); ?>
     24        <?php $this->render_text_input(    $post, 'ZIP / Postal Code', 'check_zip_code'       ); ?>
     25        <?php $this->render_country_input( $post, 'Country',           'check_country'        ); ?>
    2126    </table>
    2227
Note: See TracChangeset for help on using the changeset viewer.