So then that will fix my issue?
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
Hi Anne,
I just installed your 1.3v of this really cool template over a new 1.5.3 ZC. I noticed that under "Configuration->Winchester Responsive Template Configuration" the values for Home "Page Slideshow" and "EZ Pages in Header Menu" were not showing and when editing these values, they were fill-in rather than radio options.
To fix both the display of the set values and using radio options rather than fill-in, I moved "zen_cfg_select_option(array('true', 'false')," from use_function to set_function in the configurations table for these settings.
Does this make since? Or am I off-base?
Thanks![]()
Experience is what you get when you don’t get what you want…