Skip to content

Commit

Permalink
fix(user-profile): add bank routing number to amdin user profile (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
saimonh3 authored and sabbir1991 committed Jun 20, 2018
1 parent 8bc6b04 commit da736cc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions classes/admin-user-profile.php
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,12 @@ function add_meta_fields( $user ) {
<input type="text" disabled class="regular-text" value="<?php echo isset( $store_settings['payment']['bank']['bank_addr'] ) ? esc_attr( $store_settings['payment']['bank']['bank_addr'] ) : ''; ?>">
</td>
</tr>
<tr>
<th><?php esc_html_e( 'Routing Number', 'dokan-lite' ); ?></th>
<td>
<input type="text" disabled class="regular-text" value="<?php echo isset( $store_settings['payment']['bank']['routing_number'] ) ? esc_attr( $store_settings['payment']['bank']['routing_number'] ) : ''; ?>">
</td>
</tr>
<tr>
<th><?php esc_html_e( 'Bank IBAN ', 'dokan-lite' ); ?></th>
<td>
Expand Down

0 comments on commit da736cc

Please sign in to comment.