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

Responsive Sheffield Blue v1.0

Views: 219,570

Results 621 to 640 of 1,160
08 Apr 2014, 21:05
#621
grandpaj avatar

grandpaj

New Zenner

Join Date:
Sep 2010
Posts:
72
Plugin Contributions:
0

Responsive Sheffield Blue v1.0

picaflor-azul:

There are instructions for adding your logo and tagline in thre readme.html file included in the template package.

Thanks,

Anne

Hi Anne

Yes Ive changed the logo tag line.

What I am trying to do is to place an image/or color as a background for the whole header.

Hope this makes sense.

Many thanks
Grandpa

08 Apr 2014, 21:16
#622
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v1.0

grandpaj:

Hi Anne

Yes Ive changed the logo tag line.

What I am trying to do is to place an image/or color as a background for the whole header.

Hope this makes sense.

Many thanks
Grandpa

Most likely you will want to put it on the #headerWrapper

Thanks,

Anne

08 Apr 2014, 22:26
#623
grandpaj avatar

grandpaj

New Zenner

Join Date:
Sep 2010
Posts:
72
Plugin Contributions:
0

Re: Responsive Sheffield Blue v1.0

picaflor-azul:

Most likely you will want to put it on the #headerWrapper

Thanks,

Anne
Hi Anne

Did that, however I seem to have something wrong. So used to doing this sort of thing in Oscommerce.
Image
#headerWrapper{background: url("images/bg_content.jpg") no-repeat scroll 0;}
#contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #pop

Have also loaded image to /includes/templates/responsive_sheffield_blue/images
and also tried
#headerWrapper{background: url("/includes/templates/responsive_sheffield_blue/images/bg_content.jpg") no-repeat scroll 0;}
#contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #pop

Any thoughts.

Many thanks

John

09 Apr 2014, 00:14
#624
grandpaj avatar

grandpaj

New Zenner

Join Date:
Sep 2010
Posts:
72
Plugin Contributions:
0

Re: Responsive Sheffield Blue v1.0

grandpaj:

Hi Anne

Did that, however I seem to have something wrong. So used to doing this sort of thing in Oscommerce.
Image
#headerWrapper{background: url("images/bg_content.jpg") no-repeat scroll 0;}
#contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #pop

Have also loaded image to /includes/templates/responsive_sheffield_blue/images
and also tried
#headerWrapper{background: url("/includes/templates/responsive_sheffield_blue/images/bg_content.jpg") no-repeat scroll 0;}
#contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #pop

Any thoughts.

Many thanks

John

Hi Anne

Got it sorted. Had the code slightly wrong.

Cheers
Grandpa

09 Apr 2014, 16:33
#625
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v1.0

grandpaj:

Hi Anne

Got it sorted. Had the code slightly wrong.

Cheers
Grandpa

I am happy that you figured it out ;) It would be great if you posted your code so that if others have the same question they can find the answer.

Thanks,

Anne

13 Apr 2014, 13:05
#626
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: Responsive Sheffield Blue v1.0

I made some override customizations for a client's product_info page, placing those customizations in the /includes/templates/responsive_sheffield_blue/product_info/extra_main_template_vars directory. My client then reported that the following items were missing, but only on the product_info page:

  1. The shopping cart icon was missing in the header
  2. The payment icon was missing from the footer
  3. The social icons were missing from the left-side screen display
  4. The back-to-top icon was missing
    The issue is that this template's overrides make calls to the $template->get_template_dir function with the first parameter (the filename) set to an empty string ('') for those missing items. Since the product_info directory exists as part of the template's directory structure, that function finds the directory present and returns that directory so that, for instance, instead of attempting to load /includes/templates/responsive_sheffield_blue/images/cart.png, the template atempts to load /includes/templates/responsive_sheffield_blue/product_info//cart.png.

Following are the changes required to correct this behavior:

/includes/templates/responsive_sheffield_blue/common/tpl_footer.php, line 45

  <img src="<?php  echo $template->get_template_dir(FOOTER_PAYMENT_ICON,DIR_WS_TEMPLATE, $current_page_base,'images').'/'.FOOTER_PAYMENT_ICON; //-20140413-lat9-add FOOTER_PAYMENT_ICON as 1st parameter ?>"   alt="payments we accept" class="payments-image" /> 

