Tuesday 4 December 2012

How To call Shop By brand in magento


 first you make one phtml file path is app/design/frontend/base/default/template/catalog/navigation/vert_brand.phtml

put below code in this phtml file

<div class="leftbrand_menu">
             <?php
$product = Mage::getModel('catalog/product');
$attributes = Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter($product->getResource()->getTypeId())->addFieldToFilter('attribute_code', 'manufacturer');
$attribute = $attributes->getFirstItem()->setEntity($product->getResource());
$manufacturers = $attribute->getSource()->getAllOptions(false);
?>
<ul id="manufacturer_list"><?php foreach ($manufacturers as $manufacturer): ?>
<li><a href="<?php echo $this->getUrl('shop-by-brand')."?manufacturer=".$manufacturer['value'] ?>"><?php echo $manufacturer['label'] ?></a>
</li>
<?php endforeach; ?>   </ul>
            </div>

call this page in left side so open  catalog.xml file inleft part put below xml

<block type="catalog/navigation" name="catalog.vertnav" template="catalog/navigation/vert_brand.phtml" />

and after  make a cms page like brand

in this page in content part put below code

{{block type="catalog/product_list" template="catalog/product/shop_by_brand.phtml"}}

put identifier(url key) is shop-by-brand in the page.and last one make a another phtml page path is
         app/design/frontend/base/default/template/catalog/product/shop_by_brand.phtml

put below code

<?php
    $_productCollection=$this->getLoadedProductCollection();
    $_helper = $this->helper('catalog/output');
?>
<?php
    $bid = $_GET['manufacturer']; // the brand / manufacturer ID
    $products = Mage::getModel('catalog/product')->getCollection();
    $products->addAttributeToFilter('manufacturer', array('in' => array($bid)));
    $products->addAttributeToSelect('*');
    $products->load();   
    ?>





<div class="page-title category-title">
<h1><?php echo $this->__('Shop By') ?>
<?php $aaa = $_REQUEST['manufacturer']; ?>

<?php
$product = Mage::getModel('catalog/product');
$attributes = Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter($product->getResource()->getTypeId())->addFieldToFilter('attribute_code', 'manufacturer');
$attribute = $attributes->getFirstItem()->setEntity($product->getResource());
$manufacturers = $attribute->getSource()->getAllOptions(false);
foreach ($manufacturers as $manufacturer): ?>
<?php $bbb = $manufacturer['value'];

if($aaa  ==  $bbb)
{
echo $manufacturer['label'];
}
 ?>

<?php endforeach; ?> <?php echo $this->__('Brand') ?></h1>
</div>


<?php if(!$products->count()): ?>
<p class="note-msg">
<?php echo $this->__('There are no products matching the selection.') ?></p>
<?php else: ?>
<div class="category-products">


    <?php echo $this->getToolbarHtml() ?>
    <?php // List mode ?>
    <?php if($this->getMode()!='grid'): ?>
    <?php $_iterator = 0; ?>
    <ol class="products-list" id="products-list">
    <?php foreach ($products as $_product): ?>
        <li class="item<?php if( ++$_iterator == sizeof($products) ): ?> last<?php endif; ?>">
            <?php // Product Image ?>
            <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
            <?php // Product description ?>
            <div class="product-shop">
                <div class="f-fix">
                    <?php $_productNameStripped = $this->stripTags($_product->getName(), null, true); ?>
                   
                    <h5><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>"><?php echo $this->htmlEscape($_product->getName()) ?></a></h5>
                    <?php /*?><h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped; ?>"><?php echo $_helper->productAttribute($_product, $_product->getName() , 'name'); ?></a></h2><?php */?>
                    <?php if($_product->getRatingSummary()): ?>
                    <?php echo $this->getReviewsSummaryHtml($_product) ?>
                    <?php endif; ?>
                    <?php echo $this->getPriceHtml($_product, true) ?>
                    <?php if($_product->isSaleable()): ?>
                        <p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
                    <?php else: ?>
                        <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
                    <?php endif; ?>
                    <div class="desc std">
                    <?php echo nl2br($_product->getShortDescription()) ?>
                <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>"><small><?php echo $this->__('Learn More') ?></small></a>
                        <?php /*?><?php echo $_helper->productAttribute($_product, $_product->getShortDescription(), 'short_description') ?>
                        <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped ?>" class="link-learn"><?php echo $this->__('Learn More') ?></a><?php */?>
                    </div>
                    <ul class="add-to-links">
                        <?php if ($this->helper('wishlist')->isAllow()) : ?>
                            <li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
                        <?php endif; ?>
                        <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
                            <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
                        <?php endif; ?>
                    </ul>
                </div>
            </div>
        </li>
    <?php endforeach; ?>
    </ol>
    <script type="text/javascript">decorateList('products-list', 'none-recursive')</script>

    <?php else: ?>

    <?php // Grid Mode ?>

    <?php $_collectionSize = $products->count() ?>
    <?php $_columnCount = $this->getColumnCount(); ?>
    <?php $i=0; foreach ($products as $_product): ?>
        <?php if ($i++%$_columnCount==0): ?>
        <ul class="products-grid">
        <?php endif ?>
            <li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
                <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
                <?php /*?><h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a></h2><?php */?>
                <h5><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>"><?php echo $this->htmlEscape($_product->getName()) ?></a></h5>
                <?php if($_product->getRatingSummary()): ?>
                <?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
                <?php endif; ?>
                <?php echo $this->getPriceHtml($_product, true) ?>
                <div class="actions">
                    <?php if($_product->isSaleable()): ?>
                        <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
                    <?php else: ?>
                        <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
                    <?php endif; ?>
                    <ul class="add-to-links">
                        <?php if ($this->helper('wishlist')->isAllow()) : ?>
                            <li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
                        <?php endif; ?>
                        <?php /*?><?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
                            <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
                        <?php endif; ?><?php */?>
                    </ul>
                </div>
            </li>
        <?php if ($i%$_columnCount==0 || $i==$_collectionSize): ?>
        </ul>
        <?php endif ?>
        <?php endforeach ?>
        <script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd','even','first','last'])</script>
    <?php endif; ?>

    <div class="toolbar-bottom">
        <?php echo $this->getToolbarHtml() ?>
    </div>
