Page 1 of 1

changing message after using contact form

Posted: 13 Mar 2009, 18:19
by vee915
How or where do I change what it says after someone fills out the contact form? And, where can I change the template of the contact form? I still have all the "how-to" info showing when I test it, and I'd like to delete it.

Posted: 16 Mar 2009, 17:34
by Nick
Contact form success messages can be edited only in code:
Code
imagevue/controllers/ivXMLController.php:

					} else {
						echo 'success=could not mail';
					}
				} else {
					echo 'success=no such pic';
				}
			} else {
				echo 'success=path not setted';
			}
		} else {
			echo 'success=email disabled';
		}
	}

What of contact form template, you can edit it only for html gallery. It is in imageuve/templates/contactform.html.

You can also edit contact and send link emails templates in the same folder.

Posted: 16 Mar 2009, 17:57
by Nick
You need to edit contact/ page in admin to remove text around contactform. If you want to change actual contact form look you can do it only for html gallery.