/includes/templates/responsive_sheffield_blue/common/tpl_header.php, line 93

    <li><img src="<?php  echo $template->get_template_dir(HEADER_ICON_CART,DIR_WS_TEMPLATE, $current_page_base,'images').'/'.HEADER_ICON_CART; //-20140413-lat9-add HEADER_ICON_CART as 1st parameter ?>" alt="cart icon" class="cart-icon"  /><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo $_SESSION['cart']->count_contents();?> <?php echo HEADER_TITLE_CART_ITEMS; ?> - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a> | </li>
    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>

/includes/templates/responsive_sheffield_blue/common/tpl_main_page.php, lines 52, 58 and 80

<script src="<?php echo $template->get_template_dir('jquery.sidebar.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.sidebar.js'; //-20140413-lat9-add jquery.sidebar.js as 1st parameter ?>" type="text/javascript"></script>
          html: "<a href='<?php echo FACEBOOK; ?>' target='_blank' title='<?php echo FACEBOOK_TITLE; ?>'><img src='<?php  echo $template->get_template_dir(FACEBOOK_ICON,DIR_WS_TEMPLATE, $current_page_base,'images').'/'.FACEBOOK_ICON ?>' class='soico facebook-sh' alt='<?php echo FACEBOOK_ALT; ?>' /></a><a href='<?php echo TWITTER; ?>' target='_blank' title='<?php echo TWITTER_TITLE; ?>'><img src='<?php  echo $template->get_template_dir(TWITTER_ICON,DIR_WS_TEMPLATE, $current_page_base,'images').'/'.TWITTER_ICON ?>' class='soico twitter-sh' alt='<?php echo TWITTER_ALT; ?>' /></a><a href='<?php echo YOUTUBE; ?>' target='_blank' title='<?php echo YOUTUBE_TITLE; ?>'><img src='<?php  echo $template->get_template_dir(YOUTUBE_ICON,DIR_WS_TEMPLATE, $current_page_base,'images').'/'.YOUTUBE_ICON ?>' class='soico youtube-sh' alt='<?php echo YOUTUBE_ALT; ?>' /></a><a href='<?php echo PINTEREST; ?>' target='_blank' title='<?php echo PINTEREST_TITLE; ?>'><img src='<?php  echo $template->get_template_dir(PINTEREST_ICON,DIR_WS_TEMPLATE, $current_page_base,'images').'/'.PINTEREST_ICON ?>' class='soico pinterest-sh' alt='<?php echo PINTEREST_ALT; ?>' /></a><a href='<?php echo GOOGLE; ?>' target='_blank' title='<?php echo GOOGLE_TITLE; ?>'><img src='<?php  echo $template->get_template_dir(GOOGLE_ICON,DIR_WS_TEMPLATE, $current_page_base,'images').'/'.GOOGLE_ICON ?>' class='soico google-sh' alt='<?php echo GOOGLE_ALT; ?>' /></a><a href='<?php echo BLOG; ?>' target='_blank' title='<?php echo BLOG_TITLE; ?>'><img src='<?php  echo $template->get_template_dir(BLOG_ICON,DIR_WS_TEMPLATE, $current_page_base,'images').'/'.BLOG_ICON ?>' class='soico blog-sh' alt='<?php echo BLOG_ALT; ?>!' /></a>", // can be anything; 20140413-la9-Add 1st parameters to *all* get_template_dir calls
<script src="<?php echo $template->get_template_dir('back_to_top.min.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/back_to_top.min.js'; //-20140413-lat9-Add 1st parm to call ?>" type="text/javascript"></script>
13 Apr 2014, 21:16
#627
grandpaj avatar

grandpaj

New Zenner

Join Date:
Sep 2010
Posts:
72
Plugin Contributions:
0

Re: Responsive Sheffield Blue v1.0

picaflor-azul:

I am happy that you figured it out ;) It would be great if you posted your code so that if others have the same question they can find the answer.

