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

Responsive Sheffield Blue v2.0

Views: 309,679

Results 281 to 300 of 1,514
09 Aug 2015, 02:01
#281
angst avatar

angst

New Zenner

Join Date:
Dec 2008
Posts:
62
Plugin Contributions:
0

Responsive Sheffield Blue v2.0

picaflor-azul:

I would restore the tpl_modules_mobile_categories_tabs.php file to the original. If you want to hide the customer service drop down add this to your stylesheet.css file:

ul.slimmenu li.customer-service-li{display:none;}

> If you want to change the information drop down then you have to edit the tpl_modules_mobile_categories_tabs.php file.  If you remove an item be sure to remove the <li> and the matching </li>
> Thanks,
> Anne

Whoo hoo.   I got it.   Thank you.    

For anyone following along from a search in the future that wants to remove items from the top menu here is the solution that a brain like mine can understand.    
The path to the file we are talking about is 
includes/templates/responsive_sheffield_blue/css/stylesheet.css
in my example below I am going to remove both the about us and the customer service items from the top menu.  
in that file (stylesheet.css)   go to around line 356 and you will find the following code.  

ul.slimmenu li.aboutus-li ul li{width:600px;}
ul.slimmenu li.customer-service-li ul li{width:600px;}


replace that with 

ul.slimmenu li.aboutus-li {display: none;}
ul.slimmenu li.customer-service-li {display: none;}


notice that not only the display: none attribute was changed but also the ul li was taken out.   

Be sure to use 

/hidden note to yourself/

To leave a description of your changes and some keywords that will help you find it in a search later


The path to the other file we were talking to change what is in the dropdown is
includes/templates/responsive_sheffield_blue/templates/tpl_modules_mobile_categories_tabs.php


Thanks Anne, I thought I was never going to get this tackled.
09 Aug 2015, 02:15
#282
angst avatar

angst

New Zenner

Join Date:
Dec 2008
Posts:
62
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

LindaLou:

Re: Button: Go to product's detailed information. This is running to wide for my three column category pages.
I have been to Includes/languages/english/button-names.php and changed the 'Go to product's detailed information ' to 'Product Details' but that changed nothing.
I have looked for the button_goto_prod_details.gif in includes/template/responsive sheffield blue/.................heck I have looked in more files than I can remember and can't find the image file to change. When I use firebug I can alter the text so I would think I only need alter text somewhere. Any help would be most appreciated.
Ah ha. I might actually be able to help someone else.
I changed that myself to say "info/add".
What I did was use the developers tool kit in the admin. in the bottom field (look up in all files, php and css) with my search term 'go to product's detailed information'
and at the top of the page it will show the search result.
I think you are on the right track for the path.
includes/languages/english/button_names.php

The line you want is
Line #103 :

define('BUTTON_GOTO_PROD_DETAILS_ALT', 'the text that you would rather have goes here'); 
09 Aug 2015, 02:42
#283
lindalou avatar

lindalou

New Zenner

Join Date:
Nov 2013
Location:
USA
Posts:
16
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Appreciate the tip but I've already done that.

define('BUTTON_GOTO_PROD_DETAILS_ALT', 'Product Details');

There is also this line in that file:
Define('BUTTON_IMAGE_GOTO_PROD_DETAILS', 'button_goto_prod_details.gif'); line 52.

I don't understand why there would be an image file to something you can alter the text to. I spent a couple hours trying to find this image file to edit it. I never found it. I read that it could be found in Includes/templates/responsive sheffield blue/buttons/english but there is only one file there called: button_update_cart.gif.
Reading more I found instructions that if it's not found there it will be found in includes/templates/template_default/buttons/english/ but the file I find there titled: button_goto_prod_details.gif is not what is displayed on my site in or as the black box.

09 Aug 2015, 02:47
#284
lindalou avatar

lindalou

New Zenner

Join Date:
Nov 2013
Location:
USA
Posts:
16
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

The programmer that I enlisted to assist in updating my site says:
"the template language files are missing those defines. All files were uploaded. It will require adding those defines to the template language defines by hand"

Could you weigh in on this for me? I would think these files should be there in a new install.

picaflor-azul:

It looks like you have not uploaded all of the template files. Check the template package files against the files on your server to see what is missing.

Thanks,

Anne

09 Aug 2015, 05:21
#285
lruskauff avatar

lruskauff

Totally Zenned

