HomeHome Product Discus... Product Discus...SmithCartSmithCartHow to change "Shipping Method" order?How to change "Shipping Method" order?
Previous
 
Next
New Post
12/6/2010 3:09 PM
 

SC v3.95, DNN 5.6, SQL 2005 Standard, ASP .Net 4.0 - all is well and running good.

I'm using Cart Shipping Calculator for the Shipping Setup and FedEx as the Carrier. I noticed that the most expensive method is listed on top to the least costly on the bottom. My client wants to reverse the order the customer is presented with, he suspects people get sticker shock with the high shipping cost. I understand his point. There has to be a file or database table that contains this order. Please point me in the correct direction so I can monkey with it, I've looked all over the place and haven't found the bananas.

Thank you for your attention.

 
New Post
12/6/2010 4:50 PM
 

There isnt a way to change the order of the ship methods is the buynow module settings I will check with programming and see if there is an easy way to do it without coding and postback with the answer.

-Scott


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
12/8/2010 12:31 AM
 

Credit to Tony for coming up with this easy fix for reordering the FedEx ship methods. Open up settings.ascx and make the following change:

Settings.ascx :: Starts on Line 485


<asp:CheckBoxList ID="chkFedExShipping" runat="server" CssClass="SmithProdText">
<asp:ListItem Value="206" Text="FedEx Ground" />
<asp:ListItem Value="205" Text="FedEx Express Saver" />
<asp:ListItem Value="202" Text="FedEx 2Day" />
<asp:ListItem Value="216" Text="FedEx Standard Overnight" />
<asp:ListItem Value="214" Text="FedEx Priority Overnight" />
<asp:ListItem Value="207" Text="FedEx First Overnight" />
<asp:ListItem Value="209" Text="FedEx International Economy" />
<asp:ListItem Value="212" Text="FedEx International Priority" />
<asp:ListItem Value="211" Text="FedEx International First" />
</asp:CheckBoxList>


At your service,
Dave Smith
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
12/8/2010 11:06 AM
 

To state the obvious next step - once you change the settings.aspx page: login, open the store/cart settings, then save the settings page. No changes to the selected FedEx shipping options are needed.

 
New Post
12/9/2010 6:56 AM
 

Tony thanks for the simple elegant solution!

SC crew - I've enjoyed using this software, keep up the good work.

Darren

 
Previous
 
Next
HomeHome Product Discus... Product Discus...SmithCartSmithCartHow to change "Shipping Method" order?How to change "Shipping Method" order?