Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls

A simple fix to pretty the checkout up a little

 
Reply
   X-Cart forums > X-Cart 4 > Dev Questions
 
Thread Tools Search this Thread
  #51  
Old 07-31-2006, 10:02 AM
 
chris chris is offline
 

Senior Member
  
Join Date: Sep 2002
Location: UK
Posts: 145
 

Default new checkout look and feel

The changes you people have discussed on this thread for a much needed new look to the checkout are most interesting. However there are bits of code all over the thread can anyone provide a comprehensive set of code bringing all the bits together please.

Thanks
__________________
Chris
some carts at v4.4.5 security patched on a hardened managed unix server
Reply With Quote
  #52  
Old 08-09-2006, 01:33 AM
 
redstar5 redstar5 is offline
 

Member
  
Join Date: Apr 2005
Location: ventura county, ca
Posts: 13
 

Default I get this error...?

I get this error...

Warning: Smarty error: unable to read resource: "customer/main/sexy_customer_details.tpl" in /home/kravexo/public_html/Smarty-2.6.9/Smarty.class.php on line 1088

Ideas anyone?
__________________
4.0.12 x-cart
Reply With Quote
  #53  
Old 09-06-2006, 10:52 AM
 
jfilardo jfilardo is offline
 

Advanced Member
  
Join Date: Jul 2005
Posts: 50
 

Default Re: A simple fix to pretty the checkout up a little

Great mod! Was able to get it working with a little effort.

Be careful when cutting and pasting the code as mineput some spaces in the address calls which forced them to not display.

Question. Can anyone tell me what I would have to change to get the two boxes for Billing and Shipping to be on top of each other as opposed to beside each other? The way my page is formated it is better suited to a vertical format.

Thanks,
Jason.
__________________
www.coopersport.com
North America's Premiere MINI Outfitter

X-Cart Gold v4.0.19 [Apache/Linux]
Reply With Quote
  #54  
Old 09-06-2006, 01:57 PM
 
inebriate inebriate is offline
 

eXpert
  
Join Date: May 2006
Posts: 301
 

Default Re: A simple fix to pretty the checkout up a little

Quote:
Originally Posted by jfilardo
Great mod! Was able to get it working with a little effort.

Be careful when cutting and pasting the code as mineput some spaces in the address calls which forced them to not display.

Question. Can anyone tell me what I would have to change to get the two boxes for Billing and Shipping to be on top of each other as opposed to beside each other? The way my page is formated it is better suited to a vertical format.

Thanks,
Jason.

in sexy_customer_details.tpl, switch the td and tr tags around
__________________
x-cart pro 4.0.18
linux
www.fabric8d.com (currently undergoing construction)
Reply With Quote
  #55  
Old 09-22-2006, 04:22 PM
  sushob's Avatar 
sushob sushob is offline
 

Member
  
Join Date: Aug 2006
Posts: 19
 

Default Re: A simple fix to pretty the checkout up a little

This looks GREAT in IE, but it seems to be garbled in Firefox. Any ideas?

------
Internet Explorer 6.0
http://www.sushob.com/images/tempimages/sexycustomerdetailsie.jpg

------
Firefox 1.5.0.7
http://www.sushob.com/images/tempimages/sexycustomerdetailsfirefox.jpg
__________________
Nate
www.sushob.com (live)
X-Cart Gold 4.1.3 ~ Linux
Reply With Quote
  #56  
Old 09-26-2006, 06:50 AM
 
haroldalv haroldalv is offline
 

Advanced Member
  
Join Date: Sep 2006
Posts: 30
 

Default Re: A simple fix to pretty the checkout up a little

codes are buggy for 4.1.3 can anyone make it work for x-cart 4.1.3 and firefox.
__________________
x-cart 4.1.8
Reply With Quote
  #57  
Old 09-27-2006, 04:27 PM
 
ranger82nd ranger82nd is offline
 

Senior Member
  
Join Date: Jan 2006
Posts: 159
 

Default Re: A simple fix to pretty the checkout up a little

Stating the obvious...but it appears that some of the css is not compatible with Mozilla.
So the not so obvious...does anyone have a fix?
__________________
X-Cart Gold v4.0.17 ~ EWD Hosting!
Reply With Quote
  #58  
Old 09-29-2006, 07:33 AM
 
ranger82nd ranger82nd is offline
 

Senior Member
  
Join Date: Jan 2006
Posts: 159
 

Default Re: A simple fix to pretty the checkout up a little

For the Firefox issue try this! This is only a small snippet of the code being modified!

Instead of checkout.tpl like this:
Code:
<INPUT type="hidden" name="action" value="place_order"> <TR><TD> <PRE> <FONT> {include file="customer/main/customer_details.tpl"} </FONT> </PRE> <P> {if $ignore_payment_method_selection eq ""}
Change it to:
Code:
<INPUT type="hidden" name="action" value="place_order"> {include file="customer/main/sexy_customer_details.tpl"} <TR><TD> {if $ignore_payment_method_selection eq ""}

On a side note: Holy Carp! I never realized how <table> redundant x-cart is.
__________________
X-Cart Gold v4.0.17 ~ EWD Hosting!
Reply With Quote
  #59  
Old 09-29-2006, 01:22 PM
  sushob's Avatar 
sushob sushob is offline
 

Member
  
Join Date: Aug 2006
Posts: 19
 

Default Re: A simple fix to pretty the checkout up a little

Thanks! Looks great!
__________________
Nate
www.sushob.com (live)
X-Cart Gold 4.1.3 ~ Linux
Reply With Quote
  #60  
Old 10-03-2006, 06:33 AM
 
ranger82nd ranger82nd is offline
 

Senior Member
  
Join Date: Jan 2006
Posts: 159
 

Default Re: A simple fix to pretty the checkout up a little

Because all of the image "calls" in the CSS is to the non-SSL image directory this seems to "break the lock" on all of the HTTPS pages.
Code:
.sidebox { margin: 0 auto; width: 28em; background: url(images/sbbody-r.gif) no-repeat bottom right; font-size: 100%; } .boxhead { background: url(images/sbhead-r.gif) no-repeat top right; margin: 0; padding: 0; text-align: left; } .boxhead h2 { background: url(images/sbhead-l.gif) no-repeat top left; margin: 0; padding: 22px 30px 5px; color: white; font-weight: bold; font-size: 1.2em; line-height: 1em; text-shadow: rgba(0,0,0,.4) 0px 2px 5px; } .boxbody { background: url(images/sbbody-l.gif) no-repeat bottom left; margin: 0; padding: 5px 30px 31px; }
Is the solution to put the full HTTPS path?
Such as: url(https://www.yourdomain.com/skin1/images/xxx.gif)
__________________
X-Cart Gold v4.0.17 ~ EWD Hosting!
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Dev Questions


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 11:15 AM.

   

 
X-Cart forums © 2001-2020