taoreflex Posted August 25, 2010 Share Posted August 25, 2010 Using version 1.3.1I want to change "There is no carrier available that will deliver to this address!" to - Please contact us for shipping options. But after perusing many forum articles have drawn a blank.And a second question. I'd like to offer free shipping above a certain value or weight within the UK. I don't want to offer this globally as the cost would be prohibitive, but as far as I can tell setting these options in Prestashop applies it globally. Am I right? And its therefore only an option if you only ship nationally or only ship lightweight items which are relatively inexpensive to ship globally.Thanks in advance. Link to comment Share on other sites More sharing options...
tomerg3 Posted August 25, 2010 Share Posted August 25, 2010 You can change that test from the prestashop translation page (Tools->Translations->Front Office-> click your flag).For the free shipping, you will need to modify your code a bit to restrict it for UK only.What version of PS are you using? NM, I saw it....On /classes/Cart.php there's a function the calculates the shipping cost (around line 700 ).The part that calculates free shipping is if ($orderTotalwithDiscounts >= floatval($free_fees_price) AND floatval($free_fees_price) > 0) return $shipping_cost; if (isset($configuration['PS_SHIPPING_FREE_WEIGHT']) AND $this->getTotalWeight() >= floatval($configuration['PS_SHIPPING_FREE_WEIGHT']) AND floatval($configuration['PS_SHIPPING_FREE_WEIGHT']) > 0) return $shipping_cost; You will need to add a condition that checks the shipping address, and only apply the free shipping if it is to the UK. Link to comment Share on other sites More sharing options...
Patric Posted August 26, 2010 Share Posted August 26, 2010 Please post only one question by topic.Topic moved. Link to comment Share on other sites More sharing options...
taoreflex Posted September 13, 2010 Author Share Posted September 13, 2010 Thanks tomerg the third. Took me a while to get back to this. Don't suppose anyone would know if version 1.4, which I seem to remember reading has some changes to shipping (maybe shipping calculations), might cover something like this? Link to comment Share on other sites More sharing options...
taoreflex Posted September 13, 2010 Author Share Posted September 13, 2010 Please post only one question by topic.Topic moved.Thanks for pointing out my violation of the rules. In the absence of any obvious punishment I have chastised myself.A suggestion: when you move a topic, a link to where the topic has been moved would be helpful. Also a mention of which of the two topics was moved. I've searched for the moved topic and haven't been able to find it, which was complicated by not knowing which of the two topics was moved or what either of the topics might have been called. Link to comment Share on other sites More sharing options...
Patric Posted September 14, 2010 Share Posted September 14, 2010 I did not split the topic.The 2 questions are still in your first post.The moved topic is the current one. Link to comment Share on other sites More sharing options...
taoreflex Posted September 14, 2010 Author Share Posted September 14, 2010 Sorry, I don't follow you. If the moved topic is the current one, which of the two topics is the current one? And where is the topic which isn't the current one to be found? Link to comment Share on other sites More sharing options...
Patric Posted September 14, 2010 Share Posted September 14, 2010 There is only ONE topic, this one.I only moved it to the good forum's section. Link to comment Share on other sites More sharing options...
taoreflex Posted September 14, 2010 Author Share Posted September 14, 2010 There is only ONE topic, this one.I only moved it to the good forum's section. Still don't follow you as I thought the problem was that I'd introduced 2 topics in one post, but now there's only one topic. But not to worry, I'll content myself with being happy that it got moved to the good forum rather than the bad forum. Link to comment Share on other sites More sharing options...
jhnstcks Posted September 14, 2010 Share Posted September 14, 2010 You dont want to see the bad forum, its full of spam Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now