Show custom module configuration in Admin Menu not in Store -> Setting -> Configuration Planned maintenance scheduled April 23, 2019 at 23:30UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Module Configuration From Admin Menu as a Seperate page without side menuMagento Enterprise Edition: Custom module not showing admin configurationCustom admin menu item not displayingMagento 2 : How I can change the default font Icon in menu admin for custom module?Custom admin module system configuration not working - 404 ErrorSystem, Reports Menu not show in magento 1.9Show custom module information in 1 Module Menu not in 2 Module menuMagento 2 custom module system configuration translationHow to add My custom module in existing menu (Backend)Subsection in admin menuMagento2 Admin Side Custom configuration page with a menu

Sliceness of knots

Most bit efficient text communication method?

Did any compiler fully use 80-bit floating point?

Central Vacuuming: Is it worth it, and how does it compare to normal vacuuming?

Can a Beast Master ranger change beast companions?

Did Mueller's report provide an evidentiary basis for the claim of Russian govt election interference via social media?

How to report t statistic from R

Why does it sometimes sound good to play a grace note as a lead in to a note in a melody?

Significance of Cersei's obsession with elephants?

What are the discoveries that have been possible with the rejection of positivism?

Does the Mueller report show a conspiracy between Russia and the Trump Campaign?

What does it mean that physics no longer uses mechanical models to describe phenomena?

Why can't I install Tomboy in Ubuntu Mate 19.04?

Why weren't discrete x86 CPUs ever used in game hardware?

What to do with repeated rejections for phd position

Google .dev domain strangely redirects to https

Why do early math courses focus on the cross sections of a cone and not on other 3D objects?

Antipodal Land Area Calculation

What order were files/directories output in dir?

How much damage would a cupful of neutron star matter do to the Earth?

Lagrange four-squares theorem --- deterministic complexity

How does Belgium enforce obligatory attendance in elections?

In musical terms, what properties are varied by the human voice to produce different words / syllables?

Amount of permutations on an NxNxN Rubik's Cube



Show custom module configuration in Admin Menu not in Store -> Setting -> Configuration



Planned maintenance scheduled April 23, 2019 at 23:30UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Module Configuration From Admin Menu as a Seperate page without side menuMagento Enterprise Edition: Custom module not showing admin configurationCustom admin menu item not displayingMagento 2 : How I can change the default font Icon in menu admin for custom module?Custom admin module system configuration not working - 404 ErrorSystem, Reports Menu not show in magento 1.9Show custom module information in 1 Module Menu not in 2 Module menuMagento 2 custom module system configuration translationHow to add My custom module in existing menu (Backend)Subsection in admin menuMagento2 Admin Side Custom configuration page with a menu



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








2















I am creating a custom module , now wanted to add module configuration options like enable/disable options . I found many post that shows how to create these options using system.xml but in that way it add the option in Store -> Setting -> Configuration



Till now i am able to crate configuration section In Store -> Setting -> Configuration as shown below.



configuration



Any one share any post or link in which i can learn how to create these options in module admin menu pages not in Configuration page.



I am trying to create same sections in my module page as we have in Magento 1.9.x
admin page



In /var/www/html/magento2/app/code/CompanyName/ReviewRating/etc/adminhtml/system.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
<system>
<tab id="reviewrating" translate="label" sortOrder="10000">
<label>Reviewrating</label>
</tab>
<section id="reviewrating" translate="label" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
<label>reviewrating</label>
<tab>reviewrating</tab>
<resource>CompanyName_ReviewRating::reviewrating</resource>
<group id="general" translate="label" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
<label>Item creation by schedule</label>
<field id="enabled" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
<label>Enabled</label>
<source_model>MagentoConfigModelConfigSourceYesno</source_model>
</field>
<field id="cron_expression" translate="label" type="text" sortOrder="20" showInDefault="1" showInWebsite="0" showInStore="0" canRestore="1">
<label>Add Item Cron Expression</label>
</field>
</group>
</section>
</system>
</config>


In /var/www/html/magento2/app/code/CompanyName/ReviewRating/etc/adminhtml/menu.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../Magento/Backend/etc/menu.xsd">
<menu>
<add id="CompanyName_ReviewRating::parent" title="ReviewRating"
module="CompanyName_ReviewRating" sortOrder="100"
resource="CompanyName_ReviewRating::parent"/>

