我创建了一个自定义模块,其中显示了一些自定义产品列表和横幅数据。 我创建了一个系统设置来设置主页中的这些内容或使用默认设置。 现在我想要的是,如果管理员选择使用自定义模块主页,则现有内容将被取消设置或删除,并且将显示新内容。下面是我的cms_index_index代码。在cms页面内容区域中插入该块的内容,但出现了问题,但是在显示这些内容之前如何删除现有内容
<?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">
<body>
<referenceContainer name="content">
<block class="Hello\Pageconfig\Block\Pageconfig" ifconfig="pageconfig/settings/use" name="hello.configured.homepage"/>
</referenceContainer>
</body>
</page>