Thanks,

Anne

#main-container {margin:20px auto 0 auto;background:#fff;text-align:left;vertical-align:top;-moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; border-top-left-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; border-top-right-radius: 5px;padding-bottom:50px;}
#headerWrapper{background: #1f4f7d url(../images/bg_content.jpg) repeat-x;
height:135px;
}

This worked for me.

Cheers
Grandpaj

15 Apr 2014, 01:31
#628
ikare avatar

ikare

New Zenner

Join Date:
Apr 2014
Location:
Singapore
Posts:
2
Plugin Contributions:
0

Re: Responsive Sheffield Blue v1.0

Hi Anne,

After my hosting company helped me installed the template, the site is showing a blue page at the moment. What could be wrong and how to fix it?

Thanks

Janelle

15 Apr 2014, 04:23
#629
grandpaj avatar

grandpaj

New Zenner

Join Date:
Sep 2010
Posts:
72
Plugin Contributions:
0

Re: Responsive Sheffield Blue v1.0

Hi

Can someone tell me please the correct way and size to load product images to Zen Cart.
As if I just upoad say an image 500px x 200px.Ive tried different sizes laod images to medium, large however with no success. If The impact of the image size has a dramatic impact on the GTmetrix score.

Many thanks
Grandpa

15 Apr 2014, 04:32
#630
rbarbour avatar

rbarbour

Totally Zenned

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

Re: Responsive Sheffield Blue v1.0

grandpaj:

Hi

Can someone tell me please the correct way and size to load product images to Zen Cart.
As if I just upoad say an image 500px x 200px.Ive tried different sizes laod images to medium, large however with no success. If The impact of the image size has a dramatic impact on the GTmetrix score.

Many thanks
Grandpa

Click Here -- >

15 Apr 2014, 13:49
#631
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v1.0

ikare:

Hi Anne,

After my hosting company helped me installed the template, the site is showing a blue page at the moment. What could be wrong and how to fix it?

Thanks

Janelle

Whenever you get a blank page or part of a blank page check your logs folder for errors and correct them.

Thanks,

Anne

16 Apr 2014, 15:38
#632
ikare avatar

ikare

New Zenner

Join Date:
Apr 2014
Location:
Singapore
Posts:
2
Plugin Contributions:
0

Re: Responsive Sheffield Blue v1.0

picaflor-azul:

Whenever you get a blank page or part of a blank page check your logs folder for errors and correct them.

Thanks,

Anne

Thanks for the reply. My web host told me he is getting these error in the logs which leads to the blank blue page.

