New input field in store information sectionNeed to Add Custom Button and Related action in System->Config->Custom section as fieldAdd field to billing information step of one page checkout put process input in checkout_submit_all_after_handlerAdd new field in customer billing and shipping pageHow to add new custom field to billing address section in magento2shipping and handling informationMagento 2 checkout input field validation possibilityAdd new field in address form for create new order and re-order section in magento 2 backendAdding New Field to Signup Form in Magento 2Create custom extra new field in Magento 1.9 admin panelMagento 2.3 How to pass custom input field data to the sidebar Summary

Ban on all campaign finance?

Employee lack of ownership

Meaning of "SEVERA INDEOVI VAS" from 3rd Century slab

Will a pinhole camera work with instant film?

Provisioning profile doesn't include the application-identifier and keychain-access-groups entitlements

Is a lawful good "antagonist" effective?

At what level can a dragon innately cast its spells?

Welcoming 2019 Pi day: How to draw the letter π?

Is it true that real estate prices mainly go up?

What has been your most complicated TikZ drawing?

Be in awe of my brilliance!

Where is the 1/8 CR apprentice in Volo's Guide to Monsters?

PlotLabels with equations not expressions

Why must traveling waves have the same amplitude to form a standing wave?

Science-fiction short story where space navy wanted hospital ships and settlers had guns mounted everywhere

What is the greatest age difference between a married couple in Tanach?

How to make healing in an exploration game interesting

Good allowance savings plan?

Is it possible that AIC = BIC?

Could the Saturn V actually have launched astronauts around Venus?

Instead of Universal Basic Income, why not Universal Basic NEEDS?

How to write cleanly even if my character uses expletive language?

Can elves maintain concentration in a trance?

Replacing Windows 7 security updates with anti-virus?



New input field in store information section


Need to Add Custom Button and Related action in System->Config->Custom section as fieldAdd field to billing information step of one page checkout put process input in checkout_submit_all_after_handlerAdd new field in customer billing and shipping pageHow to add new custom field to billing address section in magento2shipping and handling informationMagento 2 checkout input field validation possibilityAdd new field in address form for create new order and re-order section in magento 2 backendAdding New Field to Signup Form in Magento 2Create custom extra new field in Magento 1.9 admin panelMagento 2.3 How to pass custom input field data to the sidebar Summary













1















I need new data field in store information section, like I show in image below.



I tried this tutorial, but it does not work.



store information field










share|improve this question
























  • Check magento log file for error.

    – Dhiren Vasoya
    Jan 4 '17 at 13:30















1















I need new data field in store information section, like I show in image below.



I tried this tutorial, but it does not work.



store information field










share|improve this question
























  • Check magento log file for error.

    – Dhiren Vasoya
    Jan 4 '17 at 13:30













1












1








1


1






I need new data field in store information section, like I show in image below.



I tried this tutorial, but it does not work.



store information field










share|improve this question
















I need new data field in store information section, like I show in image below.



I tried this tutorial, but it does not work.



store information field







magento-1.9 adminhtml custom-field






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 11 mins ago









Pang

11715




11715










asked Jan 4 '17 at 13:09









user3088867user3088867

134




134












  • Check magento log file for error.

    – Dhiren Vasoya
    Jan 4 '17 at 13:30

















  • Check magento log file for error.

    – Dhiren Vasoya
    Jan 4 '17 at 13:30
















Check magento log file for error.

– Dhiren Vasoya
Jan 4 '17 at 13:30





Check magento log file for error.

– Dhiren Vasoya
Jan 4 '17 at 13:30










1 Answer
1






active

oldest

votes


















2














You can do it by overriding the system.xml



/app/code/core/Mage/Core/etc/system.xml
For this create a basic module



app/etc/modules/Arunendra_Pratap.xml



<?xml version="1.0"?>
<config>
<modules>
<Arunendra_Pratap>
<active>true</active>
<codePool>local</codePool>
</Arunendra_Pratap>
</modules>
</config>


app/code/local/Arunendra/Pratap/etc/config.xml - the configuration file



<?xml version="1.0"?>
<config>
<modules>
<Arunendra_Pratap>
<version>0.0.1</version>
</Arunendra_Pratap>
</modules>
</config>


app/etc/local/Arunendra/Pratap/etc/system.xml



<?xml version="1.0"?>
<config>
<sections>
<general>
<groups>
<store_information>
<fields>
<custom_field translate="label">
<label>Your custom label</label>
<frontend_type>textarea</frontend_type>
<sort_order>40</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</custom_field>
</fields>
</store_information>
</groups>
</general>
</sections>
</config>


Finally get the date from below code.



Mage::getStoreConfig('general/store_information/custom_field');





share|improve this answer

























  • config path="general/store_information/custom_field" in a static block doesn't seem to display the value. Any solution?

    – Ejaz
    Apr 13 '18 at 18:42










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%2f153115%2fnew-input-field-in-store-information-section%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














You can do it by overriding the system.xml



/app/code/core/Mage/Core/etc/system.xml
For this create a basic module



app/etc/modules/Arunendra_Pratap.xml



<?xml version="1.0"?>
<config>
<modules>
<Arunendra_Pratap>
<active>true</active>
<codePool>local</codePool>
</Arunendra_Pratap>
</modules>
</config>


