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

          Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

          Magento 2 disable Secret Key on URL's from terminal The Next CEO of Stack OverflowMagento 2 Shortcut/GUI tool to perform commandline tasks for windowsIn menu add configuration linkMagento oAuth : Generating access token and access secretMagento 2 security key issue in Third-Party API redirect URIPublic actions in admin controllersHow to Disable Cache in Custom WidgetURL Key not changing in Magento 2Product URL Key gets deleted when importing custom options - Magento 2Problem with reindex terminalMagento 2 - bin/magento Commands not working in Cpanel Terminal

          Aasi (pallopeli) Navigointivalikko