Page 125 of 152 FirstFirst ... 2575115123124125126127135 ... LastLast
Results 1,241 to 1,250 of 1518
  1. #1241
    Join Date
    Oct 2016
    Location
    Massachusetts
    Posts
    17
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by Zean View Post
    Hi John, thanks for sharing.
    What version of Zen Cart are you using?
    What version of Responsive Sheffield Blue V 2.0 are you using?

    I'm using Zen Cart 1.5.5a.
    I'm using Zen Cart 1.5.4 and Responsive Sheffield Blue v. 2.0.

  2. #1242
    Join Date
    Nov 2009
    Location
    Aransas Pass, TX
    Posts
    101
    Plugin Contributions
    1

    Default Re: Responsive Sheffield Blue v2.0

    Looking at the demo -> http://zenlyzen.com/responsive/index...sheffield_blue <- the menu [New Specials Featured] "Featured" disappears when the page is shrunk. Actually it drops to the second line, but the menu bar does not expand to compensate.

    I am looking at the different templates for a good responsive template. Most work OK with the iPhone. Android sucks the big one, but a lot of people go with it anyway, so I am looking for templates that play nice with Android.

    Has this been fixed and the demo is just an older version?

  3. #1243
    Join Date
    Dec 2015
    Posts
    9
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by 2marco View Post
    I am having some issues with position of the banner in the header slide show. It appears mostly in chrome, not in IE or firefox.
    See the images below.Attachment 16028Attachment 16029

    The images showing the demopage from this template, but I am suffering from it on my own (current local) installation as well.

    But I see other online examples using the same templates who dont.
    http://onlinetest.batterybg.com/fres...ain_page=index

    Any Idea?
    I am having the exact same issue on my web site! The slideshow text appears in Chrome as it does in 2Marco's screenshots. I didn't see a reply that solves Marco's problem though. Did anyone manage to solve it? I have tried playing around with the CSS but with no success. My web site is battleaxegames.com. Thanks!

  4. #1244
    Join Date
    Aug 2010
    Location
    Israel
    Posts
    285
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue v2.0

    This thread is for the template Responsive Sheffield Blue v2.0
    and your demo link is for V1.
    Here is the link to v2.0: Linklink

  5. #1245
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,294
    Plugin Contributions
    125

    Default Re: Responsive Sheffield Blue v2.0

    Note on some things I found:

    a) This template uses the ACCOUNT_TELEPHONE field, which is not part of Zen Cart. You can add it from Tools-> Install SQL Patches as follows:

    Code:
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Telephone Number', 'ACCOUNT_TELEPHONE', 'true', 'Display telephone number field during account creation and with account information', '5', '8', 'zen_cfg_select_option(array(\'true\', \'false\'), ', now());
    b) If you define HEADER_SALES_TEXT as empty in includes/languages/english/responsive_sheffield_blue/header.php, then the top part of the header is messed up. So you need to define this field.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  6. #1246
    Join Date
    Dec 2015
    Posts
    9
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by EmmaThePoly View Post
    I am having the exact same issue on my web site! The slideshow text appears in Chrome as it does in 2Marco's screenshots. I didn't see a reply that solves Marco's problem though. Did anyone manage to solve it? I have tried playing around with the CSS but with no success. My web site is battleaxegames.com. Thanks!
    After having another stab at messing around with the CSS, I -think- I've fixed it. In the stylesheet_flex.css file in the CSS folder, I removed a couple of the banner attributes, namely the margin which was set at something weird like -300 and something pixels. Still testing on different platforms to see if that created any new problems....

  7. #1247
    Join Date
    Oct 2011
    Posts
    4
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    I would like to remove the "Information" drop down menu from Sheffield 2.0. I was able to hide the "brands" and "customer service" links but not the "Information" drop down.

    Any help would be greatly appreciated.
    Thanks

  8. #1248
    Join Date
    Oct 2011
    Posts
    4
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by johnemaher View Post
    I'm trying to remove some elements like brands and about us, but the above does not work. In fact, the brands-li does not appear to be present, so perhaps things have changed since the posting. Can anyone direct me to where these items can be suppressed? (I should be explicit and say that it's the ribbon menu that I'm trying to change.)

    Thanks.

    John

    the above worked for me, without any problems. However you have to add the brands chunk since it is not there. The only problem I am having now is removing the "Information" link. The above edit doesn't work for this

  9. #1249
    Join Date
    Apr 2015
    Location
    United States
    Posts
    144
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by rbarbour View Post
    Tabbed Products Pro works if installed correctly.

    As far as adding tabs in:
    Code:
    /includes/templates/responsive_sheffield_blue/templates/tpl_product_info_display.php
    find:
    PHP Code:
        <nav>
                <ul>
                    <li><a href="#section-1" class="icon-description"><span><?php echo HEADER_TITLE_DESCRIPTION?></span></a></li>
                    <li><a href="#section-2" class="icon-details"><span><?php echo HEADER_TITLE_DETAILS?></span></a></li>
                    <li><a href="#section-3" class="icon-reviews"><span><?php echo HEADER_TITLE_REVIEWS?></span></a></li>

                </ul>
        </nav>
    for every new tab add:
    Code:
    <li><a href="#section-4" class=""><span><?php echo 'My New Tab'; ?></span></a></li>
    befor the </ul> tag, #section-4 should increase for every new tab, #section-5, #section-6 and so on

    thin find:
    PHP Code:
                    <section id="section-3">
    <!-- added for dgReview on product page -->
        <?php require($template->get_template_dir('tpl_dgReview.php'DIR_WS_TEMPLATE$current_page_base,'templates'). '/' 'tpl_dgReview.php');?>
    <!-- added for dgReview on product page -->
    </section>
    for every tab created above a section needs to be created:
    PHP Code:
                    <section id="section-4">

    <?php echo 'Contents of My New Tab 4'?>

                    </section>
    before the 2 </div> tags, section-4 should increase for every new tab, section-5, section-6 and so on
    Hello rbarbour,

    I just wanted to say thank you for your excellent post. I made the changes to my tpl_product_info_display.php file and it works great.

    Thanks again,

    Frank

  10. #1250
    Join Date
    Oct 2011
    Posts
    4
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by johnemaher View Post
    I'm trying to remove some elements like brands and about us, but the above does not work. In fact, the brands-li does not appear to be present, so perhaps things have changed since the posting. Can anyone direct me to where these items can be suppressed? (I should be explicit and say that it's the ribbon menu that I'm trying to change.)

    Thanks.

    John
    I tried this on version 1 and it didnt work. It works on 2.0

 

 

Similar Threads

  1. v151 Responsive Sheffield Blue v1.0
    By picaflor-azul in forum Addon Templates
    Replies: 1159
    Last Post: 23 Apr 2023, 01:20 AM
  2. 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
  3. v154 Responsive Sheffield Blue change menu links
    By Annie_zaz in forum Addon Templates
    Replies: 3
    Last Post: 7 May 2016, 11:33 PM
  4. v154 Responsive Sheffield Blue v.2.0 Pricing not showing
    By SilverHD in forum Addon Templates
    Replies: 13
    Last Post: 4 Nov 2015, 10:57 PM
  5. v154 Questions re: Responsive Sheffield Blue
    By dfontana in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 14 Aug 2015, 02:43 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR