Zen Cart Logo
Forums / Addon Templates / Responsive Sheffield Blue v2.0

Responsive Sheffield Blue v2.0

Views: 309,794

Results 861 to 880 of 1,514
27 Apr 2016, 11:36 AM
#861
frank18 avatar

frank18

Deceased

Join Date:
Nov 2007
Location:
Sunny Coast, Australia
Posts:
3,427
Plugin Contributions:
2

Responsive Sheffield Blue v2.0

rbarbour:

Frank, I have done it!

You can see it on v1.5.5 here.

Thanks mate, you wouldn't have the file set handy?? I am a bit under time pressure to get a site updated which uses this template. PM is ok.

27 Apr 2016, 11:55 AM
#862
adb34 avatar

adb34

Totally Zenned

Join Date:
Mar 2008
Location:
Brampton, Cumbria, United Kingdom, United Kingdom
Posts:
825
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

SilverHD:

adb34:

Maybe I should ask you since you are working on adding to the tabs......
I am getting know where very fast with adding another tab to the three that are already there. I cannot work out how it was done, so to be honest I have left it and started to fill my database with product. I will have to find another template as nobody is answering the questions on how to add a fourth or even a fifth tab to this template (I cannot see in this thread). If however 'Silver' I can work it out I will get back to you.

27 Apr 2016, 12:21 PM
#863
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Responsive Sheffield Blue v2.0

frank18:

Thanks mate, you wouldn't have the file set handy?? I am a bit under time pressure to get a site updated which uses this template. PM is ok.

Sent via PM

27 Apr 2016, 12:42 PM
#864
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Responsive Sheffield Blue v2.0

adb34:

I would like to add another tab to go with Description, Details and Reviews. I have found Tabbed Products Pro v1.20-for155. Would this interfere with this template or is there a better/easier way to do it?

SilverHD:

Sorry to hear that. I was hoping someone could/would help us.

Silver

Tabbed Products Pro works if installed correctly.

As far as adding tabs in:

/includes/templates/responsive_sheffield_blue/templates/tpl_product_info_display.php

find:

    <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:

<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:

                <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:

                <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

27 Apr 2016, 2:12 PM
#865
silverhd avatar

silverhd

Totally Zenned

Join Date:
Mar 2008
Location:
USA
Posts:
563
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

rbarbour:

Just wanted you to know that I received my answer from you on the Descriptions, Details, and Reviews tabs and everything is now fine and I thank you. The above explanation should help abd34 with adding tabs that he has been looking for, for so long. So thanks for that also.

My appreciation for all your help,

Silver

27 Apr 2016, 10:26 PM
#866
wmorris avatar

wmorris

Totally Zenned

Join Date:
Aug 2007
Location:
Amarillo, Tx
Posts:
1,675
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

I am experimenting in the Details tab.
I am adding Materials & Dimensions. This is what I have so far:

<?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_materials == 1 and $products_materials != '') or ($flag_show_product_info_dimensions == 1 and $products_dimensions != '') or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?>
<ul id="productDetailsList" class="floatingBox back">
  <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?>
  <?php echo (($flag_show_product_info_materials == 1 and $products_materials !='') ? '<li>' . TEXT_PRODUCT_MATERIALS . $products_materials . '</li>' : '') . "\n"; ?>
  <?php echo (($flag_show_product_info_dimensions == 1 and $products_dimensions !='') ? '<li>' . TEXT_PRODUCT_DIMENSIONS . $products_dimensions . '</li>' : '') . "\n"; ?>
  <?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT .  $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>'  : '') . "\n"; ?>
  <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>'  : '') . "\n"; ?>
  <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>

I have made a new sql for it I enter the information into the new Materials & Dimensions in the database itself and I can't get it to echo it out on the page.

28 Apr 2016, 2:43 AM
#867
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Responsive Sheffield Blue v2.0

This is not related to this template, I'll post in the thread you opened.

wmorris:

I am experimenting in the Details tab.
I am adding Materials & Dimensions. This is what I have so far:

