123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
- <update handle="multishipping_checkout"/>
- <update handle="checkout_cart_item_renderers"/>
- <body>
- <referenceBlock name="page.main.title">
- <action method="setPageTitle">
- <argument translate="true" name="title" xsi:type="string">Select Shipping Method</argument>
- </action>
- </referenceBlock>
- <referenceContainer name="content">
- <block class="Magento\Multishipping\Block\Checkout\Shipping" name="checkout_shipping" template="Magento_Multishipping::checkout/shipping.phtml" cacheable="false">
- <arguments>
- <argument name="renderer_template" xsi:type="string">Magento_Multishipping::checkout/item/default.phtml</argument>
- </arguments>
- <block class="Magento\Framework\View\Element\RendererList" name="checkout.cart.item.renderers" as="renderer.list"/>
- <block class="Magento\Multishipping\Block\Checkout\Billing\Items" name="checkout_billing_items" template="Magento_Multishipping::checkout/billing/items.phtml" cacheable="false">
- <arguments>
- <argument name="renderer_template" xsi:type="string">Magento_Multishipping::checkout/item/default.phtml</argument>
- <argument name="renderer_list_name" xsi:type="string">checkout.cart.item.renderers</argument>
- </arguments>
- </block>
- </block>
- </referenceContainer>
- <block class="Magento\Framework\View\Element\Template" name="additional.product.info" template="Magento_Theme::template.phtml"/>
- </body>
- </page>
|