I want to call the size options, that is currently residing in 'options.phtml' into 'media.phtml' since I have a specific block that I need it to sit into.
I have tried copying and pasting the entire 'options.phtml' page into the block in 'media.phtml' but it didn't work. I also tried calling 'options.phtml' from 'media.phtml' with the following:
<?php echo $this->getLayout()->createBlock('core/template')->setTemplate('options.phtml')->toHtml(); ?>
but that also didn't work. I then tried moving the block '/options.phtml' in catalog.xml to appear just after 'media.phtml' but I lost all the labels on my radio buttons (I only had the buttons).
Any idea how to do this?