templates/myaccount/downloads.php 1 location
|
@@ 37-39 (lines=3) @@
|
34 |
|
<table class="woocommerce-MyAccount-downloads shop_table shop_table_responsive"> |
35 |
|
<thead> |
36 |
|
<tr> |
37 |
|
<?php foreach ( wc_get_account_downloads_columns() as $column_id => $column_name ) : ?> |
38 |
|
<th class="<?php echo esc_attr( $column_id ); ?>"><span class="nobr"><?php echo esc_html( $column_name ); ?></span></th> |
39 |
|
<?php endforeach; ?> |
40 |
|
</tr> |
41 |
|
</thead> |
42 |
|
<?php foreach ( $downloads as $download ) : ?> |
templates/myaccount/orders.php 1 location
|
@@ 32-34 (lines=3) @@
|
29 |
|
<table class="woocommerce-MyAccount-orders shop_table shop_table_responsive my_account_orders account-orders-table"> |
30 |
|
<thead> |
31 |
|
<tr> |
32 |
|
<?php foreach ( wc_get_account_orders_columns() as $column_id => $column_name ) : ?> |
33 |
|
<th class="<?php echo esc_attr( $column_id ); ?>"><span class="nobr"><?php echo esc_html( $column_name ); ?></span></th> |
34 |
|
<?php endforeach; ?> |
35 |
|
</tr> |
36 |
|
</thead> |
37 |
|
|
templates/myaccount/payment-methods.php 1 location
|
@@ 36-38 (lines=3) @@
|
33 |
|
<table class="woocommerce-MyAccount-paymentMethods shop_table shop_table_responsive account-payment-methods-table"> |
34 |
|
<thead> |
35 |
|
<tr> |
36 |
|
<?php foreach ( wc_get_account_payment_methods_columns() as $column_id => $column_name ) : ?> |
37 |
|
<th class="woocommerce-PaymentMethod woocommerce-PaymentMethod--<?php echo esc_attr( $column_id ); ?> payment-method-<?php echo esc_attr( $column_id ); ?>"><span class="nobr"><?php echo esc_html( $column_name ); ?></span></th> |
38 |
|
<?php endforeach; ?> |
39 |
|
</tr> |
40 |
|
</thead> |
41 |
|
<?php foreach ( $saved_methods as $type => $methods ) : ?> |