before=”-” – It lists as the first block
after=”-“- It lists as the last block
before=”block_name” – To load before a block
after=”block_name” – To load after a block
Category Archives: Magento
Get user group magento
<?php
echo Mage::getSingleton(‘customer/session’)->getCustomerGroupId();
?>
Check user is logged in or not magento
<?php
if($this->helper('customer')->isLoggedIn())
echo “logged in”;
?>
Gateway error: (TESTMODE) The merchant login ID or password is invalid or the account is inactive Magento
If you are testing the authorise.net in test mode make sure that Gateway URL is
https://test.authorize.net/gateway/transact.dll
If its in live mode make sure that the details you have given are correct and the authorize.net account is active .
Check the if the products is grouped or not Magento
if(Mage::helper(‘core’)->escapeHtml($product->getTypeId())==”grouped”)
echo “Grouped Product”;
Edit was added to your shopping cart Magento
1) Change the directory to magento installation
2 cd app/code/core/Mage/Checkout/controllers
3) vi CartController.php
4) Search for $message = $this->__(‘%s was pramod added to your shopping cart.’, Mage::helper(‘core’)->escapeHtml($product->getName())); and edit the text
Edit shipping method text on the sidebar on the checkout page Magento
1) Change the directory to magento installation
2) cd app/code/core/Mage/Sales/Model/Quote/Address/Total
3) vi Shipping.php
Edit the code at the line number 168
Edit getShippingDescription() Magento
1) Change the directory to magento installation
2) cd app/code/core/Mage/Sales/Model/Quote/Address/Total
3) vi Shipping.php
Edit the code at the line number 168
Override index controller magento
Here you can see how to override app/code/core/Mage/Contacts/controllers/IndexController.php .
1) Change the directory to the root of magento installation
2) vi app/etc/modules/PHPCodez_Contacts.xml
Paste the below given content
<config>
<modules>
<PHPCodez_Contacts>
<active>true</active>
<codePool>local</codePool>
</PHPCodez_Contacts>
</modules>
</config>
3) cd app/code/
4) mkdir local
5) cd local
6) mkdir PHPCodez
7) cd PHPCodez
8) mkdir Contacts
9) cd Contacts
10) mkdir controllers
11) mkdir etc
12) vi etc/config.xml
paste the below given code
<?xml version=”1.0″?>
<config>
<modules>
<PHPCodez_Contacts>
<version>0.1.0</version>
</PHPCodez_Contacts>
</modules>
<frontend>
<routers>
<PHPCodez_Contacts>
<use>standard</use>
<args>
<module>PHPCodez_Contacts</module>
<frontName>contacts</frontName>
</args>
</PHPCodez_Contacts>
</routers>
</frontend>
</conf
12)vi controllers/IndexController.php
Paste the below given code
<?php
require_once ‘Mage/Contacts/controllers/IndexController.php’;
class PHPCodez_Contacts_IndexController extends Mage_Contacts_IndexController
{
// Overrride the post function
public function postAction() {
error_log(“Overriden n”, 3, “/var/log/error-log.txt”);
// add your code to implement a tasks
}
}
?>
getFormAction() return null value contact form magento
It may happen if we try to load contact form through a static block or cms .
When you do so make sure that you have included ‘ form_action=”/contacts/index/post ‘ .ie The code will
be
{{block type=”core/template” name=”contactForm” form_action=”/contacts/index/post” template=”contacts/form.phtml”}}
But when we submit the contact form , the page will be redirected to the original contact form
“magento/contacts/ ” after sending the mail . To fix that we should override the function “postAction” in
/var/www/html/app/code/core/Mage/Contacts/controllers/IndexController.php and edit the code
“$this->_redirect(‘*/*/’);” at line number 113 with the page url . ie for eg :
“$this->_redirect(‘contatcs’)