Magento 2: Create Custom Tab in admin panel in magento 2 Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How to create a custom product tab in admin panel of Magento 2.1?Add Custom Attribute in Customer Account admin side and its value from another Module?Template for custom admin panel tabCan I Copy the whole admin panel to my custom panel or pageCreate Custom Tab into Magento 1.9 Admin PanelHow to position the custom tab in customer edit page in admin panel - Magento 2I want to create custom field in 'add new user' form of admin panel in magento 1.9Not showing order tab at customer details page in admin panelMagento 2 - how to create a new tab in admin user edit page?How a custom tab in edit form in admin magento2?

porting install scripts : can rpm replace apt?

Withdrew £2800, but only £2000 shows as withdrawn on online banking; what are my obligations?

What causes the vertical darker bands in my photo?

Should I use a zero-interest credit card for a large one-time purchase?

First console to have temporary backward compatibility

List *all* the tuples!

Why are there no cargo aircraft with "flying wing" design?

Do I really need recursive chmod to restrict access to a folder?

How to find all the available tools in mac terminal?

Generate an RGB colour grid

How do pianists reach extremely loud dynamics?

Why did the IBM 650 use bi-quinary?

Understanding Ceva's Theorem

List of Python versions

How to answer "Have you ever been terminated?"

Why do we bend a book to keep it straight?

How to react to hostile behavior from a senior developer?

What is Arya's weapon design?

What are the pros and cons of Aerospike nosecones?

Can a non-EU citizen with residency visa traveling with me come with me through the EU passport line, when entering Schengen area?

What is the meaning of the new sigil in Game of Thrones Season 8 intro?

String `!23` is replaced with `docker` in command line

Why are Kinder Surprise Eggs illegal in the USA?

Fundamental Solution of the Pell Equation



Magento 2: Create Custom Tab in admin panel in magento 2



Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?How to create a custom product tab in admin panel of Magento 2.1?Add Custom Attribute in Customer Account admin side and its value from another Module?Template for custom admin panel tabCan I Copy the whole admin panel to my custom panel or pageCreate Custom Tab into Magento 1.9 Admin PanelHow to position the custom tab in customer edit page in admin panel - Magento 2I want to create custom field in 'add new user' form of admin panel in magento 1.9Not showing order tab at customer details page in admin panelMagento 2 - how to create a new tab in admin user edit page?How a custom tab in edit form in admin magento2?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















Can anybody help me to build this tab in admin panel by custom module.



enter image description here



i want to achieve something like above picture.










share|improve this question

















  • 1





    please follow the link inchoo.net/magento-2/admin-menu-item-magento-2

    – Nagaraju Kasa
    Aug 14 '17 at 12:28

















1















Can anybody help me to build this tab in admin panel by custom module.



enter image description here



i want to achieve something like above picture.










share|improve this question

















  • 1





    please follow the link inchoo.net/magento-2/admin-menu-item-magento-2

    – Nagaraju Kasa
    Aug 14 '17 at 12:28













1












1








1








Can anybody help me to build this tab in admin panel by custom module.



enter image description here



i want to achieve something like above picture.










share|improve this question














Can anybody help me to build this tab in admin panel by custom module.



enter image description here



i want to achieve something like above picture.







magento-2.1 admin-panel multi-vendor






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Aug 14 '17 at 12:08









Jay KapoorJay Kapoor

176321




176321







  • 1





    please follow the link inchoo.net/magento-2/admin-menu-item-magento-2

    – Nagaraju Kasa
    Aug 14 '17 at 12:28












  • 1





    please follow the link inchoo.net/magento-2/admin-menu-item-magento-2

    – Nagaraju Kasa
    Aug 14 '17 at 12:28







1




1





please follow the link inchoo.net/magento-2/admin-menu-item-magento-2

– Nagaraju Kasa
Aug 14 '17 at 12:28





please follow the link inchoo.net/magento-2/admin-menu-item-magento-2

– Nagaraju Kasa
Aug 14 '17 at 12:28










3 Answers
3






active

oldest

votes


















0














You will need to create an custom module with etc/adminhtml/menu.xml.



