tags:

views:

125

answers:

1

hi, how can i re-direct to a particular page after the user submits the contact form in Magento? form.phtml has

<form action="<?php echo Mage::getUrl(); ?>contacts/index/post/" id="contactForm" method="post">

but i'm not sure where to find the php file that controls the email sending and redirects. any ideas? thanks

EDIT: found this in IndexController.php under app > code > core > Mage > Contacts > controllers

$this->_redirect('*/*/');
A: 

IndexController.php under app > code > core > Mage > Contacts > controllers

changed

$this->_redirect('*/*/');

to

$this->_redirect('');

and it re-directs to the homepage now.

pixeltocode