includes/class-wpinv-bp-core.php 1 location
|
@@ 136-138 (lines=3) @@
|
| 133 |
|
<table class="table table-bordered table-hover table-responsive wpi-user-invoices" style="margin:0"> |
| 134 |
|
<thead> |
| 135 |
|
<tr> |
| 136 |
|
<?php foreach ( wpinv_get_user_invoices_columns() as $column_id => $column_name ) : ?> |
| 137 |
|
<th class="<?php echo esc_attr( $column_id ); ?> <?php echo (!empty($column_name['class']) ? $column_name['class'] : '');?>"><span class="nobr"><?php echo esc_html( $column_name['title'] ); ?></span></th> |
| 138 |
|
<?php endforeach; ?> |
| 139 |
|
</tr> |
| 140 |
|
</thead> |
| 141 |
|
<tbody> |
templates/wpinv-invoice-history.php 1 location
|
@@ 25-27 (lines=3) @@
|
| 22 |
|
<table class="table table-bordered table-hover table-responsive wpi-user-invoices"> |
| 23 |
|
<thead> |
| 24 |
|
<tr> |
| 25 |
|
<?php foreach ( wpinv_get_user_invoices_columns() as $column_id => $column_name ) : ?> |
| 26 |
|
<th class="<?php echo esc_attr( $column_id ); ?> <?php echo (!empty($column_name['class']) ? $column_name['class'] : '');?>"><span class="nobr"><?php echo esc_html( $column_name['title'] ); ?></span></th> |
| 27 |
|
<?php endforeach; ?> |
| 28 |
|
</tr> |
| 29 |
|
</thead> |
| 30 |
|
|