Wednesday, March 21, 2012

REMOVING FACEBOOK COMMENT PLUGIN WARNING


My problem solved by adding a forward slash "/" in href attribute value.


<fb:comments href="http:www.mywebsiteurl.com/xyz/prodcuct.phtml/"  width="670" ></fb:comments>

Sunday, March 18, 2012

REMOVING ERROR: llegal scheme supplied, only alphanumeric characters are permitted

HI, this error occured when i was installing magento 1.6 on the server. But the solution in the following post worked for me like charm.
All you have to do is
step1: clean your  cache i.e. var/cache folder

step2: clean browser cookies

step3: download the attachment in the following post and upload the folder to your server.That's all.

http://www.danneh.org/2011/11/bug-magento-1-6-1-0-affecting-development-sites-base_url/ 

Friday, March 16, 2012

CREATING NEW TAB IN MAGENTO ADMIN

MAGENTO set default zoom level in unirgy store locator

This will work in case of unirgy store locator, if you have already  configured store locator and the map is successfully displaying store location.

You have to make small change in map.phtml

Here are the steps:



1.Go to frontend/default/default/template/unirgy/storelocator

2.In function searchLocationsNear() you will see  map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds));

3.just change  map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds)); 
                          To  
map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds)-5);  //I used 5 here , you can user any no. u want acording to the zoom level.

Wednesday, March 7, 2012