<add id="CompanyName_ReviewRating::index" title="ReviewRating Index"
module="CompanyName_ReviewRating" sortOrder="10"
action="reviewrating/index" resource="CompanyName_ReviewRating::index"
parent="CompanyName_ReviewRating::parent"/>

<add id="CompanyName_ReviewRating::settings" title="Settings" module="CompanyName_ReviewRating" sortOrder="30" action="adminhtml/system_config/edit/section/reviewrating/" resource="CompanyName_ReviewRating::settings"/>
</menu>
</config>









share|improve this question
























  • where want to add your configuration key under which tab I send you the code to put in the system.xml

    – Mohamed El Mrabet
    Nov 22 '17 at 20:46











  • @MohamedElMrabet sir i updated my question , may be now its clear what i am trying to achieve. Thank You

    – inrsaurabh
    Nov 23 '17 at 5:28

















2















I am creating a custom module , now wanted to add module configuration options like enable/disable options . I found many post that shows how to create these options using system.xml but in that way it add the option in Store -> Setting -> Configuration



Till now i am able to crate configuration section In Store -> Setting -> Configuration as shown below.



configuration



Any one share any post or link in which i can learn how to create these options in module admin menu pages not in Configuration page.



I am trying to create same sections in my module page as we have in Magento 1.9.x
admin page



In /var/www/html/magento2/app/code/CompanyName/ReviewRating/etc/adminhtml/system.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
<system>
<tab id="reviewrating" translate="label" sortOrder="10000">
<label>Reviewrating</label>
</tab>
<section id="reviewrating" translate="label" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
<label>reviewrating</label>
<tab>reviewrating</tab>
<resource>CompanyName_ReviewRating::reviewrating</resource>
<group id="general" translate="label" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
<label>Item creation by schedule</label>
<field id="enabled" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
<label>Enabled</label>
<source_model>MagentoConfigModelConfigSourceYesno</source_model>
</field>
<field id="cron_expression" translate="label" type="text" sortOrder="20" showInDefault="1" showInWebsite="0" showInStore="0" canRestore="1">
<label>Add Item Cron Expression</label>
</field>
</group>
</section>
</system>
</config>


In /var/www/html/magento2/app/code/CompanyName/ReviewRating/etc/adminhtml/menu.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../Magento/Backend/etc/menu.xsd">
<menu>
<add id="CompanyName_ReviewRating::parent" title="ReviewRating"
module="CompanyName_ReviewRating" sortOrder="100"
resource="CompanyName_ReviewRating::parent"/>

<add id="CompanyName_ReviewRating::index" title="ReviewRating Index"
module="CompanyName_ReviewRating" sortOrder="10"
action="reviewrating/index" resource="CompanyName_ReviewRating::index"
parent="CompanyName_ReviewRating::parent"/>

<add id="CompanyName_ReviewRating::settings" title="Settings" module="CompanyName_ReviewRating" sortOrder="30" action="adminhtml/system_config/edit/section/reviewrating/" resource="CompanyName_ReviewRating::settings"/>
</menu>
</config>









share|improve this question
























  • where want to add your configuration key under which tab I send you the code to put in the system.xml

    – Mohamed El Mrabet
    Nov 22 '17 at 20:46











  • @MohamedElMrabet sir i updated my question , may be now its clear what i am trying to achieve. Thank You

    – inrsaurabh
    Nov 23 '17 at 5:28













2












2








2


1






I am creating a custom module , now wanted to add module configuration options like enable/disable options . I found many post that shows how to create these options using system.xml but in that way it add the option in Store -> Setting -> Configuration



Till now i am able to crate configuration section In Store -> Setting -> Configuration as shown below.



configuration



Any one share any post or link in which i can learn how to create these options in module admin menu pages not in Configuration page.



I am trying to create same sections in my module page as we have in Magento 1.9.x
admin page



In /var/www/html/magento2/app/code/CompanyName/ReviewRating/etc/adminhtml/system.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
<system>
<tab id="reviewrating" translate="label" sortOrder="10000">
<label>Reviewrating</label>
</tab>
<section id="reviewrating" translate="label" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
<label>reviewrating</label>
<tab>reviewrating</tab>
<resource>CompanyName_ReviewRating::reviewrating</resource>
<group id="general" translate="label" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
<label>Item creation by schedule</label>
<field id="enabled" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
<label>Enabled</label>
<source_model>MagentoConfigModelConfigSourceYesno</source_model>
</field>
<field id="cron_expression" translate="label" type="text" sortOrder="20" showInDefault="1" showInWebsite="0" showInStore="0" canRestore="1">
<label>Add Item Cron Expression</label>
</field>
</group>
</section>
</system>
</config>


