Hello,
I have the techzone theme installed at recircle.nu
And i have an attribute called videoid with links for youtube videos.
I would like to create a new tab called “Video” on the products page.
<div class=”product-collateral”>
<?php echo $this->getChildHtml(‘product_additional_data’) ?>
<?php $attStuff= $_product->getData(); ?>
<?php if( !empty( $attStuff[‘videoid’] ) ): ?>
<div class=”video-box box-collateral”>
<h2><?php echo $this->__(‘Video’) ?></h2>
<div class=”box-collateral-content”>
<div class=”video”>
<iframe src=”<?php echo $attStuff[‘videoid’]; ?>” frameborder=”0″ allowfullscreen></iframe>
</div>
</div>
</div>
Something like that, can anyone help me with this?