For example



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
<menu>
<add id="Vendor_Module::name"
title="Title"
module="Vendor_Module"
sortOrder="9999"
resource="Vendor_Module::name"
action="actionpath"
/>
</menu>
</config>


I suggest you look here for more info
http://www.mage-world.com/blog/adding-new-menu-item-in-magento-2-custom-module.html






share|improve this answer























  • i followed the link to u provided, and it works, but when i click on menu item it redirects me to 404 not found in admin panel

    – Jay Kapoor
    Aug 16 '17 at 7:37











  • why is that? should i create a controller for this and how to create admin controller?

    – Jay Kapoor
    Aug 16 '17 at 7:38











  • Yes, but thats for a different question @JayKapoor

    – Web Weave
    Aug 17 '17 at 13:50











  • please suggest a way how to solve this and get data from the database in custom tab

    – Jay Kapoor
    Aug 18 '17 at 6:06











  • As I said, this is to broad for this question, you should make another @JayKapoor

    – Web Weave
    Aug 18 '17 at 7:41


















1














You can refer below link to create custom tab in Magento2 -



https://github.com/jainmegha5395/admin-menu






share|improve this answer








New contributor




Megha Jain is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



























    0














    This module creates a Tab Menu with the logo in Magento2 admin: https://github.com/gr33nart/m2_greenart_newtab



    Printscreen: https://goo.gl/YPkvn4



    Below are some explanations, but in the above Github link I created a module that does this with the custom logo.




    Vendor/Module/etc/acl.xml



    <?xml version="1.0"?>
    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
    <acl>
    <resources>
    <resource id="Magento_Backend::admin">
    <resource id="Vendor/Module::Module" title="TabMenu" sortOrder="0" />
    </resource>
    </resources>
    </acl>
    </config>





    Vendor/Module/etc/adminhtml/menu.xml

    <?xml version="1.0"?>
    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
    <menu>
    <add id="Vendor_Module::Module" title="Level 1" module="Vendor_Module" sortOrder="0" resource="Vendor_Module::Module"/>
    <add id="Vendor_Module::Level_02" title="Level 2" translate="title" module="Magento_Catalog" sortOrder="10" parent="Vendor_Module::Module" action="module/index/index/" resource="Magento_Catalog::products"/>
    <add id="Vendor_Module::catalog_products" title="Catalog" translate="title" module="Magento_Catalog" sortOrder="10" parent="Vendor_Module::Module" action="catalog/product/" resource="Magento_Catalog::products"/>
    </menu>
    </config>





    share|improve this answer

























      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%2f189072%2fmagento-2-create-custom-tab-in-admin-panel-in-magento-2%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      You will need to create an custom module with etc/adminhtml/menu.xml.



      For example



      <?xml version="1.0"?>
      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
      <menu>
      <add id="Vendor_Module::name"
      title="Title"
      module="Vendor_Module"
      sortOrder="9999"
      resource="Vendor_Module::name"
      action="actionpath"
      />
      </menu>
      </config>


      I suggest you look here for more info
      http://www.mage-world.com/blog/adding-new-menu-item-in-magento-2-custom-module.html






      share|improve this answer























      • i followed the link to u provided, and it works, but when i click on menu item it redirects me to 404 not found in admin panel

        – Jay Kapoor
        Aug 16 '17 at 7:37











      • why is that? should i create a controller for this and how to create admin controller?

        – Jay Kapoor
        Aug 16 '17 at 7:38











      • Yes, but thats for a different question @JayKapoor

        – Web Weave
        Aug 17 '17 at 13:50











      • please suggest a way how to solve this and get data from the database in custom tab

        – Jay Kapoor
        Aug 18 '17 at 6:06











      • As I said, this is to broad for this question, you should make another @JayKapoor

        – Web Weave
        Aug 18 '17 at 7:41















      0














      You will need to create an custom module with etc/adminhtml/menu.xml.



      For example



      <?xml version="1.0"?>
      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
      <menu>
      <add id="Vendor_Module::name"
      title="Title"
      module="Vendor_Module"
      sortOrder="9999"
      resource="Vendor_Module::name"
      action="actionpath"
      />
      </menu>
      </config>


      I suggest you look here for more info
      http://www.mage-world.com/blog/adding-new-menu-item-in-magento-2-custom-module.html






      share|improve this answer























      • i followed the link to u provided, and it works, but when i click on menu item it redirects me to 404 not found in admin panel

        – Jay Kapoor
        Aug 16 '17 at 7:37











      • why is that? should i create a controller for this and how to create admin controller?

        – Jay Kapoor
        Aug 16 '17 at 7:38











      • Yes, but thats for a different question @JayKapoor

        – Web Weave
        Aug 17 '17 at 13:50











      • please suggest a way how to solve this and get data from the database in custom tab

        – Jay Kapoor
        Aug 18 '17 at 6:06











      • As I said, this is to broad for this question, you should make another @JayKapoor

        – Web Weave
        Aug 18 '17 at 7:41













      0












      0








      0







      You will need to create an custom module with etc/adminhtml/menu.xml.



      For example



      <?xml version="1.0"?>
      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
      <menu>
      <add id="Vendor_Module::name"
      title="Title"
      module="Vendor_Module"
      sortOrder="9999"
      resource="Vendor_Module::name"
      action="actionpath"
      />
      </menu>
      </config>


      I suggest you look here for more info
      http://www.mage-world.com/blog/adding-new-menu-item-in-magento-2-custom-module.html






      share|improve this answer













      You will need to create an custom module with etc/adminhtml/menu.xml.



      For example



      <?xml version="1.0"?>
      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
      <menu>
      <add id="Vendor_Module::name"
      title="Title"
      module="Vendor_Module"
      sortOrder="9999"
      resource="Vendor_Module::name"
      action="actionpath"
      />
      </menu>
      </config>


      I suggest you look here for more info
      http://www.mage-world.com/blog/adding-new-menu-item-in-magento-2-custom-module.html







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Aug 14 '17 at 14:21









      Web WeaveWeb Weave

      386




      386












      • i followed the link to u provided, and it works, but when i click on menu item it redirects me to 404 not found in admin panel

        – Jay Kapoor
        Aug 16 '17 at 7:37











      • why is that? should i create a controller for this and how to create admin controller?

        – Jay Kapoor
        Aug 16 '17 at 7:38











      • Yes, but thats for a different question @JayKapoor

        – Web Weave
        Aug 17 '17 at 13:50











      • please suggest a way how to solve this and get data from the database in custom tab

        – Jay Kapoor
        Aug 18 '17 at 6:06











      • As I said, this is to broad for this question, you should make another @JayKapoor

        – Web Weave
        Aug 18 '17 at 7:41

















      • i followed the link to u provided, and it works, but when i click on menu item it redirects me to 404 not found in admin panel

        – Jay Kapoor
        Aug 16 '17 at 7:37











      • why is that? should i create a controller for this and how to create admin controller?

        – Jay Kapoor
        Aug 16 '17 at 7:38











      • Yes, but thats for a different question @JayKapoor

        – Web Weave
        Aug 17 '17 at 13:50











      • please suggest a way how to solve this and get data from the database in custom tab

        – Jay Kapoor
        Aug 18 '17 at 6:06











      • As I said, this is to broad for this question, you should make another @JayKapoor

        – Web Weave
        Aug 18 '17 at 7:41
















      i followed the link to u provided, and it works, but when i click on menu item it redirects me to 404 not found in admin panel

      – Jay Kapoor
      Aug 16 '17 at 7:37





      i followed the link to u provided, and it works, but when i click on menu item it redirects me to 404 not found in admin panel

      – Jay Kapoor
      Aug 16 '17 at 7:37













      why is that? should i create a controller for this and how to create admin controller?

      – Jay Kapoor
      Aug 16 '17 at 7:38





      why is that? should i create a controller for this and how to create admin controller?

      – Jay Kapoor
      Aug 16 '17 at 7:38













      Yes, but thats for a different question @JayKapoor

      – Web Weave
      Aug 17 '17 at 13:50





      Yes, but thats for a different question @JayKapoor

      – Web Weave
      Aug 17 '17 at 13:50













      please suggest a way how to solve this and get data from the database in custom tab

      – Jay Kapoor
      Aug 18 '17 at 6:06





      please suggest a way how to solve this and get data from the database in custom tab

      – Jay Kapoor
      Aug 18 '17 at 6:06













      As I said, this is to broad for this question, you should make another @JayKapoor

      – Web Weave
      Aug 18 '17 at 7:41





      As I said, this is to broad for this question, you should make another @JayKapoor

      – Web Weave
      Aug 18 '17 at 7:41













      1














      You can refer below link to create custom tab in Magento2 -



      https://github.com/jainmegha5395/admin-menu






      share|improve this answer








      New contributor




      Megha Jain is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.
























        1














        You can refer below link to create custom tab in Magento2 -



        https://github.com/jainmegha5395/admin-menu






        share|improve this answer








        New contributor




        Megha Jain is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






















          1












          1








          1







          You can refer below link to create custom tab in Magento2 -



          https://github.com/jainmegha5395/admin-menu






          share|improve this answer








          New contributor




          Megha Jain is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.










          You can refer below link to create custom tab in Magento2 -



          https://github.com/jainmegha5395/admin-menu







          share|improve this answer








          New contributor




          Megha Jain is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|improve this answer



          share|improve this answer






          New contributor




          Megha Jain is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered 42 mins ago









          Megha JainMegha Jain

          111




          111




          New contributor




          Megha Jain is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Megha Jain is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Megha Jain is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





















              0














              This module creates a Tab Menu with the logo in Magento2 admin: https://github.com/gr33nart/m2_greenart_newtab



              Printscreen: https://goo.gl/YPkvn4



              Below are some explanations, but in the above Github link I created a module that does this with the custom logo.




              Vendor/Module/etc/acl.xml



              <?xml version="1.0"?>
              <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
              <acl>
              <resources>
              <resource id="Magento_Backend::admin">
              <resource id="Vendor/Module::Module" title="TabMenu" sortOrder="0" />
              </resource>
              </resources>
              </acl>
              </config>





              Vendor/Module/etc/adminhtml/menu.xml

              <?xml version="1.0"?>
              <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
              <menu>
              <add id="Vendor_Module::Module" title="Level 1" module="Vendor_Module" sortOrder="0" resource="Vendor_Module::Module"/>
              <add id="Vendor_Module::Level_02" title="Level 2" translate="title" module="Magento_Catalog" sortOrder="10" parent="Vendor_Module::Module" action="module/index/index/" resource="Magento_Catalog::products"/>
              <add id="Vendor_Module::catalog_products" title="Catalog" translate="title" module="Magento_Catalog" sortOrder="10" parent="Vendor_Module::Module" action="catalog/product/" resource="Magento_Catalog::products"/>
              </menu>
              </config>





              share|improve this answer





























                0














                This module creates a Tab Menu with the logo in Magento2 admin: https://github.com/gr33nart/m2_greenart_newtab



                Printscreen: https://goo.gl/YPkvn4



                Below are some explanations, but in the above Github link I created a module that does this with the custom logo.




                Vendor/Module/etc/acl.xml



                <?xml version="1.0"?>
                <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
                <acl>
                <resources>
                <resource id="Magento_Backend::admin">
                <resource id="Vendor/Module::Module" title="TabMenu" sortOrder="0" />
                </resource>
                </resources>
                </acl>
                </config>





                Vendor/Module/etc/adminhtml/menu.xml

                <?xml version="1.0"?>
                <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
                <menu>
                <add id="Vendor_Module::Module" title="Level 1" module="Vendor_Module" sortOrder="0" resource="Vendor_Module::Module"/>
                <add id="Vendor_Module::Level_02" title="Level 2" translate="title" module="Magento_Catalog" sortOrder="10" parent="Vendor_Module::Module" action="module/index/index/" resource="Magento_Catalog::products"/>
                <add id="Vendor_Module::catalog_products" title="Catalog" translate="title" module="Magento_Catalog" sortOrder="10" parent="Vendor_Module::Module" action="catalog/product/" resource="Magento_Catalog::products"/>
                </menu>
                </config>





                share|improve this answer



























                  0












                  0








                  0







                  This module creates a Tab Menu with the logo in Magento2 admin: https://github.com/gr33nart/m2_greenart_newtab



                  Printscreen: https://goo.gl/YPkvn4



                  Below are some explanations, but in the above Github link I created a module that does this with the custom logo.




                  Vendor/Module/etc/acl.xml



                  <?xml version="1.0"?>
                  <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
                  <acl>
                  <resources>
                  <resource id="Magento_Backend::admin">
                  <resource id="Vendor/Module::Module" title="TabMenu" sortOrder="0" />
                  </resource>
                  </resources>
                  </acl>
                  </config>





                  Vendor/Module/etc/adminhtml/menu.xml

                  <?xml version="1.0"?>
                  <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
                  <menu>
                  <add id="Vendor_Module::Module" title="Level 1" module="Vendor_Module" sortOrder="0" resource="Vendor_Module::Module"/>
                  <add id="Vendor_Module::Level_02" title="Level 2" translate="title" module="Magento_Catalog" sortOrder="10" parent="Vendor_Module::Module" action="module/index/index/" resource="Magento_Catalog::products"/>
                  <add id="Vendor_Module::catalog_products" title="Catalog" translate="title" module="Magento_Catalog" sortOrder="10" parent="Vendor_Module::Module" action="catalog/product/" resource="Magento_Catalog::products"/>
                  </menu>
                  </config>





                  share|improve this answer















                  This module creates a Tab Menu with the logo in Magento2 admin: https://github.com/gr33nart/m2_greenart_newtab



                  Printscreen: https://goo.gl/YPkvn4



                  Below are some explanations, but in the above Github link I created a module that does this with the custom logo.




                  Vendor/Module/etc/acl.xml



                  <?xml version="1.0"?>
                  <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
                  <acl>
                  <resources>
                  <resource id="Magento_Backend::admin">
                  <resource id="Vendor/Module::Module" title="TabMenu" sortOrder="0" />
                  </resource>
                  </resources>
                  </acl>
                  </config>





                  Vendor/Module/etc/adminhtml/menu.xml

                  <?xml version="1.0"?>
                  <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
                  <menu>
                  <add id="Vendor_Module::Module" title="Level 1" module="Vendor_Module" sortOrder="0" resource="Vendor_Module::Module"/>
                  <add id="Vendor_Module::Level_02" title="Level 2" translate="title" module="Magento_Catalog" sortOrder="10" parent="Vendor_Module::Module" action="module/index/index/" resource="Magento_Catalog::products"/>
                  <add id="Vendor_Module::catalog_products" title="Catalog" translate="title" module="Magento_Catalog" sortOrder="10" parent="Vendor_Module::Module" action="catalog/product/" resource="Magento_Catalog::products"/>
                  </menu>
                  </config>






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Aug 14 '17 at 14:30

























                  answered Aug 14 '17 at 14:21









                  St3phanSt3phan

                  2,0181237




                  2,0181237



























                      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%2f189072%2fmagento-2-create-custom-tab-in-admin-panel-in-magento-2%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

                      Magento 2 duplicate PHPSESSID cookie when using session_start() in custom php scriptMagento 2: User cant logged in into to account page, no error showing!Magento duplicate on subdomainGrabbing storeview from cookie (after using language selector)How do I run php custom script on magento2Magento 2: Include PHP script in headerSession lock after using Cm_RedisSessionscript php to update stockMagento set cookie popupMagento 2 session id cookie - where to find it?How to import Configurable product from csv with custom attributes using php scriptMagento 2 run custom PHP script

                      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

                      How to solve knockout JS error in Magento 2 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?(Magento2) knockout.js:3012 Uncaught ReferenceError: Unable to process bindingUnable to process binding Knockout.js magento 2Cannot read property `scopeLabel` of undefined on Product Detail PageCan't get Customer Data on frontend in Magento 2Magento2 Order Summary - unable to process bindingKO templates are not loading in Magento 2.1 applicationgetting knockout js error magento 2Product grid not load -— Unable to process binding Knockout.js magento 2Product form not loaded in magento2Uncaught ReferenceError: Unable to process binding “if: function()return (isShowLegend()) ” magento 2