Explain Google checkout in Magento

Magento allows the integration of online stores with Google checkout. Google checkout is the online payments service provided by the Google. It works like PayPal. In Magento, Google Checkout is a payment method that allows customers to pay for their purchases using their Google account credentials. Here’s a more detailed explanation: Google Checkout, also known … Read more

How to convert default currency to others in Magento?

To convert default currency to others, select the currency and import currency rates from System-> Manage currency-> Rates. Syntax: $convertedPrice = Mage::helper(‘directory’)->currencyConvert($price, currentCurrency, newCurrency); In Magento, you can convert the default currency to other currencies programmatically by utilizing the currency conversion functionality provided by the framework. Here’s how you can achieve this: Load the Store … Read more

How to enable Maintenance mode in Magento?

Create a file named as maintenance.flag and upload it to Magento home directory containing following code. $maintenanceFile = ‘maintenance.flag’; if (file_exists($maintenanceFile)) { include_once dirname(__FILE__) . ‘/errors/503.php’; exit; } To enable Maintenance mode in Magento, you would typically follow these steps: SSH Access or FTP Access: Firstly, you need access to your Magento installation directory via … Read more

Explain compilation feature in Magento?

Compilation feature allows us to compile all Magento files to create a single include path to increase performance. In Magento, the compilation feature is designed to improve the performance of the platform by reducing the time it takes to load classes. When you enable compilation, Magento compiles all of its files into a single include … Read more

Explain handles in Magento?

Handles control the structure of the page to be displayed. It decides which block will be placed where in the page. Handle is called for every page and every page request can have several unique handles. In Magento, handles play a crucial role in determining which layout XML instructions are applied to a specific page … Read more