app/code/local/Arunendra/Pratap/etc/config.xml - the configuration file



<?xml version="1.0"?>
<config>
<modules>
<Arunendra_Pratap>
<version>0.0.1</version>
</Arunendra_Pratap>
</modules>
</config>


app/etc/local/Arunendra/Pratap/etc/system.xml



<?xml version="1.0"?>
<config>
<sections>
<general>
<groups>
<store_information>
<fields>
<custom_field translate="label">
<label>Your custom label</label>
<frontend_type>textarea</frontend_type>
<sort_order>40</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</custom_field>
</fields>
</store_information>
</groups>
</general>
</sections>
</config>


Finally get the date from below code.



Mage::getStoreConfig('general/store_information/custom_field');





share|improve this answer

























  • config path="general/store_information/custom_field" in a static block doesn't seem to display the value. Any solution?

    – Ejaz
    Apr 13 '18 at 18:42















2














You can do it by overriding the system.xml



/app/code/core/Mage/Core/etc/system.xml
For this create a basic module



app/etc/modules/Arunendra_Pratap.xml



<?xml version="1.0"?>
<config>
<modules>
<Arunendra_Pratap>
<active>true</active>
<codePool>local</codePool>
</Arunendra_Pratap>
</modules>
</config>


app/code/local/Arunendra/Pratap/etc/config.xml - the configuration file



<?xml version="1.0"?>
<config>
<modules>
<Arunendra_Pratap>
<version>0.0.1</version>
</Arunendra_Pratap>
</modules>
</config>


app/etc/local/Arunendra/Pratap/etc/system.xml



<?xml version="1.0"?>
<config>
<sections>
<general>
<groups>
<store_information>
<fields>
<custom_field translate="label">
<label>Your custom label</label>
<frontend_type>textarea</frontend_type>
<sort_order>40</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</custom_field>
</fields>
</store_information>
</groups>
</general>
</sections>
</config>


Finally get the date from below code.



Mage::getStoreConfig('general/store_information/custom_field');





share|improve this answer

























  • config path="general/store_information/custom_field" in a static block doesn't seem to display the value. Any solution?

    – Ejaz
    Apr 13 '18 at 18:42













2












2








2







You can do it by overriding the system.xml



/app/code/core/Mage/Core/etc/system.xml
For this create a basic module



app/etc/modules/Arunendra_Pratap.xml



<?xml version="1.0"?>
<config>
<modules>
<Arunendra_Pratap>
<active>true</active>
<codePool>local</codePool>
</Arunendra_Pratap>
</modules>
</config>


app/code/local/Arunendra/Pratap/etc/config.xml - the configuration file



<?xml version="1.0"?>
<config>
<modules>
<Arunendra_Pratap>
<version>0.0.1</version>
</Arunendra_Pratap>
</modules>
</config>


app/etc/local/Arunendra/Pratap/etc/system.xml



<?xml version="1.0"?>
<config>
<sections>
<general>
<groups>
<store_information>
<fields>
<custom_field translate="label">
<label>Your custom label</label>
<frontend_type>textarea</frontend_type>
<sort_order>40</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</custom_field>
</fields>
</store_information>
</groups>
</general>
</sections>
</config>


Finally get the date from below code.



Mage::getStoreConfig('general/store_information/custom_field');





share|improve this answer















You can do it by overriding the system.xml



/app/code/core/Mage/Core/etc/system.xml
For this create a basic module



app/etc/modules/Arunendra_Pratap.xml



<?xml version="1.0"?>
<config>
<modules>
<Arunendra_Pratap>
<active>true</active>
<codePool>local</codePool>
</Arunendra_Pratap>
</modules>
</config>


app/code/local/Arunendra/Pratap/etc/config.xml - the configuration file



<?xml version="1.0"?>
<config>
<modules>
<Arunendra_Pratap>
<version>0.0.1</version>
</Arunendra_Pratap>
</modules>
</config>


app/etc/local/Arunendra/Pratap/etc/system.xml



<?xml version="1.0"?>
<config>
<sections>
<general>
<groups>
<store_information>
<fields>
<custom_field translate="label">
<label>Your custom label</label>
<frontend_type>textarea</frontend_type>
<sort_order>40</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</custom_field>
</fields>
</store_information>
</groups>
</general>
</sections>
</config>


Finally get the date from below code.



Mage::getStoreConfig('general/store_information/custom_field');






share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 4 '17 at 13:51









Marius

167k28319684




167k28319684










answered Jan 4 '17 at 13:46









ArunendraArunendra

6,21831842




6,21831842












  • config path="general/store_information/custom_field" in a static block doesn't seem to display the value. Any solution?

    – Ejaz
    Apr 13 '18 at 18:42

















  • config path="general/store_information/custom_field" in a static block doesn't seem to display the value. Any solution?

    – Ejaz
    Apr 13 '18 at 18:42
















config path="general/store_information/custom_field" in a static block doesn't seem to display the value. Any solution?

– Ejaz
Apr 13 '18 at 18:42





config path="general/store_information/custom_field" in a static block doesn't seem to display the value. Any solution?

– Ejaz
Apr 13 '18 at 18:42

















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%2f153115%2fnew-input-field-in-store-information-section%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 - Add success message with knockout 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?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

Fil:Tokke komm.svg

Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?