</div>
<?php endif; ?>


Wednesday 21 November 2012

Quantity Box in the Category Products Listing Page in magento

Your Magento product ordering might seem a long process to some business owners, so we thought of making it simple, so that users can directly enter the quantity in the products listing area and click on ADD TO CART and checkout.
So, here is how you can do that.

Goto /app/design/frontend/default/your-theme/template/catalog/product/list.phtml
Open the file on a code editor and find this line,

<button type="button" title="<?php echo $this->__('Add to Cart') ?>" onClick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>

Just replace it with,

<form action="<?php echo $this->getAddToCartUrl($_product) ?>" method="post" id="product_addtocart_form_<?php echo $_product->getId()?>"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
  <?php if(!$_product->isGrouped()): ?>
  <label for="qty"><?php echo $this->__('Qty') ?>:</label>
  <input type="text" name="qty" id="qty" maxlength="12" value="<?php echo ($this->getMinimalQty($_product)?$this->getMinimalQty($_product):1) ?>" />
  <?php endif; ?>
  <button type="button" onClick="this.form.submit()"><span><span><span><?php echo $this->__('Add to Cart') ?></span></span></span></button>
</form>

Wednesday 31 October 2012

Magento : useful functions list

General functions

Function
$this->getRequest()->getServer(‘HTTP_REFERER’);

Product related functions

Function
$product->getName()
$product->getSku()
Mage::getModel(‘cataloginventory/stock_item’)->loadByProduct($_product)->getQty()
$product->getResource()->getAttribute(‘color’)->getFrontend()->getValue($product)
$product->isSaleable()
$product->isisAvailable()
Mage::getModel(‘catalogrule/rule’)->calcProductPriceRule($product,$product->getPrice())
$product->getTierPrice(1)

Newsletter related functions

Function
$subscriber = Mage::getModel(‘newsletter/subscriber’);
$subscriber->subscribe($user_mail);

Cache

Function
$tags = array(Mage_Catalog_Model_Category::CACHE_TAG); //Category block tag
Mage::app()->cleanCache($tags)

Product images

Function
$_product->getMediaGalleryImages()->getItemByColumnValue(‘label’, ‘LABEL_NAME’)->getUrl()

Customer related functions

Function
$this->helper(‘customer’)->isLoggedIn()

Magento: Very Useful Collection Functions

/**
 * Get Zend_Db_Select instance
 */
$collection->getSelect();
 
/**
 * Get collection size
 */
$collection->getSelect()->getSize();
 
/**
 * Get sql select string or object
 */
$collection->getSelect()->getSelectSql();
 
/**
 * Add select order
 */
$collection->getSelect()->setOrder($field, $direction);
 
/**
 * Add field filter to collection
 *
 * If $attribute is an array will add OR condition with following format:
 * array(
 *     array('attribute'=>'firstname', 'like'=>'test%'),
 *     array('attribute'=>'lastname', 'like'=>'test%'),
 * )
 */
$collection->getSelect()->setOrder($field, $condition);
 
/**
 * Set select distinct
 */
$collection->getSelect()->distinct($flag);
 
/**
 * Get all data array for collection
 */
$collection->getSelect()->getData();
 
/**
 * Reset loaded for collection data array
 */
$collection->getSelect()->resetData();
 
/**
 * Print and/or log query
 */
$collection->getSelect()->printLogQuery(true, true);
More functions below:-
Varien_Data_Collection_Db class extends Varien_Data_Collection class. Here are some more functions present in Varien_Data_Collection class:-
/**
 * Get current collection page
 */
$collection->getSelect()->getCurPage();
 
/**
 * Retrieve collection last page number
 */
$collection->getSelect()->getLastPageNumber();
 
/**
 * Retrieve collection page size
 */
$collection->getSelect()->getPageSize();
 
/**
 * Retrieve collection all items count
 */
$collection->getSelect()->getSize();
 
/**
 * Retrieve collection first item
 */
$collection->getSelect()->getFirstItem();
 
/**
 * Retrieve collection last item
 */
$collection->getSelect()->getLastItem();
 
