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

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

Is a lawful good "antagonist" effective?

Possible Leak In Concrete

Be in awe of my brilliance!

Does this AnyDice function accurately calculate the number of ogres you make unconcious with three 4th-level castings of Sleep?

Is having access to past exams cheating and, if yes, could it be proven just by a good grade?

Define, (actually define) the "stability" and "energy" of a compound

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

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

Do I need life insurance if I can cover my own funeral costs?

Why using two cd commands in bash script does not execute the second command

When do we add an hyphen (-) to a complex adjective word?

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

Why do passenger jet manufacturers design their planes with stall prevention systems?

Using "wallow" verb with object

Make a transparent 448*448 image

How is the Swiss post e-voting system supposed to work, and how was it wrong?

Should we release the security issues we found in our product as CVE or we can just update those on weekly release notes?

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

Humanity loses the vast majority of its technology, information, and population in the year 2122. How long does it take to rebuild itself?

Official degrees of earth’s rotation per day

How to simplify this time periods definition interface?

Counting certain elements in lists

Why did it take so long to abandon sail after steamships were demonstrated?



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 22 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 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