16-Apr-2014 22:41:36] PHP Warning: require(includes/modules/sideboxes/languages_header.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/ikarecom/public_html/includes/templates/sheffield_blue/common/tpl_header.php on line 37
[16-Apr-2014 22:41:36] PHP Warning: require(includes/modules/sideboxes/languages_header.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/ikarecom/public_html/includes/templates/sheffield_blue/common/tpl_header.php on line 37
[16-Apr-2014 22:41:36] PHP Fatal error: require() [<a href='function.require'>function.require</a>]: Failed opening required 'includes/modules/sideboxes/languages_header.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/ikarecom/public_html/includes/templates/sheffield_blue/common/tpl_header.php on line 37

This can be an issue with the template installation. Please note that zen cart is a third party application which we are not complete familiar with. Hence, I would recommend you to consult it with your developer. You can refer the installation instruction for the theme here --> http://ikare.com.sg/sheffield_blue_readme.html#ione

~Quoted my web host.

As I am a code idiot and newbies, I could not understand all this. Hope you could help me.

Thanks a million.

Janelle

16 Apr 2014, 16:38
#633
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v1.0

ikare:

Thanks for the reply. My web host told me he is getting these error in the logs which leads to the blank blue page.

16-Apr-2014 22:41:36] PHP Warning: require(includes/modules/sideboxes/languages_header.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/ikarecom/public_html/includes/templates/sheffield_blue/common/tpl_header.php on line 37
[16-Apr-2014 22:41:36] PHP Warning: require(includes/modules/sideboxes/languages_header.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/ikarecom/public_html/includes/templates/sheffield_blue/common/tpl_header.php on line 37
[16-Apr-2014 22:41:36] PHP Fatal error: require() [<a href='function.require'>function.require</a>]: Failed opening required 'includes/modules/sideboxes/languages_header.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/ikarecom/public_html/includes/templates/sheffield_blue/common/tpl_header.php on line 37

This can be an issue with the template installation. Please note that zen cart is a third party application which we are not complete familiar with. Hence, I would recommend you to consult it with your developer. You can refer the installation instruction for the theme here --> http://ikare.com.sg/sheffield_blue_readme.html#ione

~Quoted my web host.

As I am a code idiot and newbies, I could not understand all this. Hope you could help me.

Thanks a million.

Janelle

This is not a problem with the template package. It looks like you have not uploaded all of the files in the template package, or have not uploaded them to the correct directories.

Thanks,

Anne

19 Apr 2014, 16:09
#634
golden_synergy avatar

golden_synergy

Zen Follower

Join Date:
Aug 2009
Location:
Westland, Michigan
Posts:
107
Plugin Contributions:
0

Re: Responsive Sheffield Blue v1.0

wyldside:

To fix the description bug, find the responsive.css file and change .content to .content1 on line 304 (last line).

This is the bug fix for the product Description not showing. This took a lot of time for me to find this so I thought I would repost it for others. Thank you wyldside. Great Template Anne.

19 Apr 2014, 19:08
#635
golden_synergy avatar

golden_synergy

Zen Follower

Join Date:
Aug 2009
Location:
Westland, Michigan
Posts:
107
Plugin Contributions:
0

Re: Responsive Sheffield Blue v1.0

I have successfully removed the 2 social media icons I do not need from the sidebar. There is now a gap in the sidebar that I would like removed. can anyone tell me if it is possible. Thanks in advance. https://www.classic-flatware.com

19 Apr 2014, 19:36
#636
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v1.0

Golden Synergy:

This is the bug fix for the product Description not showing. This took a lot of time for me to find this so I thought I would repost it for others. Thank you wyldside. Great Template Anne.

Yes, this bug has been documented and I posted a patch to fix it earlier in this thread.

A search of the forum, thread, or reading through the thread will find the posts related to the bug.

Thanks,

Anne

19 Apr 2014, 19:38
#637
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v1.0

Golden Synergy:

I have successfully removed the 2 social media icons I do not need from the sidebar. There is now a gap in the sidebar that I would like removed. can anyone tell me if it is possible. Thanks in advance. https://www.classic-flatware.com

Just edit the length in includes/templates/responsive_sheffield_blue/common/tpl_main_page.php in the social sidebar js code.

Thanks,

Anne

23 Apr 2014, 17:05
#638
debbie2014 avatar

debbie2014

New Zenner

Join Date:
Jul 2012
Location:
AZ USA
Posts:
59
Plugin Contributions:
0

Re: Responsive Sheffield Blue v1.0

Hi Anne I have a question? I am working on the store yet again and using this template .. I am up todate with the version of Zen Cart and have only a few plugins.

The site is http://dezertdezinez.com/workspace My question is about the categories showing up above the Bar at the top shown in the picture below Attachment 14005

Any help would be great .. I have done a couple of css things to try to get rid of the words there yet nothing seems to help .. so am asking to see if I can do something different

23 Apr 2014, 17:15
#639
debbie2014 avatar

debbie2014

New Zenner

Join Date:
Jul 2012
Location:
AZ USA
Posts:
59
Plugin Contributions:
0

Re: Responsive Sheffield Blue v1.0

Amending my previous post I figured out how to fix the items in the picture . I found out where they were in the css and changed the display from what it was to none and poof it was gone ..

23 Apr 2014, 17:43
#640
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Responsive Sheffield Blue v1.0

Debbie2014:

Amending my previous post I figured out how to fix the items in the picture . I found out where they were in the css and changed the display from what it was to none and poof it was gone ..

I am happy that you figured it out. It would be great if you posted your solution so that if others have the same question the can find the answer ;)

Thanks,

Anne