/**
 * Retrieve collection items
 */
$collection->getSelect()->getItems();
 
/**
 * Clear collection
 */
$collection->getSelect()->clear();
You can also use the select functions as present in Zend_Db_Select class. This class file is present in lib/Zend/Db/Select.php

Tuesday 9 October 2012

Magento :: get URL paths for skin, media, Js OR base URL

If anyone of you facing problems to fetch the Magento URL paths of  skin, media, Js or simple base URL of Magento while customization/programming, then following lines should be helpful for you:
Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS);
//http://magento.demo/js/
Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK);
//http://magento.demo/index.php/
Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);
//http://magento.demo/media/
Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN);
//http://magento.demo/skin/
Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
//http://magento.demo/

Wednesday 26 September 2012

Change any page title in Magento

In page/html/head.phtml template replace default

<title>< ?php echo $this->getTitle() ?></title>
with
<title>
<?php echo ($this->getForcedTitle()) ? Mage::getStoreConfig('design/head/title_prefix').' '.$this->getForcedTitle().' '.Mage::getStoreConfig('design/head/title_suffix') : $this->getTitle() ?>
</title>


and now just set “forced” title for pages through layout files

<reference name="head">
<action method="setForcedTitle"><title>Account Dashboard</title></action></reference>
Example for My Account page in layout/customer.xml:
<customer_account>
<reference name="head">
<action method=”setForcedTitle”><title>Account Dashboard</title></action>
</reference>

</customer_account>

Remove ‘My Orders’ box in magento

Try to look into sales.xml:

<customer_account>
        <!-- 
Mage_Sales -->
        <
reference name="customer_account_navigation">
            <
action method="addLink" translate="label" module="sales"><name>orders</name><path>sales/order/history/</path><label>My Orders</label></action>
        </
reference>

    </
customer_account>

Friday 21 September 2012

Enable Template Path Hints in Magento

emplate Path Hints is the one of the most Use full Feature in Magento for the Magento Developer and Designer .It Helps to show the Phtml file's path.For example:- if you want to Modify header of a Magento template then Template Path Hints will help you to find the actual location where the Phtml file located. To show the Template Path Hints you need to
log in to the admin panel of your Magento site
Go to System tab ->From the drop down select Configuration
select Main website from the left top Current Configuration Scope
scroll down towards footer there you will find Developers -> Click on it and again scroll up to wards Header.
Expand the Debug Tab
Set Template Path Hints to Yes. Now got to your Frontend and refresh your page You will see all the path hints of your template

how to change theme in magento

To change theme of Magento you need to login to your admin panel.There is two way to change it
1) Go to System->Design .Click on Add Design Change ,there from Custom Design click on the DropDown to select your Design , then save it to change your theme
Change theme in Magento

2) Go to System->Configuration then click on Design,there from Themes Tab you can change your theme.Write your theme name in Templates and Skin (Images / CSS) Field. then click on save Config to save your theme.
Change theme in Magento

If you don't know you theme name then it is beter to choose First option,Because it is much easier than the second one.One more thing that if you have two store and you want to make 2 different Theme for that two store than you have to follow the first process.

Thursday 20 September 2012

How toGet Percentage of product on Special price in magento

<?php

       $price_f1 = ltrim(  Mage::helper('core')->currency($_product->getPrice(),true,false),'$');
    $price_f2 = trim(    Mage::helper('core')->currency($_product->getspecialPrice(),true,false) ,'$');
      
       $discount_total_p = number_format($price_f1-$price_f2,2);
       $percente_zz= number_format( $discount_total_p/$price_f1*100 ,0);
     $percente_xyz = $percente_zz.'%';
       if($price_f2!='0.00'){
       echo  $percente_xyz ;
     }
    ?>

Wednesday 19 September 2012

Image Gallery video in magento

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2/swfobject.js"></script>
<a name="ytplayer"></a>
<div id="ytplayer_div">You need Flash player 8+ and JavaScript enabled to view this video.</div>
<script type="text/javascript">
  swfobject.embedSWF(
    'http://www.youtube.com/v/INSERT_YOUTUBE_VIDEO_ID_1_HERE&enablejsapi=1&rel=0&fs=1',
    'ytplayer_div',
    '425',
    '344',
    '8',
    null,
    null,
    {
      allowScriptAccess: 'always',
      allowFullScreen: 'true'
    },
    {
      id: 'ytplayer_object'
    }
  );
</script>
<script type="text/javascript">
  function ytplayer_loadvideo( id ) {
    var o = document.getElementById( 'ytplayer_object' );
    if( o ) {
      o.loadVideoById( id );
    }
  }
