Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / How can I solve this checkout issue?

How can I solve this checkout issue?

Locked

Views: 1,393

Results 1 to 9 of 9
This thread is locked. New replies are disabled.
14 Sep 2008, 1:28 AM
#1
jerryrice avatar

jerryrice

New Zenner

Join Date:
Jun 2008
Posts:
34
Plugin Contributions:
0

How can I solve this checkout issue?

During checkout, the customer is presented with a coice to add "Special Instructions or Order Comments"

How can I disable that option?

14 Sep 2008, 2:13 AM
#2
Kim avatar

Kim

Obaa-san

Join Date:
Jun 2003
Location:
West Coast, North America
Posts:
26,607
Plugin Contributions:
0

Re: How can I solve this checkout issue?

Turn it off by using CSS -

#comments {display: none;}

15 Sep 2008, 5:50 PM
#3
jerryrice avatar

jerryrice

New Zenner

Join Date:
Jun 2008
Posts:
34
Plugin Contributions:
0

Re: How can I solve this checkout issue?

wow thanks Kim!!!

15 Sep 2008, 10:41 PM
#4
jerryrice avatar

jerryrice

New Zenner

Join Date:
Jun 2008
Posts:
34
Plugin Contributions:
0

Re: How can I solve this checkout issue?

Kim, where is the css file that i need to edit?

Thanks

16 Sep 2008, 5:07 AM
#5
bobdog avatar

bobdog

Totally Zenned

Join Date:
Mar 2006
Location:
Fresno, California
Posts:
590
Plugin Contributions:
0

Re: How can I solve this checkout issue?

includes/templates/your_template/css/stylesheet.css

20 Nov 2009, 5:13 AM
#6
raunharman avatar

raunharman

Zen Follower

Join Date:
Dec 2005
Posts:
165
Plugin Contributions:
0

Re: How can I solve this checkout issue?

It worked onthe Shipping checkout page.
But the Comments box appears on the Payment checkout page.
Any help?

20 Nov 2009, 10:09 AM
#7
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: How can I solve this checkout issue?

Display your site in FireFox AFTER you have installed their web developer toolkit add-on.

Then use the tools in that add-on to identify style classes and id's on relevant pages.

Then apply Kim's solution to the stylesheet(s).

29 Jun 2010, 9:58 PM
#8
dfs_durham avatar

dfs_durham

New Zenner

Join Date:
May 2010
Location:
Durham, NC
Posts:
13
Plugin Contributions:
0

Re: How can I solve this checkout issue?

Not to hijack a thread, but...

I've got same issue and zero experience with css/stylesheets.

FF Firebug shows this code for the unwanted order instructions.

Current code:

<fieldset> <legend>Special Instructions or Order Comments</legend> <textarea rows="3" cols="45" name="comments"></textarea></fieldset>

Want to change to:

<!-- <fieldset> <legend>Special Instructions or Order Comments</legend> <textarea rows="3" cols="45" name="comments"></textarea></fieldset> -->

This works fine in the Firebug "preview" mode, but I can't find the actual code to edit in [/store/includes/templates/my_template/css/stylesheet.css].

Looking at stylesheet.css in A-GoLive...

  • 'CSS Definitions' tab: Wow... Confusing.
  • 'Source' tab: Don't see the code.

Any ideas?
Thanks.

30 Jun 2010, 9:31 AM
#9
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: How can I solve this checkout issue?

dfs_durham:

Not to hijack a thread, but...

I've got same issue and zero experience with css/stylesheets.

FF Firebug shows this code for the unwanted order instructions.

Current code:

<fieldset> <legend>Special Instructions or Order Comments</legend> <textarea rows="3" cols="45" name="comments"></textarea></fieldset>

Want to change to:

<!-- <fieldset> <legend>Special Instructions or Order Comments</legend> <textarea rows="3" cols="45" name="comments"></textarea></fieldset> -->

This works fine in the Firebug "preview" mode, but I can't find the actual code to edit in [/store/includes/templates/my_template/css/stylesheet.css].

Looking at stylesheet.css in A-GoLive...

  • 'CSS Definitions' tab: Wow... Confusing.
  • 'Source' tab: Don't see the code.

Any ideas?
Thanks.

What you see in Page Source on a browser is the RESULT of the activity of the PHP.

Zencart does not "store" the raw HTML... it is ASSEMBLED by the php only when someone clicks a link to that page.

If you don't understand CSS, then you will have to learn it. There are no short cuts to being a proper "webmaster".

w3schools.com has some very good tutorials (it's where I started) and there are many other resources for learning this on the www.