I'm looking for help with a rather frustrating Magento issue I can't seem to get my head around.
On our Magento site we have several Bundled Products. These work fine etc but all the items of the Bundled Product are displayed on the page; it makes the page unnecessarily long & the list isn't need as the items are fixed, customers can not change or edit any of the items.
Ideally what I would like to do is stop those items being displayed so it looks more like a normal product page.
I have tried editing the view.phtml file located in:
app/design/frontend/default/my_theme/template/catalog/product/
I found the following blocks of code:
<?php if ($_product->isSaleable() && $this->hasOptions()):?>
<?php echo $this->getChildChildHtml('container1', '', true, true) ?>
<?php endif;?>
<?php if ($_product->isSaleable() && $this->hasOptions()):?>
<?php echo $this->getChildChildHtml('container2', '', true, true) ?>
<?php endif;?>
When the 'container2' lines are removed, it does remove the list of bundled items but also removes the 'Add to cart' button too.
Would appreciate any help on this as I haven't been able to resolve this issue using Google Sensei.