문제

제품보기 페이지를 확장하려고하지만 무시할 수 없습니다.

catalog_product_view.xml

<?xml version="1.0"?>
<page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <update handle="catalog_product_opengraph" />
    <update handle="page_calendar"/>
    <body>
        <referenceBlock name="product.info">
            <block class="Learning\Product\Block\Share" name="sharing_tool" template="Learning_Product::share.phtml"></block>
        </referenceBlock>
    </body>
</page>
.

share.phtml

<h1> Hi I'm sharing tool!!!!!</h1>
.

share.php

<?php

namespace Learning\Product\Block;

use Magento\Framework\View\Element\Template;

class Share extends Template{

    protected function _construct()
    {
        parent::_construct();
        $this->setTemplate('Learning_Product::share.phtml');
    }
}
.

모든 제안?

도움이 되었습니까?

해결책

catalog_product_view.xml

<?xml version="1.0"?>
<page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
        <referenceContainer name="product.info.main">
            <block class="Learning\Product\Block\Share" name="sharing_tool" template="Learning_Product::share.phtml"></block>
        </referenceContainer>
    </body>
</page>
.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top