Skip Checkout in Magento for a downloadable product

前端 未结 3 1057
后悔当初
后悔当初 2020-12-03 05:56

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

3条回答
  •  星月不相逢
    2020-12-03 06:29

    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";
    }
    

提交回复
热议问题