Page 1 of 2 12 LastLast
Results 1 to 10 of 953

Hybrid View

  1. #1
    Join Date
    Jul 2014
    Location
    USA
    Posts
    10
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    So then that will fix my issue?

  2. #2
    Join Date
    Dec 2010
    Location
    UK
    Posts
    1,771
    Plugin Contributions
    3

    Default Re: Winchester Responsive

    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

  3. #3
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by picandnix View Post
    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:

    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

  4. #4
    Join Date
    Dec 2010
    Location
    UK
    Posts
    1,771
    Plugin Contributions
    3

    Default Re: Winchester Responsive

    Quote Originally Posted by picaflor-azul View Post
    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

    In a word, Anne: Perfect!! Thank you

  5. #5
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by picandnix View Post
    In a word, Anne: Perfect!! Thank you
    No problem

    Thanks,

    Anne

  6. #6
    Join Date
    Nov 2004
    Posts
    364
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    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…

  7. #7
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by kwright View Post
    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
    Thank you for posting ;) I'll check this out and post back.

    Thanks,

    Anne

  8. #8
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by KNERD View Post
    So then that will fix my issue?
    What issue?

    Thanks,

    Anne

  9. #9
    Join Date
    Jul 2014
    Location
    USA
    Posts
    10
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    Quote Originally Posted by picaflor-azul View Post
    What issue?

    Thanks,

    Anne

    The issue I posted about in the page previous to this one

  10. #10
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by KNERD View Post
    The issue I posted about in the page previous to this one
    If you post your question again I can take a look.

    Thanks,

    Anne

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v154 Winchester Black Responsive Template
    By picaflor-azul in forum Addon Templates
    Replies: 497
    Last Post: 24 Apr 2023, 09:29 PM
  2. v155 Winchester Black responsive - looking for Social media icon flexible footer fix
    By MattA66 in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 8 Jun 2021, 05:34 PM
  3. v155 Responsive Classic vs Responsive Sheffield Blue vs ?
    By Zean in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 13 May 2016, 07:01 AM
  4. v154 Where do I find the images for sliders, using Winchester Responsive Black
    By zbdude in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 3 Apr 2016, 12:00 AM
  5. v153 Winchester Responsive - Trouble resizing carousel size?
    By hols.club in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 26 Nov 2014, 05:09 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg