For the youtube videos, you will either add a custom field to the product info page, or you can install one of the youtube plugins and then add that code to another tab in the includes/templates/winchester_responsive/templates/tpl_product_info_display.php file. Now, looking at the file. You will add the name of your tab to the list:
Code:
<ul class="resp-tabs-list">
<li><?php echo HEADER_TITLE_DESCRIPTION; ?></li>
<li><?php echo HEADER_TITLE_DETAILS; ?></li>
<li><?php echo HEADER_TITLE_REVIEWS; ?></li>
<li>
<?php
//You will have to change 'SHOW_BANNERS_GROUP_SET9' for each different group you added to display the proper banners
if (SHOW_BANNERS_GROUP_SETCUSTOMTAB != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SETCUSTOMTAB))
{
if ($banner->RecordCount() > 0)
{
echo $banner->fields['banners_title'];
}
}?>
</li>
</ul>
and then your tab code between <div> and </div>
The easiest way to center the product image would be to remove the "back" class on the #productMainImage div ;)
Thanks,
Anne
Bookmarks