How to edit/change contact page form in magento
Wow after few searches i found the solution so, i didn't get that much headache at this time. This is how i changed my contacts page form in magento.
Step 1:
Change the contact form located at:
NOTE: The code available is same as the code used for this site at the time of release.
Codefight CMS is based on Codeigniter PHP Framework which is very easy to learn.
It would be nice to hear back some feedback. Also you can contribute with code and helping translating language files in your language.
You can use this CMS in anyway you want. You can modify as you like and use commercially for free.
Wow after few searches i found the solution so, i didn't get that much headache at this time. This is how i changed my contacts page form in magento.
Change the contact form located at:
These are the few things i had been documenting while doing projects on Magento E-Commerce Solution. So posted here to find faster when needed. These are just small snippets. Not detailed, easy to understand though (hopefully).
Download jQuery from jQuery site
Add this line to the bottom of jQuery.js
CODE:
jQuery.noConflict();
Copy the file to the js/jquery folder|directory
In page.xml, add it to the list of js files as:
CODE:
<action method=“addJs“><script>jquery/jquery-1.2.6.noConflict.min.js</script></action>
or,
CODE:
<action method=“addItem“><type>js</type><name>jquery.js</name><params/></action>
The below procedure is one way.