Announcement

Collapse
No announcement yet.

Hiding Shipping Costs

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Hiding Shipping Costs

    Hi,

    Having problems trying to set up shipping by order value in Catalog 6..... In effect have the following set up

    1st class
    1st class recorded
    Special delivery
    Citylink

    All the these methods have an order value set to "£10,000,000" making all 4 options availble no matter what the actual order value is. The shipping costs for all four is set at zero as its impossable for us to calculate acurate postage based on either price or weight.

    The problem is actinic displays this zero cost in brackets in the drop down menu, for example "1st class (£0.00)". Is there anyway of altering this menu so that it just shows the method and not the price?

    Many Thanks
    Liam

    #2
    I think I have figured out how to do this, but it has not been thoroughly tested.

    Go into your 'ShipControl' folder within 'Site1' and open 'ShippingTemplate.pl' in Notepad.

    Search for '<option'

    A few lines above it, you will see this line
    Code:
    	$sClassLabel .= sprintf($sPriceLabelFormat, $PriceResponse[2]);	# add the price to the label
    Add a '#' to the front of this line to comment it out:
    Code:
    #	$sClassLabel .= sprintf($sPriceLabelFormat, $PriceResponse[2]);	# add the price to the label
    Then upload your store.

    Actinic is not able to provide any detailed support for script changes made. If you find that there is a problem, an original copy of the script can be found within the 'Original' folder in your installation. Copy this into your site folder.

    Comment


      #3
      Hi,

      Thanks for that - works a treat :-)

      Cheers
      Liam

      Comment

      Working...
      X