Answers:
“关于我们”链接和“客户服务”链接:带有标识符的静态块为“ footer_links_block ”
要删除其他链接,请使用xml文件(default.xml)并将此代码添加到<body>标记中:
<referenceBlock name="name_of_link_block" remove="true"/>
链接块名称:
隐私和Cookie政策:privacy-policy-link
搜索字词:search-term-popular-link
联系我们:contact-us-link
高级搜索:catalog-search-advanced-link
订单和退货:sales-guest-form-link
要将新链接添加到页脚链接,请使用以下代码:
<referenceBlock name="footer_links">
<block class="Magento\Framework\View\Element\Html\Link\Current" name="your-link-name">
<arguments>
<argument name="label" xsi:type="string">Title</argument>
<argument name="path" xsi:type="string">path-of-your-page</argument>
</arguments>
</block>
</referenceBlock>
如果要删除默认情况下页脚中的所有链接,请删除参考块。
只需<Vendor>\<theme>\Magento_Theme\layout\default.xml
在<body>
容器下添加以下链接
<referenceBlock name="footer_links" remove="true"/>
并在同一布局文件中添加静态块,以便您可以管理来自magento后端的CMS静态块中的页脚菜单
<referenceContainer name="footer">
<block class="Magento\Cms\Block\Block" name="footer_menu">
<arguments>
<argument name="block_id" xsi:type="string">footer_menu</argument>
</arguments>
</block>
</referenceContainer>
现在您可以创建一个静态块,其标识符为 footer_menu
您需要添加
<referenceBlock name =“ footer_links” remove =“ true” />
到default.xml文件
请参见此处以获取更多信息http://blog.i13websolution.com/how-to-remove-footer-links-magento-2/
从两个位置添加页脚链接
1.在cms块中,您可以编辑footer_links_block,该内容将反映在页脚中
。2.在所有核心模块搜索xml文件的referenceBlock =“ footer_links”中,凡添加链接的内容均显示在页脚中