Exclude Products from Free Shipping
-
- Commander (CMDR)
- Posts: 159
- Joined: Wed Feb 16, 2011 11:51 am
- Location: Indiana
- Contact:
Exclude Products from Free Shipping
I have a "Vary by Cost" shipping method that I use for free shipping. Is there a way to exclude certain products from that shipping method? Maybe I need to put them in a special warehouse or something? Anyone do something similar?
Thanks,
Chris
http://www.networkcablesonline.com
Network Cables Online, LLC
Running AbleCommerce GOLD R6
Chris
http://www.networkcablesonline.com
Network Cables Online, LLC
Running AbleCommerce GOLD R6
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: Exclude Products from Free Shipping
Without custom coding, you would need to put them into a different warehouse. But then the checkout page will show two different shipments if there a both free shipping and normal products in the order.
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
-
- Commander (CMDR)
- Posts: 159
- Joined: Wed Feb 16, 2011 11:51 am
- Location: Indiana
- Contact:
Re: Exclude Products from Free Shipping
Ahhhh... what if the product is marked as ship separately? I just found that setting on the products last night.
Thanks,
Chris
http://www.networkcablesonline.com
Network Cables Online, LLC
Running AbleCommerce GOLD R6
Chris
http://www.networkcablesonline.com
Network Cables Online, LLC
Running AbleCommerce GOLD R6
Re: Exclude Products from Free Shipping
Doesn't really change things. You'll still get separate shipments, just for a different reason now.frankenstein897 wrote:Ahhhh... what if the product is marked as ship separately? I just found that setting on the products last night.
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
-
- Commander (CMDR)
- Posts: 159
- Joined: Wed Feb 16, 2011 11:51 am
- Location: Indiana
- Contact:
Re: Exclude Products from Free Shipping
Ok, thank you!
Thanks,
Chris
http://www.networkcablesonline.com
Network Cables Online, LLC
Running AbleCommerce GOLD R6
Chris
http://www.networkcablesonline.com
Network Cables Online, LLC
Running AbleCommerce GOLD R6
-
- Commander (CMDR)
- Posts: 159
- Joined: Wed Feb 16, 2011 11:51 am
- Location: Indiana
- Contact:
Re: Exclude Products from Free Shipping
I have decided to just put the products that I don't want Free Shipping in a different warehouse. It was easiest and figured I could try to communicate to our customers. I do have the 2 shipping options in the shipping method part of the checkout when there are different products in different warehouses. Is there a way to change the text next to the shipping options where it says Shipment 1 and Shipment 2? Here is what I am talking about:

Can that text be changed somewhere?
Thanks,
Chris

Can that text be changed somewhere?
Thanks,
Chris
Thanks,
Chris
http://www.networkcablesonline.com
Network Cables Online, LLC
Running AbleCommerce GOLD R6
Chris
http://www.networkcablesonline.com
Network Cables Online, LLC
Running AbleCommerce GOLD R6
Re: Exclude Products from Free Shipping
Sure, very easy to do.
Just edit the /ConLib/OnePageCheckout.ascx file and look for the following code:
You'll see the word 'Shipment' immediately following the bold tag <b>. That's where the word 'Shipment' is coming from.
Just edit the /ConLib/OnePageCheckout.ascx file and look for the following code:
Code: Select all
<asp:Repeater ID="ShipmentList" runat="server" OnItemDataBound="ShipmentList_ItemDataBound"
EnableViewState="false">
<ItemTemplate>
<asp:PlaceHolder ID="ShipmentCounter" runat="server" Visible='<%# (ShipmentCount > 1) %>'
EnableViewState="false"><b>Shipment
<%# (Container.ItemIndex + 1) %>: </b></asp:PlaceHolder>
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
-
- Commander (CMDR)
- Posts: 159
- Joined: Wed Feb 16, 2011 11:51 am
- Location: Indiana
- Contact:
Re: Exclude Products from Free Shipping
Cool, thanks!
Thanks,
Chris
http://www.networkcablesonline.com
Network Cables Online, LLC
Running AbleCommerce GOLD R6
Chris
http://www.networkcablesonline.com
Network Cables Online, LLC
Running AbleCommerce GOLD R6