X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (https://forum.x-cart.com/forumdisplay.php?f=20)
-   -   A simple fix to pretty the checkout up a little (https://forum.x-cart.com/showthread.php?t=22197)

chris 07-31-2006 10:02 AM

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

redstar5 08-09-2006 01:33 AM

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?

jfilardo 09-06-2006 10:52 AM

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.

inebriate 09-06-2006 01:57 PM

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

sushob 09-22-2006 04:22 PM

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

haroldalv 09-26-2006 06:50 AM

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.

ranger82nd 09-27-2006 04:27 PM

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?

ranger82nd 09-29-2006 07:33 AM

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.

sushob 09-29-2006 01:22 PM

Re: A simple fix to pretty the checkout up a little
 
Thanks! Looks great!

ranger82nd 10-03-2006 06:33 AM

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)


All times are GMT -8. The time now is 02:34 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.