Hi, is it possible to show a confirmation message (thanks message) on submit within the Joomla info box that most templates have?
Edit:
Answer: insert this code into the "Custom Code" event after emails (must be be in advanced mode of form wizard):
Thanks Bob!
Edit:
Answer: insert this code into the "Custom Code" event after emails (must be be in advanced mode of form wizard):
<?php
$app =& JFactory::getApplication();
$app->enqueuemessage('Your message goes here');
?>
Thanks Bob!