wp-user-avatar
/
src
/
Admin
/
SettingsPages
/
Membership
/
views
/
orders
/
order-notes-sidebar.php
add-edit-order.php
2 years ago
digital-products-metabox.php
3 years ago
download-logs-sidebar.php
3 years ago
eu-vat-sidebar.php
3 years ago
order-data-metabox.php
4 months ago
order-item-metabox.php
3 years ago
order-notes-sidebar.php
3 years ago
order-submit-sidebar.php
3 years ago
order-subscription-sidebar.php
3 years ago
order-notes-sidebar.php
16 lines
| 1 | <?php /** @var array $order_notes */ ?> |
| 2 | <div class="ppress-order-notes-wrap"> |
| 3 | <ul class="ppress-notes"> |
| 4 | <?php foreach ($order_notes as $order_note) : $explode = explode('|', $order_note['meta_value']); ?> |
| 5 | <li class="ppress-note ppress-note-system "> |
| 6 | <div class="ppress-note-content"> |
| 7 | <p><?= $explode[1] ?></p> |
| 8 | </div> |
| 9 | <p class="ppress-note-meta"> |
| 10 | <abbr class="ppress-note-date"><?= $explode[0] ?></abbr> |
| 11 | <a data-note-id="<?= $order_note['meta_id'] ?>" href="#" class="ppress-delete-note" role="button"><?php esc_html_e('Delete', 'wp-user-avatar') ?></a> |
| 12 | </p> |
| 13 | </li> |
| 14 | <?php endforeach; ?> |
| 15 | </ul> |
| 16 | </div> |