You can uninstall / remove by running the following command
sudo apt remove teams
You can uninstall / remove by running the following command
sudo apt remove teams
You can remove newsletter block from footer by adding the below line to layout xml
<?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceBlock name="form.subscribe" remove="true" /> </body> </page>
You can remove Footer Links by adding the below line to layout xml.
<?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceBlock name="footer_links" remove="true"/> <referenceBlock name="cms_footer_links_container" remove="true" /> </body> </page>
You can remove Copyright by adding the below line to layout xml.
<?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceContainer name="copyright" remove="true"/> </body> </page>
You can remove Compare Products From Header by adding the below line to layout xml
<?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceContainer name="header.container"> <referenceBlock name="catalog.compare.link" remove="true"/> </referenceContainer> </body> </page>
You can remove footer by adding the below line to layout xml
<?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceContainer name="footer" remove="true" /> </body> </page>
You can remove logo from header by adding the below line to layout xml
<?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceContainer name="header.container"> <referenceBlock name="logo" remove="true"/> </referenceContainer> </body> </page>