<?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_materials == 1 and $products_materials != '') or ($flag_show_product_info_dimensions == 1 and $products_dimensions != '') or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?> <ul id="productDetailsList" class="floatingBox back"> <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_materials == 1 and $products_materials !='') ? '<li>' . TEXT_PRODUCT_MATERIALS . $products_materials . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_dimensions == 1 and $products_dimensions !='') ? '<li>' . TEXT_PRODUCT_DIMENSIONS . $products_dimensions . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?> ``` > > I have made a new sql for it I enter the information into the new Materials & Dimensions in the database itself and I can't get it to echo it out on the page.
28 Apr 2016, 7:34 PM
#868
albi1kenoby avatar

albi1kenoby

New Zenner

Join Date:
Feb 2016
Location:
France
Posts:
14
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Hi,
I have installed this fantastic template alon with "fast and easy checkout", but I have a couple of issues.
I am using v154 along with fec, the problems are;
1/title bar, the pages don't drop down when you hover over them
2/the catagories don't expand out to show sub catagories
3/i would like to change the colour but cant see the where in the css file where to go

I have read most of this thread (76 pages but cant see a reply)
here is my web page; http://www.brocante-de-france.com/index.php?main_page=about_us

please help
Regards Paul

28 Apr 2016, 7:35 PM
#869
albi1kenoby avatar

albi1kenoby

New Zenner

Join Date:
Feb 2016
Location:
France
Posts:
14
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Hi,
I have installed this fantastic template alon with "fast and easy checkout", but I have a couple of issues.
I am using v154 along with fec, the problems are;
1/title bar, the pages don't drop down when you hover over them
2/the catagories don't expand out to show sub catagories
3/i would like to change the colour but cant see the where in the css file where to go

I have read most of this thread (76 pages but cant see a reply)
here is my web page; http://www.brocante-de-france.com/index.php?main_page=about_us

please help
Regards Paul

29 Apr 2016, 1:52 PM
#870
allingeneral avatar

allingeneral

New Zenner

Join Date:
Apr 2016
Posts:
1
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

picaflor-azul:

Try removing the includes/templates/responsive_sheffield_blue/jscript/jscript_framework.php file

Thanks,

Anne
Hi. I just installed a fresh zen-cart 1.5.5 and winchester black template. I had the same JSON error when viewing the shopping cart, and moving this file seems to have at least stopped the error message. What functionality have I lost by moving this file?

30 Apr 2016, 7:42 PM
#871
phillyphoto avatar

phillyphoto

New Zenner

Join Date:
Oct 2009
Location:
Philly
Posts:
8
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Actuall it does turn off the tag line. The height of the header decreases when you drop the header search.

1 May 2016, 12:13 AM
#872
wmorris avatar

wmorris

Totally Zenned

Join Date:
Aug 2007
Location:
Amarillo, Tx
Posts:
1,675
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

I am still having a Layout issues with iPad2 why my logo and blue bar is overlapping image below for example:

1 May 2016, 1:48 AM
#873
shags38 avatar

shags38

Totally Zenned

Join Date:
Jan 2011
Location:
Adelaide, Australia
Posts:
1,684
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

rbarbour:

Sent via PM
G'day - I too am wanting to install this template on v1.5.5 - can you please PM me the script also.

cheers,
Mike

1 May 2016, 11:27 AM
#874
soxophoneplayer avatar

soxophoneplayer

Totally Zenned

Join Date:
Feb 2008
Posts:
534
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

wmorris:

I am still having a Layout issues with iPad2 why my logo and blue bar is overlapping image below for example:

Is your logo a different size than the example in the template set? I find changing size of basic design components may look good in one format but totally muck up another. I find it easier to resize my logo to the same size used in the template is a lot less work than fiddling with all the unintended consequences of changing it, especially in responsive templates where there are so many css files.

1 May 2016, 2:14 PM
#875
wmorris avatar

wmorris

Totally Zenned

Join Date:
Aug 2007
Location:
Amarillo, Tx
Posts:
1,675
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

soxophoneplayer:

Is your logo a different size than the example in the template set? I find changing size of basic design components may look good in one format but totally muck up another. I find it easier to resize my logo to the same size used in the template is a lot less work than fiddling with all the unintended consequences of changing it, especially in responsive templates where there are so many css files.

When I change back to 271X51 its still over lapping.

1 May 2016, 2:50 PM
#876
wmorris avatar

wmorris

Totally Zenned

Join Date:
Aug 2007
Location:
Amarillo, Tx
Posts:
1,675
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

When I change it to the default image size it came out to this on a Ipad 2:

2 May 2016, 5:40 PM
#877
azcomp avatar

azcomp

New Zenner

Join Date:
Feb 2010
Posts:
63
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Whitebear:

I don't know if this is a bug or not... but all pages in my admin 1.5.4 now display "Enabled Responsive Sheffield Blue Configuration Menu." as a green note at the top of each page.

I am having this problem too and I have uninstalled the template as I am no longer using it. Any suggestions?

3 May 2016, 12:30 AM
#878
frank18 avatar

frank18

Deceased

Join Date:
Nov 2007
Location:
Sunny Coast, Australia
Posts:
3,427
Plugin Contributions:
2

Re: Responsive Sheffield Blue v2.0

AZComp:

I am having this problem too and I have uninstalled the template as I am no longer using it. Any suggestions?

A fix for this has been posted much earlier in this thread.

3 May 2016, 12:53 AM
#879
shags38 avatar

shags38

Totally Zenned

Join Date:
Jan 2011
Location:
Adelaide, Australia
Posts:
1,684
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

likely is in a much earlier post however if someone could help me with which file determines which of the 'new products, featured products, specials' in the centre box loads when the home page loads - many thanks, Mike

3 May 2016, 1:37 AM
#880
wmorris avatar

wmorris

Totally Zenned

Join Date:
Aug 2007
Location:
Amarillo, Tx
Posts:
1,675
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

wmorris:

When I change it to the default image size it came out to this on a Ipad 2:

Anyone?