Skip to main content
 首页 » 编程设计

magento-2.0之如何在magento 2中使用xml删除版权 block 表单页面

2024年02月25日26webabcd

我想在 Magneto2 中使用 XML 删除表单页脚。

我正在尝试使用以下 XML:

<hello_index_index> 
  <reference name="root"> 
   <remove name="block.name" /> 
  </reference> 
</hello_index_index> 

这不起作用。

请您参考如下方法:

在以下位置创建 XML 文件view/frontend/hello_index_index.xml,如下所示:

<?xml version="1.0"?> 
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="empty" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">  
   <!--this is use for remove copyright---> 
   <referenceBlock name="copyright" remove="true"/> 
</page>