lollipop Posted April 19, 2009 Share Posted April 19, 2009 HiI was just wondering if anyone would be kindly enough to tell me how remove total default shipping in the summary cart and cart block which is shown automatically when you put an order in the cart. (So that the summary cart will only show total of products & discount/voucher when applicable and find out about their postage after they log in and put in their address). I found the default shipping cost is misleading when people are ordering from overseas.I tried to delete the shipping cost from shopping-cart.tpl and while it didn't show the total shipping in the summary cart, the total still calculates the shipping. Will also need to remove it from the cart block as well.I hope this makes sense, really appreciate any help,Lollipop Link to comment Share on other sites More sharing options...
TropischBruin Posted April 19, 2009 Share Posted April 19, 2009 This is not possible atm. without modifying a lot of code. Link to comment Share on other sites More sharing options...
diamond204 Posted June 28, 2009 Share Posted June 28, 2009 Hello,I was also interested in removing the shipping especially when using the UPS module which does not display accurate shipping until you login. I have attached a new version of the blockcart.tpl file - backup your original and then overwrite the one in /modules/blockcart to see something close to the desired effect. Does anyone know why at times it will continue to add in handling fees even though the file has been modified to display only the product total? {$product_total} blockcart.zip 1 Link to comment Share on other sites More sharing options...
diamond204 Posted June 28, 2009 Share Posted June 28, 2009 Also , for anyone that is interested, below is a mod to the AJAX cart on the main page so it only displays the items and quantities - with no shipping or Totals... blockcart.zip 1 Link to comment Share on other sites More sharing options...
eqilibrium Posted June 28, 2009 Share Posted June 28, 2009 I imagine that it's not possible to put the products total, or is it?My idea is to put the total amount without the shipping cost.Thank's Link to comment Share on other sites More sharing options...
diamond204 Posted June 30, 2009 Share Posted June 30, 2009 You can try using the mod from Post #2 , but it is not highly recommended for use with the Ajax cart as it does not update automatically when you add items to your cart - it will only update on a page refresh or when you navigate to a new page... Link to comment Share on other sites More sharing options...
Icarus Posted July 1, 2009 Share Posted July 1, 2009 I am also interested in this.+1 for the ability to ignore shipping costs until after you are logged in, and only at the final checkout stage.If there is a solution without touching too much delicate code, I would love to know. Link to comment Share on other sites More sharing options...
eddieuk Posted August 18, 2009 Share Posted August 18, 2009 I am also interested in this. The shipping in my shopping cart does not work, and I can't fix it. So I need it removed too. At the moment it shows £0.00 which is a lie! Link to comment Share on other sites More sharing options...
diamond204 Posted August 18, 2009 Share Posted August 18, 2009 Download this file for an Ajax enabled modified cart module that does not display shipping or totals.Note: For Prestashop versions 1.2.x blockcart_no shipping or totals_for PS12.zip Link to comment Share on other sites More sharing options...
diamond204 Posted April 20, 2010 Share Posted April 20, 2010 Download this file for an Ajax enabled modified cart module that does not display shipping or totals.Note: For Prestashop versions 1.3.x blockcart_no shipping_for PS13.zip Link to comment Share on other sites More sharing options...
joshsherm Posted June 13, 2010 Share Posted June 13, 2010 Could you tell me how to add totals to this modification? Link to comment Share on other sites More sharing options...
diamond204 Posted June 17, 2010 Share Posted June 17, 2010 Could you tell me how to add totals to this modification? Totals aren't included in the mod but you can see what the mode had deleted and then re-modify the original, but just leave in the subtotal code line - that should work. Link to comment Share on other sites More sharing options...
trenthanover Posted January 2, 2011 Share Posted January 2, 2011 Can someone please guide me on how to install the above module for Blocking Shipping in Cart?I am developing an online store for a chinese food delivery, and we dont need to shipping.Thank you,Trent Link to comment Share on other sites More sharing options...
ermis Posted August 25, 2011 Share Posted August 25, 2011 Has anyone done the modification for 1.4.x? Thanks 1 Link to comment Share on other sites More sharing options...
SSNet Inc Posted September 14, 2011 Share Posted September 14, 2011 Would be very interested in this for 1.4.x also. I offer free shipping on specific products - prestashop doesn't have that option built in so I have to play with different carriers that will offer that option on checkout - but when a product with the option of free shipping is added to the cart - the ajax for the cart block will show shipping for the FedEx options - would like to remove all shipping prices except when they get to that option in Checkout. Link to comment Share on other sites More sharing options...
zyko Posted September 14, 2011 Share Posted September 14, 2011 Hi I was just wondering if anyone would be kindly enough to tell me how remove total default shipping in the summary cart and cart block which is shown automatically when you put an order in the cart. (So that the summary cart will only show total of products & discount/voucher when applicable and find out about their postage after they log in and put in their address). I found the default shipping cost is misleading when people are ordering from overseas. I tried to delete the shipping cost from shopping-cart.tpl and while it didn't show the total shipping in the summary cart, the total still calculates the shipping. Will also need to remove it from the cart block as well. I hope this makes sense, really appreciate any help, Lollipop in classes/cart.php file in function public function getOrderTotal($withTaxes = true, $type = Cart::BOTH) if we find $shipping_fees = ($type != Cart::BOTH_WITHOUT_SHIPPING AND $type != Cart::ONLY_PRODUCTS_WITHOUT_SHIPPING) ? $this->getOrderShippingCost(NULL, (int)($withTaxes)) : 0; and replace with global $cookie; if (isset($cookie->id_customer) && $cookie->isLogged() == true) { $shipping_fees = ($type != Cart::BOTH_WITHOUT_SHIPPING AND $type != Cart::ONLY_PRODUCTS_WITHOUT_SHIPPING) ? $this->getOrderShippingCost(NULL, (int)($withTaxes)) : 0; } I guess this will solve your problem Thanks Delonix 1 Link to comment Share on other sites More sharing options...
zyko Posted September 14, 2011 Share Posted September 14, 2011 with this i don't think we need to modify any tpl file Thanks Delonix Link to comment Share on other sites More sharing options...
SSNet Inc Posted September 14, 2011 Share Posted September 14, 2011 Hi zyko, tried the fix you outlined above - my cart is version 1.4.4.0 - the fix doesn't work. Diamond204 posted a couple of modules - but last one was for 1.3.x Link to comment Share on other sites More sharing options...
Nikpro Posted January 12, 2012 Share Posted January 12, 2012 use css rules/ find modules/blockcart/blockcart.tpl line 113 <p id="cart-prices"> replace < p id="cart-prices" style="Display:none"> show in my site www.sporttimedv.ru or www.sport.digo-shop.com ------------------------------- IF need support service in prestashop - call me =) Link to comment Share on other sites More sharing options...
Buzzflies Posted January 13, 2013 Share Posted January 13, 2013 I modified the Blockcart.tpl and the shopping-cart.tpl, By deleting the word 'Free Shipping' Leaving the punctuation marks. What this did was. Where it said's shipping, it would be blank until you log in, then it will give the shipping price. Link to comment Share on other sites More sharing options...
brickhouseboutique Posted February 18, 2013 Share Posted February 18, 2013 Which blockcart.tpl and shopping-cart.tpl. I am finding blockcart.tpl under themes and the root of the shop. Link to comment Share on other sites More sharing options...
zazu Posted April 22, 2013 Share Posted April 22, 2013 Hi guys, I'm running PrestaShop 1.5.4 version, and i want to show in my BlockCart the total price of products without shiiping price included. So i want the BlockCart to show me something like this: Product 1 ...........20$ Product 2 ...........35$ ------- Total price of products: 55$ Shipping price: 10$ Total price: 65$ So in my BlockCart i want to show above the Shipping price, the total price of products. How can i do this? Please Help. Thx in advance. Link to comment Share on other sites More sharing options...
tpresta Posted September 5, 2013 Share Posted September 5, 2013 Hi,Here is a really simple solution that works very well. And you do not need to modify any files manually.Go to Localization > Translations- Select Installed Module Translation, and then click on the Country Flag- Find the Module: blockcart- Change the Free Shipping text and enter something like a dash - or you could enter text like "Login to View" or something that is best suited for your shop.Save this.Now go to Localization > Translations- Select Front Office Translations, and then click on the Country Flag.- Find the areas where Free Shipping is written. An easy way to do this is "Ctrl F" on windows PC and you can find them all.- Now only change the text for the ones you would like to change from "Free Shipping" to something else. For example just in the shopping-cart expressions section, change the Free Shipping Text.Save This.Now if you want to change the Text where you see your Carrier and it is still written "Free" then change it here: Go to order-opc-carrier still within the Translations area and change the text "Free", You could just write a dash - as the text or whatever else you would like.Save ThisThis should make it alot better for you with Shipping, and you can experiment with the areas you want to change the text for. Link to comment Share on other sites More sharing options...
Project743 Posted September 9, 2013 Share Posted September 9, 2013 Hello, Sorry, can you help me to resolve the problem. I am running prestashop 1.5.5 version, i am gonna to sell a virtual products which don't need a shipping. How i can disable shiping??? Last posts what i read didn't helped me. Thank you. Link to comment Share on other sites More sharing options...
ardi85 Posted September 14, 2013 Share Posted September 14, 2013 Hello, Sorry, can you help me to resolve the problem. I am running prestashop 1.5.5 version, i am gonna to sell a virtual products which don't need a shipping. How i can disable shiping??? Last posts what i read didn't helped me. Thank you. you can add Handling charges to 0 at BO> shipping >shipping Link to comment Share on other sites More sharing options...
Recommended Posts