help with
So I am trying to edit the Contact form next to a post. Basically the form asks the person to enter their name and email, but when the email is received by the poster is only says "someone is interested in your listing" and shows their comment. So if they did not put any contact information in their message there is no way the poster could contact them. I found coding to adjust this on the forums
Code:
/$message = sprintf(__('Someone is interested in your ad listing: %s', 'cp'), $permalink) . "\r\n\r\n";
$message = sprintf(__('%s is interested in your ad listing: %s, their email is %s', 'cp'), $from_name,$permalink, $from_email) . "\r\n\r\n";
$message .= wordwrap(strip_tags($_POST['message']), 70) . "\r\n\r\n\r\n\r\n";
$message .= '-----------------------------------------' . "\r\n";
$message .= sprintf(__('This message was sent from %s', 'cp'), $sitename) . "\r\n";
$message .= $siteurl . "\r\n\r\n";
but now I am sore pressed to figure out how to do this. With other websites i've created I would just adjust the files on my computer then use upload them via ftp to the website. Do you do the same thing here? Or is there some way to access the coding from your wordpress homepage. Basically I guess my question is how do you adjust the coding without messing up your website lol