Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
I would prefer to have the "Print" option first, then the "Digital Downloads" but here is what I get:
and here is the pricing scheme:
and the product priority listing:
I cannot figure out how to change the order:
Offline
Did you try resetting the cart?
Which pricing profile is this for? The one gallery I looked at had two options: Digital Download and Print. I didn't see all those others.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
I don't see how to reset the cart. The pricing module is "PREMIUM" as shown in the second graphic above.
This is the gallery you should look at: http://garylittle.com/galleries/pcolaba … spelicans/
Offline
Reset link on the main cart dashboard page
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
I suggest sending Backlight admin credentials to Ben then.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Thanks for the details Gary. I have found the cause of the problem, but not yet thought of a solution. Read on for a fairly technical explanation...
The cart returns a list of products, ordered as per the configuration. So let's say you had three products, Print, Digital Copy and Printed Mugs, configured with order 1, 2 and 3 respectively. Prior to the last update, these were indexed by a text name, so the Javascript would see this:
print => Print (with all of the details)
digital copy => Digital Copy (with all of the details)
mugs => Printed mugs (with all of the details)
I made an update to replace the textual index with the numeric ID. This was to make the code more robust, and fix issues caused by punctuation in product names.
That leaves the returned list as something like:
2 => Print (with all of the details)
1 => Digital Copy (with all of the details)
7 => Printed mugs (with all of the details)
The problem is that when indexed by numbers, JavaScript ignores the order of the items returned (Print, Digital, Printed Mugs) and instead orders on the numerical number.. this is a quirk that I'll need to find a solution for.
Offline
Pages: 1