Home » Archive

Articles tagged with: Magento

Magento »

[17 Apr 2012 | No Comment]

Magento version 1.4.0.1 has some issues with Paypal email, shipping cost and order status. Note: All these issues occur when payment is done through Paypal

Magento »

[10 Apr 2012 | 4 Comments]

Problem: I am using Magento 1.6 and my login and register page design has problem. It is not taking the template path from my custom theme. Instead, it is taking the template path from base persistent folder. For example, the login template path is taken from frontend/base/default/template/persistent/customer/form/login.phtml

Magento »

[9 Apr 2012 | One Comment]

Here is a tip to override/rewrite Mysql4 and Resource Eav collection class. I will only be including the config xml code. You can read more about Model Overriding over here: Magento: Model Controller Block Helper Override By Mysql4 Collection Class, I mean like the following class: Mage_Sales_Model_Mysql4_Order_Collection

Magento »

[3 Apr 2012 | No Comment]

Scenario: I moved a Magento shop from one sever to another. And, I am having the following problems:- – The CSS and Javascript files are not loading properly in admin section. However, the frontend section is working fine. When I view the source code, I see that the CSS path is not the full skin [...]

Magento »

[19 Mar 2012 | No Comment]

Here is a quick tip to add OR query and AND query to collection object. I am implementing this on product collection. Getting product collection

Magento »

[5 Mar 2012 | No Comment]

Module Creator helps in building basic module structure in Magento. It can be used as a standalone application or a Magento module in the process of creating a new Magento module. You can download and find more about it here: http://www.magentocommerce.com/wiki/5_-_modules_and_development/0_-_module_development_in_magento/custom_module_with_custom_database_table

Magento »

[1 Feb 2012 | 7 Comments]

Here is a quick code to get any product’s stock information like quantity (qty), minimum quantity (min_qty), stock availability (is_in_stock), minimum and maximum sale quantity (min_sale_qty and max_sale_qty), etc. First load the product. Product can be loaded in different ways. Here are the two different ways to load any product in Magento:-

Guest Post, Magento »

[16 Jan 2012 | One Comment]

Magento websites are powered by the open source tool of the same name, which has been specifically designed to build sites that are suited to expanding businesses. Magento’s modular architecture makes it easy for a site (and a business!) to start simple and grow in step with demand, rather than over reaching itself and running [...]

Magento »

[26 Dec 2011 | One Comment]

A demo store is where there are products but the order done by customer is not processed. If your website is in development mode then it is better to enable demo store notice. Enabling demo store notice in Magento is very simple. You just need to select an option in configuration settings in admin panel.

Magento »

[19 Dec 2011 | One Comment]

The Robots META Tag is meant to provide users who cannot upload or control the /robots.txt file at their websites, with a last chance to keep their content out of search engine indexes and services.

Magento »

[12 Dec 2011 | 2 Comments]

Here is a quick and useful code on getting actual price and special price of any product in Magento. The actual price is the real price assigned to the product and special price is the price after any discount is applied to the product. Loading Product

Magento »

[21 Nov 2011 | 4 Comments]

Here is the code to get ratings and reviews for any particular product. Displaying the ratings

Magento »

[14 Nov 2011 | 3 Comments]

Ogone is one of the leading European Payment Service Providers with more than 28.000 clients across 40 countries. Ogone is connected through certified links to more than 200 European banks/acquirers that enable handling of international payment methods like Visa, MasterCard, American Express, Diners Club and JCB as well as local ones like iDEAL and Machtigingen [...]

Magento »

[1 Nov 2011 | 3 Comments]

This article shows how to reindex Magento Data Programmatically (through code). You can manually reindex data from System -> Index Management. However, this article is concerned how this can be done through code/programming. Currently, there are 9 indexes. They are as under (with their respective key number):-

Magento »

[17 Oct 2011 | 7 Comments]

You can manually create CMS Pages in Magento from CMS -> Pages. Similarly, you can create Static Blocks from CMS -> Static Blocks. This article will show how to create CMS pages and Static blocks programmatically from code.