Site Menu
Categories
Latest Comments
Subscribe
Get all of our site updates delivered directly to your inbox by subscribing to our RSS feed below:
Popular Tags 500 error
Access Denied
admin login
admin panel
attributes
BASE URL
block hints
blocks
Blog
brand listing
brands
Cache
category listing
checkout
CMS
Google Analytics
Google Analytics in Magento
htaccess
InnoDB
Lightbox
localhost
magento
Magento-upgrade
Magento Blog
Magento Cleanup Tool
Magento Connect Manager
Magento htaccess
manufacturer
Menu
multi address
MySQL
Pages
path hints
PHP
product
quantity
Sample Data
Server
shipping
spped up magento
Static Blocks
Template
theme
WAMP
XAMPP
Archive for the ‘Magento Tips & Tricks’ Category
-
Change Simple Products into Downloadable Products in Magento
If you have accidentally made your product as Simple Product, but you wanted them to be Downloadable Product, then all you need to do is, goto catalog_product_entity table in the database. Browse the data there and change the "type_id" field for all the data there. Simply replace "simple" with "downloadable". Thats all. You are done. ...
-
Change Simple Products into Virtual Products in Magento
If you have accidentally made your product as Simple Product, but you wanted them to be Virtual Product, then all you need to do is, goto catalog_product_entity table in the database. Browse the data there and change the "type_id" field for all the data there. Simply replace "simple" with "virtual". Thats all. You are done. ...
-
Front controller reached 100 router match iterations Trace
If you are getting such error , "Front controller reached 100 router match iterations Trace" Just change your admin path in the app/etc/local.xml and then clear your cache....
-
Magento Admin Redirecting back to Login Screen
If your Magento admin is redirecting you back to login screen always, then here is a fix for that. Clear your cache. Check your Cookie setting in core_config_data under the value web/cookie/cookie_domain ...
-
Remove Compare Products from Magento CMS Sidebar
If you are looking to hide your Magento Compare Products module on any of your CMS page, then here is how to do that : 1. Goto your CMS Page > Design > XML Layout Update 2. Paste this code, [php]<action method="unsetChild"><name>catalog.compare.sidebar</name></action>[/php] 3. Clear cache and refresh....
-
Remove Magento Cart from CMS Sidebar
If you are looking to hide your Magento Cart module on any of your CMS page, then here is how to do that : 1. Goto your CMS Page > Design > XML Layout Update 2. Paste this code, [php]<action method="unsetChild"><name>cart_sidebar</name></action>[/php] 3. Clear cache and refresh....
-
Magento Newsletter on a CMS Page
If you are looking to include Magento newsletter on a CMS page, then here is the code to paste : [php]{{block type="newsletter/subscribe" template="newsletter/subscribe.phtml"}}[/php]...
-
Change Layout for Magento Returns Page
Magento has a nice feature of Returns feature page, but it comes in 1 column layout. if you would like to change it, then just goto , layout/sales.xml of your template folder. And change it here, [php]<sales_guest_form translate="label"> <label>Returns</label> <reference name="root"> <action method="setTemplate"><template>page/2columns-left.phtml</template></action> </reference> </sales_guest_form>[/php]...


