在我的magento网站上,我安装了Quick contact feedback extension。现在我需要自定义反馈表单字段。如何从此扩展中删除所需的字段验证。
答案 0 :(得分:0)
你好检查控制器文件app / code / community / HM / QuickContact / controllers / indexController.php 评论那些你想要的东西
/*
if (!Zend_Validate::is(trim($post['name']) , 'NotEmpty')) {
echo '<div class="error-msg">'.Mage::helper('contacts')->__('Please fill in required fields.').'</div>';
exit;
}
if (!Zend_Validate::is(trim($post['comment']) , 'NotEmpty')) {
echo '<div class="error-msg">'.Mage::helper('contacts')->__('Please fill in required fields.').'</div>';
exit;
}
if (!Zend_Validate::is(trim($post['email']), 'EmailAddress')) {
echo '<div class="error-msg">'.Mage::helper('contacts')->__('Please enter a valid email address. For example johndoe@domain.com.').'</div>';
exit;
}*/