How to create new theme in magento 2 without parent theme delcartion?Cleaning up a parent theme and creating a child theme.How to add new theme name to grunt CLI command to run grunt tool in Magento 2?Which Magento Basic Theme Should I make Parent for Designing Responsive theme from scratchMagento 2 theme fallback without parentTheme developement in magento 2.1 and fall back is not workingBest way to create new Magento 2 theme based on Luma, which parent theme?Magento 2 Override image problem (static image of parent theme)Magento 2 Luma Theme inherence error 2.2.1 CEChanges in Parent Luma theme is not reflected in Child Luma theme in Magento 2.3.0?Parent theme necessary?

How to balance a monster modification (zombie)?

Do native speakers use "ultima" and "proxima" frequently in spoken English?

Would this string work as string?

Why is indicated airspeed rather than ground speed used during the takeoff roll?

What is the tangent at a sharp point on a curve?

Writing in a Christian voice

Isn't the word "experience" wrongly used in this context?

How to read string as hex number in bash?

Does convergence of polynomials imply that of its coefficients?

Print a physical multiplication table

is this saw blade faulty?

Friend wants my recommendation but I don't want to give it to him

Do I need to convey a moral for each of my blog post?

Why didn’t Eve recognize the little cockroach as a living organism?

Have any astronauts/cosmonauts died in space?

How do researchers send unsolicited emails asking for feedback on their works?

What (if any) is the reason to buy in small local stores?

Print last inputted byte

Knife as defense against stray dogs

Asserting that Atheism and Theism are both faith based positions

How are passwords stolen from companies if they only store hashes?

Why doesn't the fusion process of the sun speed up?

Turning a hard to access nut?

Single word to change groups



How to create new theme in magento 2 without parent theme delcartion?


Cleaning up a parent theme and creating a child theme.How to add new theme name to grunt CLI command to run grunt tool in Magento 2?Which Magento Basic Theme Should I make Parent for Designing Responsive theme from scratchMagento 2 theme fallback without parentTheme developement in magento 2.1 and fall back is not workingBest way to create new Magento 2 theme based on Luma, which parent theme?Magento 2 Override image problem (static image of parent theme)Magento 2 Luma Theme inherence error 2.2.1 CEChanges in Parent Luma theme is not reflected in Child Luma theme in Magento 2.3.0?Parent theme necessary?













3















What if i don't declare parent theme in theme.xml while creating new theme in magento 2? will the new theme work properly?