In /var/www/html/magento2/app/code/CompanyName/ReviewRating/etc/adminhtml/menu.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../Magento/Backend/etc/menu.xsd">
<menu>
<add id="CompanyName_ReviewRating::parent" title="ReviewRating"
module="CompanyName_ReviewRating" sortOrder="100"
resource="CompanyName_ReviewRating::parent"/>

<add id="CompanyName_ReviewRating::index" title="ReviewRating Index"
module="CompanyName_ReviewRating" sortOrder="10"
action="reviewrating/index" resource="CompanyName_ReviewRating::index"
parent="CompanyName_ReviewRating::parent"/>

<add id="CompanyName_ReviewRating::settings" title="Settings" module="CompanyName_ReviewRating" sortOrder="30" action="adminhtml/system_config/edit/section/reviewrating/" resource="CompanyName_ReviewRating::settings"/>
</menu>
</config>









share|improve this question
















I am creating a custom module , now wanted to add module configuration options like enable/disable options . I found many post that shows how to create these options using system.xml but in that way it add the option in Store -> Setting -> Configuration



Till now i am able to crate configuration section In Store -> Setting -> Configuration as shown below.



configuration



Any one share any post or link in which i can learn how to create these options in module admin menu pages not in Configuration page.



I am trying to create same sections in my module page as we have in Magento 1.9.x
admin page



In /var/www/html/magento2/app/code/CompanyName/ReviewRating/etc/adminhtml/system.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
<system>
<tab id="reviewrating" translate="label" sortOrder="10000">
<label>Reviewrating</label>
</tab>
<section id="reviewrating" translate="label" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
<label>reviewrating</label>
<tab>reviewrating</tab>
<resource>CompanyName_ReviewRating::reviewrating</resource>
<group id="general" translate="label" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
<label>Item creation by schedule</label>
<field id="enabled" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
<label>Enabled</label>
<source_model>MagentoConfigModelConfigSourceYesno</source_model>
</field>
<field id="cron_expression" translate="label" type="text" sortOrder="20" showInDefault="1" showInWebsite="0" showInStore="0" canRestore="1">
<label>Add Item Cron Expression</label>
</field>
</group>
</section>
</system>
</config>


In /var/www/html/magento2/app/code/CompanyName/ReviewRating/etc/adminhtml/menu.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../Magento/Backend/etc/menu.xsd">
<menu>
<add id="CompanyName_ReviewRating::parent" title="ReviewRating"
module="CompanyName_ReviewRating" sortOrder="100"
resource="CompanyName_ReviewRating::parent"/>

<add id="CompanyName_ReviewRating::index" title="ReviewRating Index"
module="CompanyName_ReviewRating" sortOrder="10"
action="reviewrating/index" resource="CompanyName_ReviewRating::index"
parent="CompanyName_ReviewRating::parent"/>

<add id="CompanyName_ReviewRating::settings" title="Settings" module="CompanyName_ReviewRating" sortOrder="30" action="adminhtml/system_config/edit/section/reviewrating/" resource="CompanyName_ReviewRating::settings"/>
</menu>
</config>






configuration magento2.2 adminmenu






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 23 '17 at 7:10







inrsaurabh

















asked Nov 22 '17 at 15:20









inrsaurabhinrsaurabh

1,110931




1,110931












  • where want to add your configuration key under which tab I send you the code to put in the system.xml

    – Mohamed El Mrabet
    Nov 22 '17 at 20:46











  • @MohamedElMrabet sir i updated my question , may be now its clear what i am trying to achieve. Thank You

    – inrsaurabh
    Nov 23 '17 at 5:28

















  • where want to add your configuration key under which tab I send you the code to put in the system.xml

    – Mohamed El Mrabet
    Nov 22 '17 at 20:46











  • @MohamedElMrabet sir i updated my question , may be now its clear what i am trying to achieve. Thank You

    – inrsaurabh
    Nov 23 '17 at 5:28
















where want to add your configuration key under which tab I send you the code to put in the system.xml

– Mohamed El Mrabet
Nov 22 '17 at 20:46





where want to add your configuration key under which tab I send you the code to put in the system.xml

