Magento联系表单重定向

时间:2013-04-09 16:24:51

标签: php javascript forms magento

我是Magento / PHP的新手,所以请光临我。我正在开发一个新的站点,该站点有两个联系表单,它们运行在同一个控制器上。目前,联系页面上的表单会加载一条消息,说“感谢您的查询”等。“图库”页面上的表单一旦提交,就会将用户发送到联系页面并显示相同的消息。

但我想要的是让用户保持他们当前所在的页面,然后显示该消息。正是联系页面上正在发生的事情。

如果我更改了这段代码:

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

/ code/core/Mage/Contacts/controllers/IndexController.php我可以让它重新定向到主页等,但我只是希望它在我正在的页面上显示消息。

以下是我的表单的代码:

<form action="<?php echo Mage::getUrl(); ?>contacts/index/post/" id="contactForm" method="post">
<input type='hidden' name='formtype' value='Contact Us Page'/>
        <div class="fieldset">
               <ul class="form-list">
                <li class="fields">
                    <div class="field">
<div class="input-box">
<input onfocus="if(this.value == 'Name'){this.value = '';}"  name="name" id="name" title="<?php echo Mage::helper('contacts')->__('Name') ?>"  class="input-text required-entry" type="text" onblur="if(this.value == ''){this.value='Name';}" value="Name"/>
                        </div>
                    </div>

                     <li>
<div class="input-box">
<input name="company" id="company" onfocus="if(this.value == 'Company'){this.value = '';}" title="<?php echo Mage::helper('contacts')->__('Company') ?>" value="Company" onblur="if(this.value == ''){this.value='Company';}" class="input-text" type="text" />
                    </div>
                </li>
                    <div class="field">
                      <div class="input-box">
<input name="email" id="email" onfocus="if(this.value == 'Email'){this.value = '';}" title="<?php echo Mage::helper('contacts')->__('Email') ?>" value="Email" onblur="if(this.value == ''){this.value='Email';}" class="input-text required-entry validate-email" type="text" />
                        </div>
                    </div>
                </li>

                <li class="wide">
                    <!--<label for="comment" class="required"><em>*</em><?php echo Mage::helper('contacts')->__('Comment') ?></label>-->
                    <div class="input-box">
                        <textarea name="comment" id="comment" onfocus="if(this.value == 'Enquiry details'){this.value = '';}" title="<?php echo Mage::helper('contacts')->__('Comment') ?>" class="required-entry input-text" onblur="if(this.value == ''){this.value='Enquiry details';}" cols="5" value="Enquiry details" rows="3">Enquiry details</textarea>
                    </div>
                </li>
            </ul>
        </div>
        <div class="buttons-set">
<input type="text" name="hideit" id="hideit" value="" style="display:none !important;" />
            <button class="submit" type="submit" title="<?php echo Mage::helper('contacts')->__('Submit') ?>" class="button"><span><span><?php echo Mage::helper('contacts')->__('Submit') ?></span></span></button>
</div>
</form>




<script type="text/javascript">
//<![CDATA[
    var contactForm = new VarienForm('contactForm', true);
//]]>
</script>

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:2)

您可以尝试使用referer网址

/ pt/core/Mage/Contacts/controllers/IndexController.php中的

 if(Mage::helper('core/http')->getHttpReferer(true)){
    $this->_redirectUrl(Mage::helper('core/http')->getHttpReferer(true)); 
 }
 else{
    $this->_redirect('*/*/');
 }

Magento useful functions cheatsheet

此外,您应该避免对核心进行更改,请查看@ Magento: Overriding Core Files (Blocks, Models, Resources, Controllers)