Restrict admin access to only approved IP addresses Remove admin access to specific IP addresses Note: Assuming that the administration path is “admin”. If your admin path is different then replace “admin” with your...
For this add this to the top of /template/directory/currency.phtml Then, you can do something with the domains where a .co.uk site will redirect to the .com with ?cy=GBP at the end.
If you need to added a new sort by option like most viewed or most popular in drop down option then follow these steps– override app\code\core\Mage\Catalog\Block\Product\List\Toolbar.php in local folder and add or override only...
Starting with Magento 1.9.1 the emails are not being sent directly during checkout but instead are being queued. The queue is being processed via your Magento cronjob – please ensure this has been set...
We can cache the block and also cache the particular HTML block code 1st time it will cache and from next time it will call from cache for eg:- in product view page your...
To convert the price to some other currency we need to select that currency in allowed currency and import currency rates from System->Manage currency ->Rates . The synatx for currency conversion is currencyConvert($amount, $from,...
Here is a quick code to check if a Magento module is installed, enabled or active. The functions isModuleEnabled and isModuleOutputEnabled are present in Mage_Core_Helper_Abstract class. You can also check if the output of...
Here is the step-by-step procedure to install new language package on Magento. Let’s assume that you want to install Dutch language package. 1. Go to this link. 2. Get the extension key. 3. Login...
This tutorial shows how to add a custom select list in configuration settings of a custom Magento module. Suppose, your module’s namespace is YourNamespace and your module’s name is YourModule. And, you want to...