The site I am creating is displaying Popular Products, and when we go live we don't particularly want an empty space there.
Would it be easy enough to create some fake orders in the system to pre-populate this data? Alternatively i'll display featured items over popular products if no popular products exist.
Also, while i'm on the subject of orders and payments - I am currently attempting to use google checkout - however AbleCommerce is always sending the cart as USD but my seller account is GBP. Is there a way to change this? There must be an option some where, i'm probably just a bit too slow to spot it. I added this code to the BuildPrivateData function in GoogleCheckoutButton.ascx.cs
Code: Select all
tempNode1=tempDoc.CreateElement("currency");
tempNode1.InnerText="GBP";
privateData.Add(tempNode1);

Thanks,
Dave.