</script>
<div>
<a href="#ytplayer" onClick="ytplayer_loadvideo( 'INSERT_YOUTUBE_VIDEO_ID_1_HERE' );"><img src="http://img.youtube.com/vi/INSERT_YOUTUBE_VIDEO_ID_1_HERE/default.jpg" /></a>
<a href="#ytplayer" onClick="ytplayer_loadvideo( 'INSERT_YOUTUBE_VIDEO_ID_2_HERE' );"><img src="http://img.youtube.com/vi/INSERT_YOUTUBE_VIDEO_ID_2_HERE/default.jpg" /></a>
<a href="#ytplayer" onClick="ytplayer_loadvideo( 'INSERT_YOUTUBE_VIDEO_ID_3_HERE' );"><img src="http://img.youtube.com/vi/INSERT_YOUTUBE_VIDEO_ID_3_HERE/default.jpg" /></a>
.
.
.
<a href="#ytplayer" onClick="ytplayer_loadvideo( 'INSERT_YOUTUBE_VIDEO_ID_N_HERE' );"><img src="http://img.youtube.com/vi/INSERT_YOUTUBE_VIDEO_ID_N_HERE/default.jpg" /></a>
</div>
 ************** end*****************
INSERT_YOUTUBE_VIDEO_ID_1_HERE like= gzDS-Kfd5XQ,il-_s2O3Qt8

Important link in magento

************please select name change in drop down**********
http://stackoverflow.com/questions/5163106/change-remove-please-select-message-from-custom-option-dropdown-on-magento
********************************************************************

********************************** Custom one page checkout****************
1=http://nightlyworker.posterous.com/magento-skip-shipping-and-payment-method-step
2=http://www.magentocommerce.com/boards/viewthread/19125/
3=http://winvinod.blogspot.com/2011/06/skip-shipping-method-from-onepage.html
***************************************************************************

***************************tab content link********************************
http://www.dynamicdrive.com/dynamicindex17/tabcontent.htm
*****************************************************************************

**********************wishlist link****************************************
<action method="addLink" translate="label title" module="wishlist" ifconfig="wishlist/general/active"><name>My Wishlist</name><path>wishlist/</path><label>My Wishlist</label><prepare/><urlParams/><position>30</position><li/><a>class="top-link-wishlist
s"</a></action>
********************************** window location*********************
print("<script>window.location='index.php'</script>");
***************************************************************************
***********************************all exention link**********************
http://visionwidget.com/inspiration/web/374-free-magento-extensions.html
**************************************************************************
********************************satic block call******************
  <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('contact_no')->toHtml(); ?>
**************************************************************************
***********************staic block call by Xml*******************
<block type="cms/block" name="suggest_product">
        <action method="setBlockId"><block_id>bestseller</block_id></action>
    </block>
******************************************************************

**********************category show with image*******************
http://hridaya.com.np/display-categories-with-images-on-homepage-in-magento/
*********************************************************************
***************************left catgory menu************************
http://www.magentocommerce.com/magento-connect/sidebar-navigation-menu-4554.html
**************************************************************************
*******************************particuler category show by id***************
http://stackoverflow.com/questions/5889593/magento-list-sub-categories-of-a-specific-parent-category-as-links
********************************Currency change with flag********************************
http://www.magentocommerce.com/magento-connect/magento-easy-catalog-images.html
*******************************************************************************
************************particuler category product show***************************
http://blog.magikcommerce.com/how-to-display-best-selling-products-on-magento-store-home-page/
*************************************************************************
***************************** banner extension**************************
http://www.magentocommerce.com/magento-connect/simple-banners.html
http://www.magentocommerce.com/magento-connect/multiple-banner-extension.html
http://www.magentocommerce.com/magento-connect/banner-slider-3912.html
***********************************************************************************
******************************socail link extension***************************
http://www.magentocommerce.com/magento-connect/Zizio/extension/6378/ziziogroupsale
******************************** facebook like button*******************8
http://www.magentocommerce.com/magento-connect/facebook-like-button.html
*********************************************************************
**********************order delete exention*******************
http://www.silvertouch.com/MagentoExtensions/
*********************************************************************
********************************order comment extension**********************
http://www.magentocommerce.com/magento-connect/catalog/product/view/id/10860/
*********************************************************************************
*******************************webshop martix rate***************************
http://www.magentocommerce.com/magento-connect/webshopapps-matrixrate-1-multiple-table-rates-extension-certified-bug-free.html
*****************************************************************************
**************************best selling categoty wise************
http://www.magentocommerce.com/magento-connect/bnm-best-selling-products-new-products-and-most-viewed-products.html
http://www.magentocommerce.com/magento-connect/bestseller-selected-on-category-id.html
*******************************************************************************
************************how to import and export category in magnto**********
http://www.bluehorse.in/amit-bera/bluehorse-stuffs/export-and-import-categories-in-magento/
http://blog.srmklive.com/2011/03/21/how-to-export-categoriessubcategories-from-x-cart-to-magento/
******************************************************************************
************************multiple image upload*****************
http://prattski.com/2009/10/09/magento-import-multiple-images-for-products-module/
http://www.consofas.com/blog/import-products-into-magento-with-multiple-images/
******************************************************************************
******************how to add custom filed in one page in magento*********
http://indiestechtips.wordpress.com/2011/07/30/how-to-add-custom-field-in-the-billing-and-shipping-address-of-onepage-checkout-in-magento/
***********************************************************************
*************************imoprtant extension link**************
http://www.magebuzz.com/magento-extensions.html?p=2
http://www.magentocommerce.com/magento-connect/webforms-community-edition.html
****************************************************
******************how to add custom moudlein magento*********
http://www.webspeaks.in/2010/08/create-your-first-adminbackend-module.html
**********************************************************
******************************facebook all in one*******
http://www.magentocommerce.com/magento-connect/magazento-all-in-one-facebook-widgets-integration.html
********************************************************************
**********************most view  product slider************
http://www.magentocommerce.com/magento-connect/product-slider-9077.html
**********************************************************************************
***************************select box convert ul li******************
http://stackoverflow.com/questions/6797684/convert-ul-to-select-w-optgroups
*********************************************************
*******************************category search link*******************
http://www.geekyplugins.com/magento/catalog-category-search.dot
***********************************************************************
***************************************price countdown******************
http://www.magentocommerce.com/magento-connect/price-countdown.html
********************************************************************************
***********************cart drop down extenion***********************
http://www.magentocommerce.com/magento-connect/sharplogicians-cart-drop-down-3832.html
******************************************************************************
*****************************catalog search extension**************************
http://www.magentocommerce.com/magento-connect/catalog-search-refinement.html
********************************************************************************
**************one page chekout***********************
http://www.magentocommerce.com/magento-connect/iwd-free-one-page-step-checkout-6454.html
**********************************************************************
**********************very vey impotant link********************
http://www.magentoworks.net/
http://ka.lpe.sh/category/magento-frontend/
*****************************************************
***********************Specail price tag in magrnto**************
http://www.pauldonnellydesigns.com/blog/magento-display-sale-icon-if-special-price/
***********************************8

