To remove the shipping charge from the cart, please go to your site folder and open the file ActinicOrder.pm in Notepad then search for: -
elsif ($nLowerBound > 0 &&
This will take you straight to this code: -
elsif ($nLowerBound > 0 &&
$nTotal < $nLowerBound)
replace this with: -
elsif ($nLowerBound > 0 &&
$nSubTotal < $nLowerBound)
Then save the file.
Once you have done this you can change the text ID (2348) to add any tax message if required e.g. inclusive, exclusive etc. ('Design | Text' click 'Go to' and enter a 'Phase' of -1 and an 'ID' of 2348).
When you next upload the site, the changes will take place.
elsif ($nLowerBound > 0 &&
This will take you straight to this code: -
elsif ($nLowerBound > 0 &&
$nTotal < $nLowerBound)
replace this with: -
elsif ($nLowerBound > 0 &&
$nSubTotal < $nLowerBound)
Then save the file.
Once you have done this you can change the text ID (2348) to add any tax message if required e.g. inclusive, exclusive etc. ('Design | Text' click 'Go to' and enter a 'Phase' of -1 and an 'ID' of 2348).
When you next upload the site, the changes will take place.