I want to make changes to the contact form like remove the header (contact), remove the etc..
Where is the template stored?
Where do I find the source for the Contact Form
Re: Where do I find the source for the Contact Form
Int he \plugins\ folder you will find function.contact_form.php in this you will find the... line 83 to 103...
" method="post" >
>
Contact
>Your name :
" />
>Your email address :
" />
>Subject :
" />
>Message :
>
/>
/>
" method="post" >
>
Contact
>Your name :
" />
>Your email address :
" />
>Subject :
" />
>Message :
>
/>
/>
Re: Where do I find the source for the Contact Form
found another sollution instead of tampering with the soure
I put the contact form in a div and gave it some contra styles
Thanks for your help
I put the contact form in a div and gave it some contra styles
Code: Select all
<style type="text/css">
<!--
div#contactform {
font-family: Arial, Helvetica, sans-serif;
}
div#contactform legend {
display: none;
}
div#contactform label {
margin-bottom: 10px;
}
div#contactform fieldset{
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
}
-->
</style>