Most Downloaded FREE Magento Extensions

MagentoConnect Manager 253356
Modern Theme 93723
Fontis WYSIWYG Editor 48093
Magento Community Modules – German (Germany) Language Pack 47591
Magento Community Modules – French (France) Language Pack 38250
Blue Skin 37507
Magento Classic Theme – 10 colors available ( Magento 1.4 compatible ) 29194
Blog Extension by aheadWorks 25920
Enhanced Admin Products Grid 22093
Delete Orders 18128
Vertical Navigation with CSS Classes 17828
mCommerce – iPhone Optimized Theme 17662
osCommerce Migration Tool 16487
Magento Easy Lightbox 16389
Fooman Speedster 16101
Bank Prepayment 15562
Market Ready Germany 15024
MagentoLiveChat 14352
Direct Resize 13311
Bestsellers module 12906
Gift Certificates / Cards 12846
Exploded Menu 12355
Magento Community Modules – Dutch (Netherlands) Language Pack 11468
Magento Community Modules – Spanish (Spain) Language Pack 10815
WebShopApps MatrixRate – The original multiple table rate solution – CERTIFIED BUG FREE 10778
Lazzymonks Blog 9823
Swekey Hardware Authentication 9586
Maintenance Page – ArtsOn.IT 9543
Mass Product Relater 9130
Magento jqZoom 8734
Navigation Bar administrator 8715
Free CMS/Block Frontend Features 8476
MostViewed module 8433
Canonical URL’s for Magento 8160
Blank Interface 7823
J2T Points & Rewards 7790
Magento Community Modules – Italian (Italy) Language Pack 7747
Magento Absolute Theme ( Magento 1.4 compatible ) 7714
Mxperts – jQuery Base 7528
Magento EasyTabs 7393
Lazzymonks WordPress Integration 2.61 7237
Free Magento Theme 7090
iDEAL extension 7076
BouncingOrange TinyMCE (WYSIWYG) 6877
Pickup at Event / Multiple Flatrates 6518
Remerce Product Question 6290
Order Status 6263
Yoast Blank SEO Theme 6124
Sage Pay Direct Payment Module (formerly ProTX) 6115
Magento Community Modules – Portuguese (Brazil) Language Pack 5921
Fooman Google Analytics Plus 5712
Customer Activation 5653
Owebia Shipping 1 5637
Pet store theme 5568
Teaserbox 5337
Customer Groups Configurable Catalog 5315
Simple Order Export 5120
Banner Slider 5098
Unofficial Dutch Language Pack 5074
FreePOP – Magento Theme 5062
Yoast MetaRobots 5053
Simple Configurable Products 5045
Attributes manager 5018
Multiple Tablerates 4793
Meanbee Royal Mail Domestic and International Shipping 4766
Customer Order Comment 4755
Flash Navigator + Admin Manager by Bysoft 4745
Advanced Smtp – ArtsOn.IT 4609
Fontis reCAPTCHA 4449
Magento Community Modules – Polish (Poland) Language Pack 4384
Checkout Newsletter 4315
Owebia Shipping 2 4264
Google Maps Store Locator 4260
Enhanced Search 4056
Magento Community Modules – Danish (Denmark) Language Pack 3841
Magento Community Modules – English (United Kingdom) Language Pack 3800
Fooman Invoice=Order Number 3754
Autocomplete Search 3693
Lazzymonks Twitter 3634
Terms and conditions for german shops 3508
Bankeinzug / Lastschrift (Debit Payment) 3471
Home Link 3450
sofortüberweisung.de 3330
ePay 3301
Linen Stretch Theme 3276
ATOS/Sips extension 3213
ModuleCreator 3137
Magento Community Modules – Russian (Russia) Language Pack 3094
Admin TinyMCE 3052
Metodo de pago Servired (La Caixa) 2996
Login only catalog 2991
PaymentFilter for Products and Customer Groups 2946
Protx Extension 2895
Mxperts – jQuery-Tools and Flowplayer 2881
WorldPay Extension 2811
Magento Core Modules German Language Pack 2787
Advanced Sitemap 2776
Lazzymonks Auto Apply Default Shipping For 1.1 2770
Swedish (Sweden) Language Pack 2743
Magento Social Bookmarking Services 2728
HM Modern Theme (White Skin) 2626
Catalog Sale Items 2614
TypoGento 2613
Magento Compiler 2584
Mxperts – NoRegion 2552
Magento Community Modules – Portuguese (Portugal) Language Pack 2540
Fooman Email Attachments 2539
Post Affiliate Pro Connector 2513
Flash Gallery ‘Flip’ and the new extension ‘CMS Content-Editor – FREE’ 2493
ClickandBuy 2483
CM-CIC p@iement (CyberMUT Paiement / Paiement CIC) 2428
MailChimp Synchronization 2424
Grundpreis-Modul (PAngV) 2411
Catalog New Items 2394
Admin Custom Shipping Rate 2354
Quick Contact – Free Frontend Version 2341
Girly Store Theme 2304
Category admin product tab : edit product link 2240
news 2200
Magento EasyFlags 2188
GoogleMaps Sales Report 2177
Lazzymonks Google Ads 2161
Magento Community Modules – Chinese Simplified (China) Language Pack 2155
Contra reembolso personalizado 2154
PAYONE Extension 2145
Nube de tags 2144
Magento Community Modules – Turkish (Turkey) Language Pack 2143
osCommerce fixed migration tool 2093
Addtoany social networking button 2087
Catalog-on-Demand® for Magento 2086
SingleFeed Export Module 2072
Customer Profile 2026
Vertical Sidebar Menu 1997
Category List 1979
Magento Core Modules French Language Pack 1975
eWAY extension 1972
CLS Upgrade-proof Email Templates 1947
BouncingOrange TinyBrowser (file uploader/manager) for TinyMCE 1920
Tweakmag Shipping 1908
Drupal 1885
Woopra for Magento 1862
SPPLUS Extension 1856
Admin order printing extension 1854
Dataflow Extension 1853
Image Clean 1834
Lazzymonks Quote Page 1825
Official Ogone Extension 1815
3D Advanced Tags Clouds based on WP-Cumulus + Admin manager by Bysoft 1791
Improved Catalog Search with Relevance Sort 1772
Clientes Online 1750
Robots 1738
Events Calendar 1696
SQLi Dashboard 1679
Czech Language Pack created by NoStress Commerce 1668
Fontis Campaign Monitor 1632
PRWD Auto Shipping 1590
Mxperts – CustomerAddress 1589
Latest Reviews 1587
MailChimp ECommerce360 Reporting 1586
YALC – Yet Another Live Chat 1491
Raffle 1481
Siam Blue Theme 1479
Scalena News 1443
1&1 ipayment 1384
Sofhere_SofTicket 1375
Textfield for Layered Navigation 1375
Magento Community Modules – Spanish (Mexico) Language Pack 1374
Best Selling Products Displayed IN ImageFlow Fashion 1344
Magento Easy Spotlight 1316
Auto Submit Product To Twitter 1309
Platnosci.pl (STO) 1307
Ogone Payment 1307
2Checkout.com payment module 1281
Cybersource Extension 1273
Visual Frames Share This 1266
Expeditor Inet 1262
Single Product Category Redirect 1236
Magento Community Modules – German (Switzerland) Language Pack 1203
Magento Community Modules – Romanian (Romania) Official Language Pack 1193
Red Theme 1190
One Pica Image CDN 1188
Sales Referrer 1187
Catalog Promoted Products Grid 1183
SQLi Reverse Cross-Selling 1178
Xajax Integration 1177
Correction TVA / VAT Patch 1174
Manual order export 1167
Outdoor Template 1164
HM Modern Theme (Brown Skin) 1163
MageConnector 1157
StrikeIron Extension 1148
Xmas Set 1144
MultiSafepay Payment Module 1139
Email Template Adapter 1135
Store Locator 1119
MagentoXtender – Import Multiple Products – VB.NET Webservice 1118
Customer Universal Password 1104
CMS Content-Editor – Browse & Edit 1099
Magento Community Modules – Greek (Greece) Language Pack 1097
FIA-NET Core 1075
PHP Excel Library 1068
J2T Auto Add to Cart 1046
CLS CategoryVisibility 1043
Commercial Extension Manager 1042
Picklist 1036
No Flash Image Uploader 1016
Facebook Connect Social Shopping 1003
Manufacturer Model Number (MMN) 996
Moduły wysyłki dla Lento.pl 986
Magento Community Modules – Hungarian (Hungary) Language Pack 981
Optimized Cart 974
LUKA Google AdWords Conversion Tracking 967
Romanian (Romania) Language Pack 966
Yoast Landing Pages 951
Magento Community Modules – Norwegian Bokmal (Norway) Language Pack 945
Internetkassa 940
Tangkoko & Fidesio CMS Search 929
Simple E-Catalog generator 914
Mageintern Shop Login Page 914
ASchroder.com SMTP Pro + Gmail/Google Apps Email 905
Magento Community Modules – Finnish (Finland) Language Pack 893
Magik Search Autocomplete 882
Fooman Fix for Non-Working Admin Menus 880
groupeReflect Product Image Deep Zoom 875
Ebizmarts Amazon orders 875
Free Basic template 858
Left Hand Manufacturer List 856
IW PayPal Standard Currencies 856
Magento Community Modules – Czech (Czech Republic) Language Pack 853
Debug Module 847
Customer Partner 845
free helloblank template 830
Open ERP connector by openlabs 797
Magento Mobile Theme 791
Brands Lite 788
We’re open 785
Editable Order 783
Magentweet : Widget Twitter for Magento 782
Edit configuration product in cart 766
Customer Group Switcher 735
Store wise Featured Products 733
Swiss Post Shipping 728
MageBridge for Joomla! 727
Nicer Image Names 726
Dibs Payment 720
FIA-NET ReceiveAndPay 714
PostFinance 712
Remerce CMS Meta Robots 708
Pagamento Digital 704
Realex Payments Module 698
Magento Community Modules – Catalan (Catalonia) Language Pack 682
Admintheme 681
J2T Remember Me Checkbox 662
Legal entity & natural person Romanian Addresses 660
Regional Free Shipping 658
Extension de Nacex 648
Request for a quote 647
Sitewards Business to Business Extension 643
ControlShipping 641
Magento Community Modules – Estonian (Estonia) Language Pack 635
Exactor Sales Tax Plug-in 630
Fontis New Zealand Extension 617
Magentoo ABC 616
Twitt your products! 615
Trusted Shops Buyer Protection 607
UK Postcode Address Finder 607
Magento Community Modules – Spanish (Argentina) Language Pack 595
Textile Formatting 591
Karma Quickaddtocart 590
CTT Expresso 590
Shipwire Order Fulfillment and Inventory (Deprecated) 579
Import category product and gallery 577
GoogleChat 572
Magento Link Directory 551
Shop by manufacturer/brand/character/etc – Attribute Info Pages 549
Admin Wiki 546
Shipping Adjustments – Core 530
Magento Community Modules – Slovak (Slovakia) Language Pack 527
Google Analytics Url/Overlay Fix (Not needed with 1.2.0.2+) 509
T-Shirt Designer 508
YML Export Module 504
Pedro Teixeira – Correios 503
Download Amazon Products and Orders 497
Send test newsletter 493
Klarna Payment Extension 493
Update order addresses 490
Seur 483
ASPerience CatalogRuleExtend 472
i-PAGARE – Gateway de pagamentos 469
Magento Community Modules – Bulgarian (Bulgaria) Language Pack 466
DIBS 465
Api Shipping Module 462
Magento Community Modules – French (Canada) Language Pack 461
A sample widget #1 458
Fontis SecurePay 455
Magento Community Modules – Lithuanian (Lithuania) Language Pack 454
Sage Pay Server 454
Tweakmag Payment 450
Newsletter Address Import 447
247topseller 1 Column Blue Theme 445
Magento Community Modules – Ukrainian (Ukraine) Language Pack 444
indonesiakurir 437
J2T TNT Module 429
Magento Community Modules – Romanian (Romania) Language Pack 424
Magento LinkPoint API Payment Module 424
Magento Community Modules Australian English Language Pack 421
Orion 420
Store Price 412
Cron Profiles 410
Online World Map 402
Magento Community Modules – Chinese Traditional (Taiwan) Language Pack 400
Magik Fees 400
Mxperts Tooltip 392
Blueprint Theme 389
VCS 381
Email Subscriptions 381
My Notifications 381
Prevent SPAM with Akismet 380
Currency management 376
IDEALIAGroup Ricarica PostePay 374
NoStress Connect 373
IKT Order Export 372
Magento Community Modules – Thai (Thailand) Language Pack 370
Exanto Heidelpay 367
Automatic DB Backups 366
NOIX CORREIOS 363
Magento Recycle Bin 362
Novalnet Payment Module 361
Improved search with weighted attributes 360
Fontis Paymate 360
Currency switcher style 359
QENTA QPAY 349
UOS Paymentmodule 348
Grouped product gallery 343
Free “Kalocsa” template 341
Magento Community Modules – Hebrew (Israel) Language Pack 338
ChronoPay extension 336
ASchroder.com Sitemap Submit 334
Alipay Payment Gateway(支付宝) – CosmoCommerce 332
Basic Bestseller Module 332
ASPerience HistorizeContacts 329
FIA-NET Système d’Analyse des Commandes 322
Embed This Product 320
Russia’s specific payment and shipping methods collection 316
econda Web Controlling 315
OrangeValley Google Analytics Optimized 312
Ajax based Alphabetical Search Module by Modulesoft 312
Productos de la tienda 308
Magento Community Modules – Slovenian (Slovenia) Language Pack 290
Fontis ANZ eGate 289
Magento Community Modules – German (Austria) Language Pack 289
Vendor Notifications 286
Integration tab required for polish price comparision sites 286
ExperCash – Kreditkarten- und Lastschriftzahlung, Giropay, Sofortüberweisung 282
NewFashionStore 280
Ogone 277
A sample widget #2 277
vBulletin Integration Lite 275
Fontis Commonwealth Bank CommWeb 273
Mxperts SkuRoute 266
Moip – Pagamentos Online 265
Flo2Cash Web Service extension 258
Magento Community Modules – Latvian (Latvia) Language Pack 255
MSemantic Basic 249
Magento Community Modules – Croatian (Croatia) Language Pack 249
Servired 244
SmartBuy.ro Feed 243
Magento Community Modules – Arabic (Saudi Arabia) Language Pack 243
BestSeller(Selected On Category ID) 243
Barclays ePDQ 241
Banlist extension for Magento 241
SQLi External Backend Integration 235
TeleSign Fraud Protection 235
Magento Community Modules – Indonesian (Indonesia) Language Pack 234
PaySimple 232
Cache Control by TinyBrick 231
Not translated Interface locale options 228
ASPerience AddressAutoComplete 227
Brazilian Regions 224
Magento FirePHP Extension 220
Portugal Regions (Distritos de Portugal) 220
Magentoo Getclicky Real time web analytics Integration 220
SecureTrading XPay Module 216
Catalog Products filter 214
Yireo Vm2Mage 211
Brazilian Email Templates 210
Automatic Links 208
Norwegian Configuration 207
Metodo de Pago CECA-TPV (Confederacion Espanola de Cajas de Ahorros) 205
Hardwood 205
Barclaycard ePDQ CPI payment module 204
Banque Populaire CyberP@iement 203
Cumulus Tagcloud 203
Pagos con tarjeta de crédito 202
Desired Delivery Date 201
Hostmonk NetTerms 201
Send Password Customer Admin 197
import product relations 195
Datatrans Paymentgateway 191
Amazon Payments 189
Cauti.ro feed 189
BBS Netaxept Norge 188
Matsiya Portal 188
Auguria Sponsorship 187
Fontis NAB Transact 187
didyoumean 186
C3 Invoice improver 185
Media Manager iframe in your Magento 183
Quickpay Payment Module 183
Disable Layered Nav Category Filter 175
Magento Community Modules – Arabic (Morocco) Language Pack 175
Buy X Get Lowest Free 173
ASPerience PrintOrderLines 167
Shipping Agent for Magento 167
Flickr Product Image Gallery 167
Custom Option Description 165
Romanian regions 165
SQLi Get a Quote 164
Quantum Gateway Transparent db engine 160
Qualitycit Database Utility 159
Radar.pl integration 156
Order in Multiples of X 156
mPAY24 Payment Gateway 154
Zippy Lightbox 154
Referral/Affiliate Module for Sweet Tooth 154
ReversoForm, le formulaire inversé 153
Magento Community Modules – Serbian (Serbia) Language Pack 150
System Information 149
SF9 PayOffline Payments Module 140
Docdata Payment Gateway 140
sitelogin 139
Cardgate Plus Payment Gateway 138
Magento Cockpit Webservice 138
Viet Nam Language Pack 134
Referência Multibanco Portugal (Ifthen) 133
J2T Geoloc 132
VmOrder for Vm2Mage 130
Echeck payment method (Authorize.net) 129
Payment Module: ECS Clearing Interface 128
One Pica AvaTax 125
Web-to-Print Store 125
Magento Community Modules – Persian (Iran) Language Pack 124
BeezUP pour Magento – Intégration des trackers et génération du flux 123
Tweakmag Product Redirector 121
Magento Community Modules – Vietnamese (Vietnam) Language Pack 121
Buckaroo 120
CyberCité Google Analytics Advanced Tracking 120
custom-field 118
creditPass 117
Argentine regions 115
Magento Installer 112
Official Wirecard Payment Module 112
AuIt JS-Cookies-Browser-Check 111
Mxperts Blaetterkatalog 111
News module 111
ASPerience ProductEstimate 110
Fontis St. George IPG 104
Piwik web analytics 103
Asperience Savecontacts 102
C3 EBP Connect 101
99Bill Payment Gateway(快钱) – CosmoCommerce 100
Catalog Cache 100
Mxperts NewsEmail 100
J2T Request login 99
InPay – pay with your online bank 99
ITIB Mass Import Product Relations, Upsell and Cross-Sell 98
etracker Web Analytics & Visitor Voice 96
ZEUS Payment module 1.0 for magento 94
janolaw AGB Hosting 91
Magento Community Modules – Norwegian Nynorsk (Norway) Language Pack 91
Patrasys Magento Version 1.1.2 91
epoq Recommendation Service Integration 88
Magoo.pl integration 86
Okazje.info integration 85
Category Review 85
Magento Community Modules – Arabic (Kuwait) Language Pack 85
Enobis Budget Module 85
SQLi Single Search Result 84
Magento_WebToPrint 84
Sweet Tooth Reward Points API 84
Bundle api 83
La Poste – Module de Livraison 82
Magento Community Modules – Basque (Basque) Language Pack 81
Mediafon Gateway 81
Load jQuery 77