– Mohamed El Mrabet
Nov 22 '17 at 20:46













@MohamedElMrabet sir i updated my question , may be now its clear what i am trying to achieve. Thank You

– inrsaurabh
Nov 23 '17 at 5:28





@MohamedElMrabet sir i updated my question , may be now its clear what i am trying to achieve. Thank You

– inrsaurabh
Nov 23 '17 at 5:28










2 Answers
2






active

oldest

votes


















2














For this you have to add menu for your module's configuration in menu.xml
file, you can add below code in your menu.xml to add link of your module's configuration



<add id="Namespace_Module::settings" title="Settings" module="Namespace_Module" parent="Namespace_Module::your_parent_menu_id" sortOrder="30" action="adminhtml/system_config/edit/section/your_section_id/" resource="Namespace_Module::settings"/>





share|improve this answer

























  • can you please explain how to use it.

    – inrsaurabh
    Nov 23 '17 at 6:56











  • have you created menu.xml in you module?

    – Piyush
    Nov 23 '17 at 6:57











  • yes i posted above, i copied it , no mush details how it works currently

    – inrsaurabh
    Nov 23 '17 at 6:59












  • you just have to change Namespace_Module, section id, resource and parent id from above code

    – Piyush
    Nov 23 '17 at 7:02











  • section id you will get in your system.xml file

    – Piyush
    Nov 23 '17 at 7:02


















0














You can refer below link to show custom module configuration in Admin Menu in Magento2 -



