IsBundle () in Magento?

How do you know if a product page is configured as a package in Magento 1.4? I can not find a way to do this.

+4
source share
2 answers

this code should work on your product page (catalog / product / view.phtml):

$product = $this->getProduct(); if($product->getTypeId() === 'bundle'){ // Something… } 
+16
source

if ($_product->getTypeId() == Mage_Catalog_Model_Product_Type::TYPE_BUNDLE) { echo 'Bundled'; }

+17
source

All Articles