products

  1. Magento: Add Featured products on Magento frontpage

    Magento: Add Featured products on Magento frontpage

    In this blog I'm going to describe how to add a featured products on frontend in magento. Here I am portraying by what method would you be able to make an included item and demonstrate the...

    Read more »
  2. Magento: Getting Associated products of bundle products or displaying simple products of bundle products

    Magento: Getting Associated products of bundle products or displaying simple products of bundle products

    [php]
    $product_id=48;
    $bundled_product = new Mage_Catalog_Model_Product();
    $bundled_product->load($product_id);
    $selectionCollection = $bundled_product->getTypeInstance(true)->getSelectionsCollection(...

    Read more »