HomeHome Product Discus... Product Discus...SmithCartSmithCartDisplaying shipping options from low to high costDisplaying shipping options from low to high cost
Previous
 
Next
New Post
8/23/2010 10:19 AM
 

Is there a way to make shipping options in the customer checkout process appear from lowest cost to highest cost? Ideally, I would like to display the most inexpensive shipping option by default in the drop down menu.

 
New Post
8/23/2010 11:07 AM
 

What shipping option do you have configured in the cart?

-Scott


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
8/23/2010 11:15 AM
 

We are using the cart shipping calculator with Canada Post as the carrier.

 
New Post
8/23/2010 11:21 AM
 

There is not built in setting in the cart to change the sort order for the Canada Post ship methods by cost low to high. The cart displays the ship methods according to the order defined in the settings.ascx as follows:

<asp:CheckBoxList ID="chkCanadaPostShipping" runat="server" CssClass="SmithProdText">
<asp:ListItem Value="100" Text="Priority" />
<asp:ListItem Value="101" Text="Xpresspost" />
<asp:ListItem Value="102" Text="Expedited Parcel" />
<asp:ListItem Value="103" Text="Regular Parcel" />
<asp:ListItem Value="104" Text="Small Packet Air" />
<asp:ListItem Value="105" Text="Small Packet Surface" />
<asp:ListItem Value="106" Text="Light Packet Surface" />
</asp:CheckBoxList>

You can try re ordering this list in the settings.ascx file to your desired order but please back up the file before changing it in case you need to roll back.

-Scott


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
9/18/2010 2:44 PM
 

How do I change the order in this file? I've tried changing the ListItem value, and I've tried altering the file like this:


<asp:CheckBoxList ID="chkCanadaPostShipping" runat="server" CssClass="SmithProdText">
<asp:ListItem Value="106" Text="Light Packet Surface" />
<asp:ListItem Value="105" Text="Small Packet Surface" />
<asp:ListItem Value="104" Text="Small Packet Air" />
<asp:ListItem Value="103" Text="Regular Parcel" />
<asp:ListItem Value="102" Text="Expedited Parcel" />
<asp:ListItem Value="101" Text="Xpresspost" />
<asp:ListItem Value="100" Text="Priority" />
</asp:CheckBoxList>

I've tried re-ordering in both of these ways, as well as combinations of both and I have noticed no change on the site. Please advise.

 
New Post
9/19/2010 2:41 AM
 

I believe the ship methods for the real time ship calculator are sorted in code behind by ship method I dont think there is a way for you to re sort them by price without the source code. If there was a way to do it in the ascx Scott's recomendation would have been the right way.


At your service,
Dave Smith
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
Previous
 
Next
HomeHome Product Discus... Product Discus...SmithCartSmithCartDisplaying shipping options from low to high costDisplaying shipping options from low to high cost