Did you ever though that would be nice to have a blog in a Magento store?
The truth is you can have it.

It’s very simple. Once you upload the files to your magento installation (FTP) you’ll see a new tab called Blog.
Did you ever though that would be nice to have a blog in a Magento store?
The truth is you can have it.

It’s very simple. Once you upload the files to your magento installation (FTP) you’ll see a new tab called Blog.
When developing in Magento and playing arround with Magento Themes there is some functions you should know.
If you want to get the source url of an image, javascript or file, call one of this functions adding your own path at the end.
Under every function there is an example of the output value:
http://example.com/
http://example.com/js/
http://example.com/index.php/
http://example.com/media/
http://example.com/skin/
|
|
Today I’m gona show you how to retrieve the product attributes in your Magento site.
First of all go to Catalog -> Attributes -> Manage Attributes
Edit your attribute. Set Used in product listing to yes.

Do you want to remove the add to compare list in your Magento site?
There is only bad news to do that.
First of all there is no an easy-admin-button to turn it off. Yeah Magento rocks…
And of course you will have to to into some code. But don’t worry is quite simple.
Turn off the Magento Cache just to be sure the changes work. You can turn it on again once you’re done.
Reminder: System-> Cache Management
Open the app/design/frontend/deafult/YourTheme/layout/reports.xml
Look for and comment or delete this line:
And also this one:
After installing Magento locally I could not login to my Admin panel. Using the correct password it was just refreshing the login page every time.
Look for the file:
/app/code/core/Mage/Core/Model/Session/Abstract/Varien.php
Arroud the line 100:
Add bars to comment the line:
Now you will be able to login.