index.php
21 lines
| 1 | <style> |
| 2 | .row-actions .approve { |
| 3 | display: inline !important; |
| 4 | } |
| 5 | </style> |
| 6 | |
| 7 | <div class="wrap"> |
| 8 | <?php |
| 9 | \SureCart::render( |
| 10 | 'layouts/partials/admin-index-header', |
| 11 | [ |
| 12 | 'title' => __( 'Affiliate Payouts', 'surecart' ), |
| 13 | 'after_title' => \SureCart::view( 'admin/affiliation-payouts/new-payout-button' )->toString(), |
| 14 | ] |
| 15 | ); |
| 16 | ?> |
| 17 | |
| 18 | <?php $table->views(); ?> |
| 19 | <?php $table->display(); ?> |
| 20 | </div> |
| 21 |