index.php
38 lines
| 1 | <style> |
| 2 | .wp-list-table .column-image { |
| 3 | width: 40px; |
| 4 | } |
| 5 | |
| 6 | .sc-product-name { |
| 7 | display: flex; |
| 8 | gap: 1em; |
| 9 | } |
| 10 | |
| 11 | .sc-product-image-preview { |
| 12 | width: 40px; |
| 13 | height: 40px; |
| 14 | object-fit: cover; |
| 15 | background: #f3f3f3; |
| 16 | display: flex; |
| 17 | align-items: center; |
| 18 | justify-content: center; |
| 19 | border-radius: var(--sc-border-radius-small); |
| 20 | } |
| 21 | |
| 22 | </style> |
| 23 | |
| 24 | <div class="wrap"> |
| 25 | <?php |
| 26 | \SureCart::render( |
| 27 | 'layouts/partials/admin-index-header', |
| 28 | [ |
| 29 | 'title' => __( 'Products', 'surecart' ), |
| 30 | 'new_link' => \SureCart::getUrl()->edit( 'product' ), |
| 31 | ] |
| 32 | ); |
| 33 | ?> |
| 34 | |
| 35 | <?php $table->search_form( __( 'Search Products', 'surecart' ), 'sc-search-products' ); ?> |
| 36 | <?php $table->display(); ?> |
| 37 | </div> |
| 38 |