I just submitted an update that is pending approval which fixes a bug in the auto installer so now the template package is fully compatible with version 1.5.3
Thanks,
Anne
So then that will fix my issue?
Hi Anne.
A couple of questions if I may please?
Firstly, a site that I have just started work on daisy dubois dot co dot uk on the product info page, my product image is not aligned centre to the grey background box, on your demo it (naturally) is. So I've done something wrong, a bad merge perhaps? I've compared my stylesheet to the packaged stylesheet, no variances.
Secondly, my client plans on creating a few youtube videos and would like to be able to embed and display them (per product) on the product info page in the Custom Tab. Is that possible please? I can of course add one video by adding the embed code via the banner manager, but of course it then displays the same video on all products.
Thank you very much in advance
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:
and then your tab code between <div> and </div>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>
The easiest way to center the product image would be to remove the "back" class on the #productMainImage div ;)
Thanks,
Anne
Bookmarks