I am using Magento to build an eBooks site. For the release, we plan to have a number of free downloadable books. We were hoping that it would be possible to use the normal
You can loop through a list of your downloadable links and add a link for each one.
$links=Mage::getModel('downloadable/link') ->getCollection() ->addFieldToFilter('product_id',array('eq'=>$_product->getId())); foreach($links as $link){ echo "Download"; }