Join Date:
Sep 2008
Location:
WA
Posts:
559
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Can you give us your site so we can see what you mean?

lruskauff

09 Aug 2015, 19:46
#286
lindalou avatar

lindalou

New Zenner

Join Date:
Nov 2013
Location:
USA
Posts:
16
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Yes, I'm sorry. I thought I had posted it.
https://www.notarycentral.net/notary

lruskauff:

Can you give us your site so we can see what you mean?

lruskauff

09 Aug 2015, 20:44
#287
angst avatar

angst

New Zenner

Join Date:
Dec 2008
Posts:
62
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

LindaLou:

Define('BUTTON_IMAGE_GOTO_PROD_DETAILS', 'button_goto_prod_details.gif'); line 52.
I don't understand why there would be an image file to something you can alter the text to. I spent a couple hours trying to find this image file to edit it. I never found it. I read that it could be found in Includes/templates/responsive sheffield blue/buttons/english but there is only one file there called: button_update_cart.gif.
Reading more I found instructions that if it's not found there it will be found in includes/templates/template_default/buttons/english/ but the file I find there titled: button_goto_prod_details.gif is not what is displayed on my site in or as the black box.

Sorry I didn't have the answer. I have had a lot of screen time since I made that change so it is kind of all a blur. I can tell you for sure though that I remember that I did not manipulate a gif at all. I found a line of code that I changed the text on. Hope that at least points you in the right direction until someone shows up in the thread that knows what they are doing.

LindaLou:

The programmer that I enlisted to assist in updating my site says:
"the template language files are missing those defines. All files were uploaded. It will require adding those defines to the template language defines by hand"
Could you weigh in on this for me? I would think these files should be there in a new install.
Your guy may be telling you that there are some old files that need to be merged with the new ones to get all the commands in that are supposed to be there so old add ons cooperate with new add ons or versions. When I upgraded I had that problem. The fast and easy cart module did not work, the same problem came up again when changing the template. In my case I had hired someone to help and he found the problem in /includes/templates/responsive_sheffield_blue/common/html_header.php where some code for css_jloader needed to be merged.

09 Aug 2015, 21:00
#288
lindalou avatar

lindalou

New Zenner

Join Date:
Nov 2013
Location:
USA
Posts:
16
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

I do really appreciate your help. It is a new install so there is nothing old hanging around to create issues. I did change the text where you explained but it didn't change anything. I laugh at you saying about being a blur. It's like ring around the rosey and you forget which places you stopped off at along the way. lol.

09 Aug 2015, 22:47
#289
bill367 avatar

bill367

New Zenner

Join Date:
Aug 2015
Location:
Dallas, Georgia
Posts:
2
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Default Re: Responsive Sheffield Blue V 2.0!
Hello,

I love this template. This is my first time setting up a zencart... The Responsive-Sheffield-Blue v2.0 looks great in Internet Explorer and Chrome, but is not working in Safari... shows blank screen... I am not sure when this started, so not sure where I made an error... please help... my site is https://www.bodhisblessing.com

Thank you,

Bill
Quick reply to this message Reply Reply With Quote Reply With Quote Multi-Quote This Message
8 Aug 2015, 09:31 PM #280 lruskauff's Avatar lruskauff lruskauff is online now
Zen Follower
Join Date
Sep 2008
Location
WA

Default Re: Responsive Sheffield Blue V 2.0!
Hi

I just pulled it up on Safari. It was very slow loading but came up. Not sure what to tell you.

lruskauff

Thank you!!! I am not sure, sort of reluctant to try, but would Enable GZip Compression help with this... Have not tried yet because it seemed to be working fine...

10 Aug 2015, 06:41
#290
lruskauff avatar

lruskauff

Totally Zenned

Join Date:
Sep 2008
Location:
WA
Posts:
559
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Hi

I went to your construction page and using Firefox's tools, I selected all of your CSS for stylesheet.css. Then I went to a similar page on the responsive demo site and selected all of her css and pasted it into your code. Your box problem is fixed.

So I would suggest loading her stylesheet.css back into your site and starting from there.

