KB Category: Theme

  • How to Construct Sample Custom Theme in Magento 2

    In this guideline the following methods show you how to construct sample custom theme in Magento 2 Build functional folders and file Theme setting verify your Magento 2 theme Here, I will show you step by step tutorial with how to construct sample custom theme in magento 2 Build functional folders and file To build…

  • How to build new theme in Magento 2 (Part 1)

    Here the following steps show you to build new theme in Magento: Step 1: Build a theme directory Step 2: Assert your theme Step 3: Insert registration.php Step 4: Assemble images Hi friends, everyone know, Theme is one of the major part of Magento 2. Depend on your business you need the theme which is…

  • How to eliminate block in layout in Magento 2

    In this post the following  methods are used to eliminate block in layout in Magento2. In current version of Magento 2, the eliminate method is: <referenceBlock name=”block_name” remove=”true”/> Examples: remove newletters in block on page and footer link block on page <?xml version=”1.0″?> <page layout=”1column” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd”> <body> <referenceBlock name=”form.subscribe” remove=”true” />  <referenceBlock name=”footer_links” remove=”true”…

  • How to build a new theme in Magento 2(part 2)

    In the earlier posts, I have introduced you how to create New Theme in Magento 2 and Magento 2 Theme-built Sample Custom Theme in Magento 2. Here I will continue to discuss you the part 2 of this session. your module will have the following files app/design/frontend/Webnexs/ ├── SimpleTheme/ │   ├── etc/ │   │   ├──…