Hello X-carters.
X-cart displays products added from top to bottom (oldest to newest),
Customers might find it irritating to scroll down your Cart page, to see if s/he added the products successfully.
A very simple 1 liner code to display them from Newest added to Oldest.
In your {x-cart-skin1-dir}/customers/main/cart.tpl locate line no.14:
Code:
{section name=product loop=$products}
Ammend this code to
Code:
{section name=product loop=$products start=-1 step=-1}
1. Start=-1 <=> Tells loop to start at the end of array
2. Step =-1 <=> loops backward 1 step at a time
Hope it helps some of you out.