123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- ?>
- <?php if ($block->getQuote()->hasVirtualItems()): ?>
- <div class="block block-other">
- <div class="block-title">
- <strong><?= /* @escapeNotVerified */ __('Other items in your order') ?></strong>
- <a href="<?= /* @escapeNotVerified */ $block->getVirtualProductEditUrl() ?>" class="action edit"><span><?= /* @escapeNotVerified */ __('Edit Items') ?></span></a>
- </div>
- <div class="block-content">
- <p><?= /* @escapeNotVerified */ __('Shipping is not applicable.') ?></p>
- <div class="table-wrapper">
- <table class="items data table" id="unavailable-shipping-table">
- <caption class="table-caption"><?= /* @escapeNotVerified */ __('Other items in your order') ?></caption>
- <thead>
- <tr>
- <th class="col item" scope="col"><?= /* @escapeNotVerified */ __('Product Name') ?></th>
- <th class="col qty" scope="col"><?= /* @escapeNotVerified */ __('Qty') ?></th>
- </tr>
- </thead>
- <tbody>
- <?php foreach ($block->getVirtualQuoteItems() as $_item): ?>
- <tr>
- <td class="col item" data-th="<?= $block->escapeHtml(__('Product Name')) ?>"><?= $block->getItemHtml($_item) ?></td>
- <td class="col qty" data-th="<?= $block->escapeHtml(__('Qty')) ?>"><?= /* @escapeNotVerified */ $_item->getQty() ?></td>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- <?php endif; ?>
|