https://github.com/jainmegha5395/system-config






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.




















    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%2f202781%2fshow-custom-module-configuration-in-admin-menu-not-in-store-setting-config%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









    2














    For this you have to add menu for your module's configuration in menu.xml
    file, you can add below code in your menu.xml to add link of your module's configuration



    <add id="Namespace_Module::settings" title="Settings" module="Namespace_Module" parent="Namespace_Module::your_parent_menu_id" sortOrder="30" action="adminhtml/system_config/edit/section/your_section_id/" resource="Namespace_Module::settings"/>





    share|improve this answer

























    • can you please explain how to use it.

      – inrsaurabh
      Nov 23 '17 at 6:56











    • have you created menu.xml in you module?

      – Piyush
      Nov 23 '17 at 6:57











    • yes i posted above, i copied it , no mush details how it works currently

      – inrsaurabh
      Nov 23 '17 at 6:59












    • you just have to change Namespace_Module, section id, resource and parent id from above code

      – Piyush
      Nov 23 '17 at 7:02











    • section id you will get in your system.xml file

      – Piyush
      Nov 23 '17 at 7:02















    2














    For this you have to add menu for your module's configuration in menu.xml
    file, you can add below code in your menu.xml to add link of your module's configuration



    <add id="Namespace_Module::settings" title="Settings" module="Namespace_Module" parent="Namespace_Module::your_parent_menu_id" sortOrder="30" action="adminhtml/system_config/edit/section/your_section_id/" resource="Namespace_Module::settings"/>





    share|improve this answer

























    • can you please explain how to use it.

      – inrsaurabh
      Nov 23 '17 at 6:56











    • have you created menu.xml in you module?

      – Piyush
      Nov 23 '17 at 6:57











    • yes i posted above, i copied it , no mush details how it works currently

      – inrsaurabh
      Nov 23 '17 at 6:59












    • you just have to change Namespace_Module, section id, resource and parent id from above code

      – Piyush
      Nov 23 '17 at 7:02











    • section id you will get in your system.xml file

      – Piyush
      Nov 23 '17 at 7:02













    2












    2








    2







    For this you have to add menu for your module's configuration in menu.xml
    file, you can add below code in your menu.xml to add link of your module's configuration



    <add id="Namespace_Module::settings" title="Settings" module="Namespace_Module" parent="Namespace_Module::your_parent_menu_id" sortOrder="30" action="adminhtml/system_config/edit/section/your_section_id/" resource="Namespace_Module::settings"/>





    share|improve this answer















    For this you have to add menu for your module's configuration in menu.xml
    file, you can add below code in your menu.xml to add link of your module's configuration



    <add id="Namespace_Module::settings" title="Settings" module="Namespace_Module" parent="Namespace_Module::your_parent_menu_id" sortOrder="30" action="adminhtml/system_config/edit/section/your_section_id/" resource="Namespace_Module::settings"/>






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Nov 23 '17 at 5:50

























    answered Nov 23 '17 at 5:42









    PiyushPiyush

    4,84972054




    4,84972054












    • can you please explain how to use it.

      – inrsaurabh
      Nov 23 '17 at 6:56











    • have you created menu.xml in you module?

      – Piyush
      Nov 23 '17 at 6:57











    • yes i posted above, i copied it , no mush details how it works currently

      – inrsaurabh
      Nov 23 '17 at 6:59












    • you just have to change Namespace_Module, section id, resource and parent id from above code

      – Piyush
      Nov 23 '17 at 7:02











    • section id you will get in your system.xml file

      – Piyush
      Nov 23 '17 at 7:02

















    • can you please explain how to use it.

      – inrsaurabh
      Nov 23 '17 at 6:56











    • have you created menu.xml in you module?

      – Piyush
      Nov 23 '17 at 6:57











    • yes i posted above, i copied it , no mush details how it works currently

      – inrsaurabh
      Nov 23 '17 at 6:59












    • you just have to change Namespace_Module, section id, resource and parent id from above code

      – Piyush
      Nov 23 '17 at 7:02











    • section id you will get in your system.xml file

      – Piyush
      Nov 23 '17 at 7:02
















    can you please explain how to use it.

    – inrsaurabh
    Nov 23 '17 at 6:56





    can you please explain how to use it.

    – inrsaurabh
    Nov 23 '17 at 6:56













    have you created menu.xml in you module?

    – Piyush
    Nov 23 '17 at 6:57





    have you created menu.xml in you module?

    – Piyush
    Nov 23 '17 at 6:57













    yes i posted above, i copied it , no mush details how it works currently

    – inrsaurabh
    Nov 23 '17 at 6:59






    yes i posted above, i copied it , no mush details how it works currently

    – inrsaurabh
    Nov 23 '17 at 6:59














    you just have to change Namespace_Module, section id, resource and parent id from above code

    – Piyush
    Nov 23 '17 at 7:02





    you just have to change Namespace_Module, section id, resource and parent id from above code

    – Piyush
    Nov 23 '17 at 7:02













    section id you will get in your system.xml file

    – Piyush
    Nov 23 '17 at 7:02





    section id you will get in your system.xml file

    – Piyush
    Nov 23 '17 at 7:02













    0














    You can refer below link to show custom module configuration in Admin Menu in Magento2 -



    https://github.com/jainmegha5395/system-config






    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














      You can refer below link to show custom module configuration in Admin Menu in Magento2 -



      https://github.com/jainmegha5395/system-config






      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












        0








        0







        You can refer below link to show custom module configuration in Admin Menu in Magento2 -



        https://github.com/jainmegha5395/system-config






        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 show custom module configuration in Admin Menu in Magento2 -



        https://github.com/jainmegha5395/system-config







        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 2 days 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.



























            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%2f202781%2fshow-custom-module-configuration-in-admin-menu-not-in-store-setting-config%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

            Grendel Contents Story Scholarship Depictions Notes References Navigation menu10.1093/notesj/gjn112Berserkeree

            Area configuration aggregation error after install Porto themeMagento 2.1 CE Installed but front/backend not loading/workingCSS not loading on page within Magento 2 pageCannot install module in Magento 2no commands defined in the “setup” namespace. in Magento2Magento 2: Static files are present but shows 404Why do i have to always run the commands to clean cache in Magento 2.1.8?Failure reason: 'Unable to unserialize value.'Error 500 after magento migrationIn production mode the site does not loadMagento 2 : Error 500 after installing

            Middle Expansion Olielle Resaix Definition: Uttering songs of triumph shouting with joy triumphant exulting Sejunction Journal 붙다 달 고급 품목 외출 The stretch trades the screeching tin. Definition: The act of speaking with a drawl a drawl Cough Sand Definition: An uproar a quarrel a noisy outbreak Shake Iron Publicize Horse House Baby 사과 Resaix Flaggy Jelly Temporary Unequaled Puppet A drop in the bucket Shrew 성격 회원 성질 미팅 The burn frames the tacky quality. Materialistic The smoke reduces the way. Yammoe Nondescript Cheek 얼굴 배 약하다 날리다 타다 The illegal country shows the iron. Help Rule Drearien Smoke Teaching Meaty Wasp Abraham Lincoln Jaws 진심 수리하다 Size Cork Idea Convert Think Lark John Lennon 거울 청소 군 추천하다 아이스크림