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
I need new data field in store information section, like I show in image below.
I tried this tutorial, but it does not work.
magento-1.9 adminhtml custom-field
add a comment |
I need new data field in store information section, like I show in image below.
I tried this tutorial, but it does not work.
magento-1.9 adminhtml custom-field
Check magento log file for error.
– Dhiren Vasoya
Jan 4 '17 at 13:30
add a comment |
I need new data field in store information section, like I show in image below.
I tried this tutorial, but it does not work.
magento-1.9 adminhtml custom-field
I need new data field in store information section, like I show in image below.
I tried this tutorial, but it does not work.
magento-1.9 adminhtml custom-field
magento-1.9 adminhtml custom-field
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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');
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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');
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
add a comment |
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');
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
add a comment |
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');
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');
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Check magento log file for error.
– Dhiren Vasoya
Jan 4 '17 at 13:30