How to disable ‘Remaining amount to be added to your cart in order to obtain free shipping:’ in Prestashop 1.2.4

November 9th, 2009 by Ardian Yuli Seytanto Leave a reply »

This post is based on question in Prestashop forum hilangkan keterangan “Remaining amount to be added to your cart in order to obtain free shipping”. Imagine if your shop wouldn’t provide free shipping service after fulfill certain amount either of money or total product weights. We think this configuration should be configured easily from Preferences tab menu, but there isn’t here. In this tutorial I want to share my experience  how to analyze Prestashop code to solve our problem.

Case Study : How to disable “Remaining amount to be added to your cart in order to obtain free shipping” in cart summary.

In this tutorial we use Ubuntu as main OS, because there is “Search for files” menu in this great opensource OS. For another OS you can try this tutorial by using another tools which provide search for text in file.

#1 Search the clue in Prestashop code

The benefit using opensource ecommerce software like PrestaShop is we can analyze how the system works. If there is some part on the web with text “Remaining amount to be added to your cart in order to obtain free shipping”, this text should be written in the source code or database. Try for search it using your utility, i’m here using my Ubuntu 8.10

Search for files

Search for files

Remaining amount to be added to your cart in order to obtain free shipping

Remaining amount to be added to your cart in order to obtain free shipping

Search result

Search result

With this tool we know that file ../ps124/themes/prestashop/shoppint-cart.tpl contain string “Remaining amount to be added to your cart in order to obtain free shipping”. This file is used for generate view from a website, this smarty file is used by prestashop theme.

#2 Analyze file shopping-cart.tpl

Open your file and find the code which contain “Remaining … “

Find for "remaining"

Find for "remaining"

we get

{if $free_ship > 0}
 <tr>
 <td colspan="6" style="white-space: normal;">{l s='Remaining amount to be added to your cart in order to obtain free shipping:'}</td>
 <td>{convertPrice price=$free_ship}</td>
 </tr>
 {/if}

Repeat this step (Search in files, analyze, etc) for variable found in yours code. In shopping-cart.tpl there is a clue with variable $free_ship. Because if $free_ship variable value greater than 0, PrestaShop will show “Remaining … “ in shopping cart summary.

To be continued…

/media/disk/php/tools/prestashop/
Bookmark and Share

This links go to same article

Remaining amount to be added to your cart in order to obtain free shippingRemaining amount to be added to your cart in order to obtain free shipping:prestashop disable free shippingprestashop disable add to cartremove free shipping prestashopprestashop Remaining amount to be added to your cart in order to obtain free shippingprestashop Remaining amount to be added to your cart in order to obtain free shipping:prestashop remove free shippingprestashop obtain free shippingdisable free shipping prestashopprestashop remove free shipping optionprestashop remove Remaining amount to be added to your cart in order to obtain free shippingremaining amount prestashop free shipping disableremove Remaining amount to be added to your cartremove Remaining amount to be added to your cart in order to obtain free shipping prestashopprestashop howto disable moduleprestashop hook shopping cart footerprestashop free_shipdisable free shipping starts at presta shopdisable remaining to be added prestashop

Related posts:

Prestashop Images SEO Tips – Prestashop SEO Tutorial

This post is about How to optimize Prestashop in Search Engine Optimization (SEO) perspective by altering images naming convention. 3) How to name the images It’s been recognised within SEO generally that file names can have an impact on results. This is reflected too within search engine optimisation for images....

Always connected with our Prestashop Info. We don't send spam. Email address:

Leave a Reply