Posts

Responsive Design View In Mozila

To enable the Responsive Design View: On the Tools menu, choose Web Developer, and then Responsive Design View. On the keyboard, press ctrl-shift-M on Windows or Linux, or cmd-option-M on Macintosh. To disable the Responsive Design View: On the Tools menu, choose Web Developer, and then Responsive Design View. On the keyboard, press Esc. While the Responsive Design View is enabled, you can continue browsing as you normally would in the resized content area.

Remove Currency Selector in Magento

Go to app/design/frontend/default/{Your theme}/template/page/html/header.phtml search for the text $this->getChildHtml('currencyTop') and disable it by commenting. Now refresh your page and check out the result.

Removing Vertical Scroll bar from custom fan page tab

In your App Settings: Canvas width:  Fluid Canvas height:  Fluid Page Tab Width:  Normal   Just Put the following Code after body tag of your html <div id="fb-root"></div> <script>       window.fbAsyncInit = function() {         FB.init({     appId  : 'XXXXXXXXXXXXX',     status : true, // check login status     cookie : true, // enable cookies to allow the server to access the session     xfbml  : true, // parse XFBML     oauth  : true // enable OAuth 2.0         });         //FB.Canvas.setAutoResize(); depreceated             FB.Canvas.setAutoGrow(1000);       };       (function() {     ...

How to add or integrate a Google Map (not sitemap) into a CMS page?

1) Go to the http://maps.google.com/ 2) Search your desired Location 3) Click the Link Button Beside the My Places Button 4) Copy The Paste Html to embed in website data from the input box 5) Create a folder in the magento root directory 6) I have named it map.html 7) Paste the copied data in the map.html file 8) Save the map.html file 9) As i wanted to show the map in the about-us page (CMS Page) 10) I have opened the about-us page from magento admin panel  11) From the page information open the content tab and click the html view of the content 12)  Call the map.html file as like as below 13) By writing the code 14) <IFRAME SRC="/map.html" width=620 height=400 FRAMEBORDER=0 SCROLLING=NO align="center">Call for directions.</IFRAME> 15) and save it !!!!!! 16) If you want to view the Google map in the contact us page then complete step 1 to step 8  first 17) Open file file 18) app/design/frontend/default/Themename/template/contacts/for...

Magento Recently Viewed Product With Image

/** In the derectory app/design/frontend/default/(Themename)/template/reports/product_viewed.phtml ***/ <?php if ($_products = $this->getRecentlyViewedProducts()): ?> <div class="block block-list block-viewed">     <div class="block-title">         <strong><span><?php echo $this->__('Recently Viewed Products') ?></span></strong>     </div>     <div class="block-content">         <ol class="mini-products-list" id="block-popular">         <?php foreach ($_products as $_item): ?>             <li class="item">                 <div class="product">                 <img class="produ...

Integrate Facebook Like In the Website

Go to the Page Link: https://developers.facebook.com/docs/reference/plugins/like/ In the Step 1 - Get Like Button Code URL to Like : Give Your Url To Like  and Press the Get The Code Button To Get Your Code...   Then Just Paste Your Code in y ou r Page where you want to show the like box