カスタムオプションでこの位置をオーバーライドして、別のphtmlファイルに表示するにはどうすればよいですか。
このコードを追加し、ファイルcheckout_cart_index.xml
をオーバーライドしないのみをform.phtml
オーバーライドしdefault.phtml
ます。
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<!-- <update handle="checkout_cart_item_renderers"/> -->
<body>
<referenceContainer name="content">
<referenceBlock name="checkout.cart.form">
<action method="setTemplate">
<argument name="template" xsi:type="string">Bespoke_Bespoke::cart/form.phtml</argument>
</action>
</referenceBlock>
<referenceBlock name="checkout.cart.item.renderers.override">
<action method="setTemplate">
<argument name="template" xsi:type="string">Bespoke_Bespoke::cart/item/default.phtml</argument>
</action>
</referenceBlock>
</referenceContainer>
</body>
checkout.cart.item.renderers
エイリアス「シンプル」の子がすでにあるというエラーが発生していますcheckout_cart_item_renderer.xml
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<!-- <update handle="checkout_item_price_renderers"/> -->
<body>
<referenceBlock name="checkout.cart.form">
<action method="setOverriddenTemplates">
<argument xsi:type="array">
<!-- list override templates -->
<item name="default" xsi:type="string">Bespoke_Bespoke::cart/item/default.phtml</item>
<item name="simple" xsi:type="string">Bespoke_Bespoke::cart/item/default.phtml</item>
<item name="virtual" xsi:type="string">Bespoke_Bespoke::cart/item/default.phtml</item>
</argument>
</action>
</referenceBlock>
</body>
</page>
使用したファイルを上書きするには etc/di.xml
<config xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<preference for="Magento\Checkout\Block\Cart\AbstractCart" type="AGS\Bespoke\Block\Checkout\Cart\AbstractCart"/><preference for="Magento\Catalog\Block\Product\View\Option" type="AGS\Bespoke\Block\Product\View\Option"/>
<preference for=" Magento\Checkout\Block\Cart" type="AGS\Bespoke\Block\Checkout\Cart"/>
<preference for="\Magento\Checkout\Block\Cart\Item\Renderer" type="AGS\Bespoke\Block\Checkout\Cart\Item\Renderer"/>
<virtualType name="AGS\Bespoke\Model\ResourceModel\Bespoke\Bespoke\Collection" type="Magento\Framework\View\Element\UiComponent\DataProvider\SearchResult">
<arguments><argument name="mainTable" xsi:type="string">ags_bespoke</argument><argument name="resourceModel" xsi:type="string">AGS\Bespoke\Model\ResourceModel\Bespoke</argument>
</arguments></virtualType><type name="Magento\Framework\View\Element\UiComponent\DataProvider\CollectionFactory">
<arguments><argument name="collections" xsi:type="array">
<item name="bespoke_record_bespoke_list_data_source" xsi:type="string">AGS\Bespoke\Model\ResourceModel\Bespoke\Bespoke\Collection</item>
製品詳細ページでブロックを削除します。他のページに追加
—
ビサックBスジャサン
何を達成しようとしていますか?私が間違っている場合は私を修正しますが、最初にカートに製品を追加できるようにするためのオプションが必要です。必要なオプションを備えた製品を最初にカートに追加し、後でオプションを選択することはできません。
—
ゲルバーカーズ