I obviously found the file responsible of displaying the contact form with FireBug, changed the displayed names in the input area and then re-upload my file, however, nothing was changed.

The input value of the first area was your name, i changed it to votre nom, but still displying me your name. You can check it in this url, you can use FireBug to check this. Here is a sceenshot, and I'm use the Boldy theme:

Screenshot of form and firebug

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

It is because you are overidding your values in custom.js:

$('#quickName').val('your name');
$('#quickEmail').val('your email');
$('#quickComment').val('your message');

Remove these lines and you should be good to go.

link|improve this answer
thanx a million, it works like a sharme :) – Malek Feb 22 at 10:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.