share|improve this question




























    3















    What if i don't declare parent theme in theme.xml while creating new theme in magento 2? will the new theme work properly?










    share|improve this question


























      3












      3








      3








      What if i don't declare parent theme in theme.xml while creating new theme in magento 2? will the new theme work properly?










      share|improve this question
















      What if i don't declare parent theme in theme.xml while creating new theme in magento 2? will the new theme work properly?







      magento2 magento2.2 theme parent-child-theme






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 14 mins ago









      Shoaib Munir

      2,1101828




      2,1101828










      asked Feb 13 at 12:12









      MukeshMukesh

      554




      554




















          2 Answers
          2






          active

          oldest

          votes


















          1














          Parent theme is necessary in Magento, if you don't want any parent theme, you can use blank theme as your parent theme:



          <parent>Magento/blank</parent>


          And this wont be an issue, your theme will work properly if you do this.



          See dev docs for details






          share|improve this answer

























          • that means without giving parent node, new theme wont work? so its mandatory to add the parent node?

            – Mukesh
            Feb 13 at 12:20











          • Yes it is mandatory. you can see dev docs of magento for more details: edited my answer

            – Shoaib Munir
            Feb 13 at 12:46


















          5














          We can create a new theme without depending any parent theme like Magento blank theme vendor/magento/theme-frontend-blank/theme.xml, the difficulty is you need to write all the look and feel changes from the scratch.



          My suggestions is use blank theme as a parent theme, if you totally want to change any layout or build the styles from the scratch for the specific layout, use the parent layout override concept.



          I hope it helps.






          share|improve this answer

























          • yup true....we do not need to write code for all look and feel, that's why we use parent theme...

            – Mukesh
            Feb 13 at 12:30











          • check my updated answer.

            – Bilal Usean
            Feb 13 at 12:33










          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "479"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f261611%2fhow-to-create-new-theme-in-magento-2-without-parent-theme-delcartion%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          Parent theme is necessary in Magento, if you don't want any parent theme, you can use blank theme as your parent theme:



          <parent>Magento/blank</parent>


          And this wont be an issue, your theme will work properly if you do this.



          See dev docs for details






          share|improve this answer

























          • that means without giving parent node, new theme wont work? so its mandatory to add the parent node?

            – Mukesh
            Feb 13 at 12:20











          • Yes it is mandatory. you can see dev docs of magento for more details: edited my answer

            – Shoaib Munir
            Feb 13 at 12:46















          1














          Parent theme is necessary in Magento, if you don't want any parent theme, you can use blank theme as your parent theme:



          <parent>Magento/blank</parent>


          And this wont be an issue, your theme will work properly if you do this.



          See dev docs for details






          share|improve this answer

























          • that means without giving parent node, new theme wont work? so its mandatory to add the parent node?

            – Mukesh
            Feb 13 at 12:20











          • Yes it is mandatory. you can see dev docs of magento for more details: edited my answer

            – Shoaib Munir
            Feb 13 at 12:46













          1












          1








          1







          Parent theme is necessary in Magento, if you don't want any parent theme, you can use blank theme as your parent theme:



          <parent>Magento/blank</parent>


          And this wont be an issue, your theme will work properly if you do this.



          See dev docs for details






          share|improve this answer















          Parent theme is necessary in Magento, if you don't want any parent theme, you can use blank theme as your parent theme:



          <parent>Magento/blank</parent>


          And this wont be an issue, your theme will work properly if you do this.



          See dev docs for details







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Feb 13 at 12:47

























          answered Feb 13 at 12:14









          Shoaib MunirShoaib Munir

          2,1101828




          2,1101828












          • that means without giving parent node, new theme wont work? so its mandatory to add the parent node?

            – Mukesh
            Feb 13 at 12:20











          • Yes it is mandatory. you can see dev docs of magento for more details: edited my answer

            – Shoaib Munir
            Feb 13 at 12:46

















          • that means without giving parent node, new theme wont work? so its mandatory to add the parent node?

            – Mukesh
            Feb 13 at 12:20











          • Yes it is mandatory. you can see dev docs of magento for more details: edited my answer

            – Shoaib Munir
            Feb 13 at 12:46
















          that means without giving parent node, new theme wont work? so its mandatory to add the parent node?

          – Mukesh
          Feb 13 at 12:20





          that means without giving parent node, new theme wont work? so its mandatory to add the parent node?

          – Mukesh
          Feb 13 at 12:20













          Yes it is mandatory. you can see dev docs of magento for more details: edited my answer

          – Shoaib Munir
          Feb 13 at 12:46





          Yes it is mandatory. you can see dev docs of magento for more details: edited my answer

          – Shoaib Munir
          Feb 13 at 12:46













          5














          We can create a new theme without depending any parent theme like Magento blank theme vendor/magento/theme-frontend-blank/theme.xml, the difficulty is you need to write all the look and feel changes from the scratch.



          My suggestions is use blank theme as a parent theme, if you totally want to change any layout or build the styles from the scratch for the specific layout, use the parent layout override concept.



          I hope it helps.






          share|improve this answer

























          • yup true....we do not need to write code for all look and feel, that's why we use parent theme...

            – Mukesh
            Feb 13 at 12:30











          • check my updated answer.

            – Bilal Usean
            Feb 13 at 12:33















          5














          We can create a new theme without depending any parent theme like Magento blank theme vendor/magento/theme-frontend-blank/theme.xml, the difficulty is you need to write all the look and feel changes from the scratch.



          My suggestions is use blank theme as a parent theme, if you totally want to change any layout or build the styles from the scratch for the specific layout, use the parent layout override concept.



          I hope it helps.






          share|improve this answer

























          • yup true....we do not need to write code for all look and feel, that's why we use parent theme...

            – Mukesh
            Feb 13 at 12:30











          • check my updated answer.

            – Bilal Usean
            Feb 13 at 12:33













          5












          5








          5







          We can create a new theme without depending any parent theme like Magento blank theme vendor/magento/theme-frontend-blank/theme.xml, the difficulty is you need to write all the look and feel changes from the scratch.



          My suggestions is use blank theme as a parent theme, if you totally want to change any layout or build the styles from the scratch for the specific layout, use the parent layout override concept.



          I hope it helps.






          share|improve this answer















          We can create a new theme without depending any parent theme like Magento blank theme vendor/magento/theme-frontend-blank/theme.xml, the difficulty is you need to write all the look and feel changes from the scratch.



          My suggestions is use blank theme as a parent theme, if you totally want to change any layout or build the styles from the scratch for the specific layout, use the parent layout override concept.



          I hope it helps.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Feb 13 at 12:31

























          answered Feb 13 at 12:25









          Bilal UseanBilal Usean

          5,04423690




          5,04423690












          • yup true....we do not need to write code for all look and feel, that's why we use parent theme...

            – Mukesh
            Feb 13 at 12:30











          • check my updated answer.

            – Bilal Usean
            Feb 13 at 12:33

















          • yup true....we do not need to write code for all look and feel, that's why we use parent theme...

            – Mukesh
            Feb 13 at 12:30











          • check my updated answer.

            – Bilal Usean
            Feb 13 at 12:33
















          yup true....we do not need to write code for all look and feel, that's why we use parent theme...

          – Mukesh
          Feb 13 at 12:30





          yup true....we do not need to write code for all look and feel, that's why we use parent theme...

          – Mukesh
          Feb 13 at 12:30













          check my updated answer.

          – Bilal Usean
          Feb 13 at 12:33





          check my updated answer.

          – Bilal Usean
          Feb 13 at 12:33

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f261611%2fhow-to-create-new-theme-in-magento-2-without-parent-theme-delcartion%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Disable / Remove link to Product Items in Cart Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How can I limit products that can be bought / added to cart?Remove item from cartHide “Add to Cart” button if specific products are already in cart“Prettifying” the custom options in cart pageCreate link in cart sidebar to view all added items After limit reachedLink products together in checkout/cartHow to Get product from cart and add it againHide action-edit on cart page if simple productRemoving Cart items - ObserverRemove wishlist items when added to cart

          Helsingin valtaus Sisällysluettelo Taustaa | Yleistä sotatoimista | Osapuolet | Taistelut Helsingin ympäristössä | Punaisten antautumissuunnitelma | Taistelujen kulku Helsingissä | Valtauksen jälkeen | Tappiot | Muistaminen | Kirjallisuutta | Lähteet | Aiheesta muualla | NavigointivalikkoTeoksen verkkoversioTeoksen verkkoversioGoogle BooksSisällissota Helsingissä päättyi tasan 95 vuotta sittenSaksalaisten ylivoima jyräsi punaisen HelsinginSuomalaiset kuvaavat sotien jälkiä kaupungeissa – katso kuvat ja tarinat tutuilta kulmiltaHelsingin valtaus 90 vuotta sittenSaksalaiset valtasivat HelsinginHyökkäys HelsinkiinHelsingin valtaus 12.–13.4. 1918Saksalaiset käyttivät ihmiskilpiä Helsingin valtauksessa 1918Teoksen verkkoversioTeoksen verkkoversioSaksalaiset hyökkäävät Etelä-SuomeenTaistelut LeppävaarassaSotilaat ja taistelutLeppävaara 1918 huhtikuussa. KapinatarinaHelsingin taistelut 1918Saksalaisten voitonparaati HelsingissäHelsingin valtausta juhlittiinSaksalaisten Helsinki vuonna 1918Helsingin taistelussa kaatuneet valkokaartilaisetHelsinkiin haudatut taisteluissa kaatuneet punaiset12.4.1918 Helsingin valtauksessa saksalaiset apujoukot vapauttavat kaupunginVapaussodan muistomerkkejä Helsingissä ja pääkaupunkiseudullaCrescendo / Vuoden 1918 Kansalaissodan uhrien muistomerkkim

          Adjektiivitarina Tarinan tekeminen | Esimerkki: ennen | Esimerkki: jälkeen | Navigointivalikko