As for the button image (I didn't get to test because my system is down), I believe it takes the base part of the filename (before the .gif) and uses that to make the button. Try changing that part.

lruskauff

10 Aug 2015, 15:21
#291
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 v2.0

LindaLou:

The programmer that I enlisted to assist in updating my site says:
"the template language files are missing those defines. All files were uploaded. It will require adding those defines to the template language defines by hand"

Could you weigh in on this for me? I would think these files should be there in a new install.

Whoever you hired is wrong.

The button_names.php file has defines for both the button alt text as well as the button image name (just in case you do not have css buttons turned on). This is how zen does it natively.

Thanks,

Anne

10 Aug 2015, 15:22
#292
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 v2.0

angst:

Sorry I didn't have the answer. I have had a lot of screen time since I made that change so it is kind of all a blur. I can tell you for sure though that I remember that I did not manipulate a gif at all. I found a line of code that I changed the text on. Hope that at least points you in the right direction until someone shows up in the thread that knows what they are doing.

Your guy may be telling you that there are some old files that need to be merged with the new ones to get all the commands in that are supposed to be there so old add ons cooperate with new add ons or versions. When I upgraded I had that problem. The fast and easy cart module did not work, the same problem came up again when changing the template. In my case I had hired someone to help and he found the problem in /includes/templates/responsive_sheffield_blue/common/html_header.php where some code for css_jloader needed to be merged.

Just to clarify, the problem is not with the template. Whenever you install any plugin, if the plugin has the same files as the template, you need to merge the files.

Thanks,

Anne

10 Aug 2015, 15:23
#293
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 v2.0

LindaLou:

I do really appreciate your help. It is a new install so there is nothing old hanging around to create issues. I did change the text where you explained but it didn't change anything. I laugh at you saying about being a blur. It's like ring around the rosey and you forget which places you stopped off at along the way. lol.

My guess is that you are not changing the template override file or you are not overwriting the file on your server.

Thanks,

Anne

13 Aug 2015, 06:58
#294
pixbo avatar

pixbo

New Zenner

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

Re: Responsive Sheffield Blue v2.0

My website looks fine using Safari on Ipad and Iphone but on stationary PC and Mac with bigger screens Chrome is fine with full width but Firefox and Safari don't show full width. I have not done any changes to any width so perhaps this is a template default. Is it possible to always get full width? Thankful for help.
Link to my test-site http://swedenshop.biz/swedenstore_new/

/Per

13 Aug 2015, 14:30
#295
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 v2.0

pixbo:

My website looks fine using Safari on Ipad and Iphone but on stationary PC and Mac with bigger screens Chrome is fine with full width but Firefox and Safari don't show full width. I have not done any changes to any width so perhaps this is a template default. Is it possible to always get full width? Thankful for help.
Link to my test-site http://swedenshop.biz/swedenstore_new/

/Per

This is normal template behaviour. If you want to show the full width view at large monitor sizes you will need to make adjustments to the template. Look at the media query (min-width:1200px) and (max-width:1600px) in the responsive_default for a guide.

Thanks,

Anne

15 Aug 2015, 19:07
#296
hopedesigns avatar

hopedesigns

New Zenner

Join Date:
Apr 2006
Posts:
19
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

I just installed this version, and discovered that my site is now displaying the Buy Now buttons on the product listing pages. Since almost everything in my shop has attributes that need to be selected, I need to turn the buttons off on those pages. In my admin - config - product listing page, the option is already turned off.

15 Aug 2015, 22:34
#297
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 v2.0

hopedesigns:

I just installed this version, and discovered that my site is now displaying the Buy Now buttons on the product listing pages. Since almost everything in my shop has attributes that need to be selected, I need to turn the buttons off on those pages. In my admin - config - product listing page, the option is already turned off.

If customers click on the buy now button are they taken to the product info page?

Thanks,

Anne

15 Aug 2015, 22:36
#298
hopedesigns avatar

hopedesigns

New Zenner

Join Date:
Apr 2006
Posts:
19
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Yes. It goes to the right page. I'd just like to remove the button, but still have the price display. It looks like I can remove the button and the price, but not just the button.

16 Aug 2015, 00:36
#299
hopedesigns avatar

hopedesigns

New Zenner

Join Date:
Apr 2006
Posts:
19
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

On more question......sorry.

In Firefox, the top of the onerow-fluid class is cut off, which hides the cart links as well. That's the only browser I've noticed the issue with so far.

The site is https://www.hopeofmyheart.com.

Thanks.

16 Aug 2015, 14:52
#300
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 v2.0

hopedesigns:

Yes. It goes to the right page. I'd just like to remove the button, but still have the price display. It looks like I can remove the button and the price, but not just the button.

If you want to change the button text you can edit the includes/languages/english/responsive_sheffield_blue/button_names.php

Thanks,

Anne