Magento2 – How to Remove Sitemap Link in Footer

footermagento2magento2.4sitemaps

To remove sitemap link in the footer, I tried to add this on

Magento_Theme/layout/default.xml

<referenceBlock name="sitemap-link" remove="true"/>

or

<referenceBlock name="sitemap-link-footer" remove="true"/>

but still sitemap link is showing on footer

Best Answer

In the magento2 default theme there is no sitemap link in the footer, so check in your custom theme, In general, most of the theme provides the footer links from the cms blocks, so read the theme documentation that will help.

Related Topic