Jump to content

Always shows free shipping


Recommended Posts

Try defining the warehouse and associate the carriers within it's settings. Then, make sure each product is associated with the warehouse defined (warehouse tab in the product definition). Also, check the defined carriers to be set to deliver in the zones where your customer is and that your customer's state is associated with the zone. That should do it!

 

Link to comment
Share on other sites

The best way is to go to your blockcart.tpl

 

And look for this

 

<script type="text/javascript">
var customizationIdMessage = '{l s='Customization #' mod='blockcart' js=1}';
var removingLinkText = '{l s='Please remove this product from my cart.' mod='blockcart' js=1}';
//<![CDATA[[
 
    {if !$logged AND !$cart->id_customer}
        var freeShippingTranslation = '{l s='Free shipping!' mod='blockcart' js=1}';      
    {else}
        var freeShippingTranslation = '{l s='Free shipping!' mod='blockcart' js=1}';
    {/if}
 
//]]>
</script>
 

 

I changed mine to

 

<script type="text/javascript">
var customizationIdMessage = '{l s='Customization #' mod='blockcart' js=1}';
var removingLinkText = '{l s='Please remove this product from my cart.' mod='blockcart' js=1}';
//<![CDATA[[
 
    {if !$logged AND !$cart->id_customer}
        var freeShippingTranslation = '{l s='Shipping Calculated at Checkout!' mod='blockcart' js=1}';      
    {else}
        var freeShippingTranslation = '{l s='Free shipping!' mod='blockcart' js=1}';
    {/if}
 
//]]>
</script>

 you can change it to what you want.

Link to comment
Share on other sites

To Wuffo:

 

that's a completely different situation, that deletes the "free shipping" when the viewer is not logged in...

And you dont't really need that too, if you configure your shop correctly, it shall display the shipping fee even to visitors and guests without the need to login...

 

Of course, you can do whatever changes to the code, it's up to you.

 

Best regards.

 

v.1.5.6.2

Link to comment
Share on other sites

I am using Flat rate shipping and the default shipping and Free shipping was showing whether a visitor or logged in.  I found the reference in a few other post on the forum and this solved the problem.

 

I  thought that was what you were referring to.

 

I am going to look into opening up international shipping using carriers. If I have to change every item (over 16,000) then that will be a problem.

Link to comment
Share on other sites

Try defining the warehouse and associate the carriers within it's settings. Then, make sure each product is associated with the warehouse defined (warehouse tab in the product definition). Also, check the defined carriers to be set to deliver in the zones where your customer is and that your customer's state is associated with the zone. That should do it!

Thank you but nothing helps :(

Link to comment
Share on other sites

×
×
  • Create New...