We are moving to RWD Awesome theme which has tabs on the product page (additional info, reviews etc). We are using "who bought this also bought" and "who viewed this also viewed" modules from aheadworks. I can get these modules to show up as their own tabs on the product page like this:
<!--adding also viewed as a tab-->
<action method="addTab" translate="title"><alias>aw_alsoviewed_tab_list</alias><title>Also viewed</title>
<block>aw_alsoviewed/products</block><template>catalog/product/list/alsoviewed.phtml</template>
</action>
<!--adding also bought as a tab-->
<action method="addTab" translate="title"><alias>aw_related_tab_list</alias><title>Who bought also bought</title>
<block>relatedproducts/relatedproducts</block><template>catalog/product/list/awrelated.phtml</template>
</action>
However we would like to show all the upsell, related, also bought lists on a single tab. Can two modules share the same tab on a product page? I tried calling both blocks within the same "AddTab" method which just gave a white screen of death. Then I tried calling them seperately, but with a shared alias and title. This just added the first block twice in the same tab despite there being two seperate blocks. Any ideas how I could get these blocks to share a tab?
Thanks for any help.