Layout 在审阅后添加其他选项卡

Layout 在审阅后添加其他选项卡,layout,tabs,product,magento2,Layout,Tabs,Product,Magento2,我正试图在“评论”选项卡之后再添加一些其他选项卡,尽管我的选项卡一直显示为第一个选项卡 <?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"> <body>

我正试图在“评论”选项卡之后再添加一些其他选项卡,尽管我的选项卡一直显示为第一个选项卡

<?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">
    <body>
        <referenceBlock name="product.info.details">
          <block after="reviews.tab" class="Magento\Catalog\Block\Product\View" name="postage.tab" as="postage" template="product/view/postage.phtml" group="detailed_info" >
             <arguments>
                <argument translate="true" name="title" xsi:type="string">Postage</argument>
             </arguments>
          </block>
        </referenceBlock>
    </body>
</page>

邮费

如果您使用的是Magento 2.3.1,他们通过更改其类别对
product.info.details
块进行了轻微更改<代码>这意味着它需要一个排序顺序参数来控制选项卡的位置。
10
您需要为在
detailed\u info
组中创建的每个额外选项卡添加排序顺序