In the default layout the options and add-to-cart-button are called by
<?php echo $this->getChildChildHtml('container1', '', true, true) ?>
I would like to split the configurable options from the add-to-cart and quantity field to show them on a different position in my layout. Any ideas or ready to use workarounds?
container1
and rendered it directly in the view-Template or call the content withgetChildHtml
for the product options this would be$this->getChildHtml('product_options_wrapper')
. – Tother