Archive for the ‘Magento’ Category

Magento configuration to change site URL

In magento by deafult the configuration information for site management is kept in database table. The name of the table is ‘core_config_data’. If we analyze the tables we get that magento keeps its data in the following table. So if we want to develop our application in our localhost and then deploy the site in [...]

Continue reading »

How to remove callout section from magento?

For the modification of this block there are two ways in magento layout. They are pretty simple. Just try to follow the steps below.
1.To remove left callout follow the following steps:

Open app/design/frontend/default/default/layout/catalog.xml
Search for col_left_callout (default line 53)
Remove all of the following code:

<reference name=”left”>
<block type=”core/template” name=”left.permanent.callout” template=”callouts/left_col.phtml”>
<action method=”setImgSrc”><src>images/media/col_left_callout.jpg</src></action>
<action method=”setImgAlt” translate=”alt” module=”catalog”><alt>Our customer service is [...]

Continue reading »

how to hide wishlist link in magento?

In magento i think most of you are familiar with the top links section where wish list,my cart,log in etc are shown.But what if you need to hide one of the links. Usually is magento its being shown dynamically. Still it is possible to hide the link without editing the codes or any programming.
The trick [...]

Continue reading »