Jump to content

Come togliere costo spedizione nel blocco carrello?


gantz37

Recommended Posts

  • 2 weeks later...

trovata la soluzione:

 

This is how I removed all the informations about shipping:

 

1. Go to "blockcart.tpl" and comment out these lines:

<span>{l s='Shipping' mod='blockcart'}</span>
<span id="cart_block_shipping_cost" class="price ajax_cart_shipping_cost">{$shipping_cost}</span>
<br/>

 

 

2. In the same file, find this line:

<span id="cart_block_total" class="price ajax_block_cart_total">{$total}</span>

 

and replace {$total} with {$product_total}:

<span id="cart_block_total" class="price ajax_block_cart_total">{$product_total}</span>

 

 

 

3. probably the "AJAX mode" is on so you "must" edit also the "ajax-cart.js" file which exists in "blockcart" folder in "modules" folder. Open it and go to line 560. Replace:

$('.ajax_block_cart_total').text(jsonData.total);

 

with this:

$('.ajax_block_cart_total').text(jsonData.productTotal);

 

l'ho testato è funziona!!

 

ciao

Link to comment
Share on other sites

ho provato a modificare i files come consigliato da cablos, ho testato su vari browser e sembra che su chrome non funziona, viene cancellato la scritta spedizione ma lo calcola lo stesso su totale,

 

invece su firefox e internet explorer funzionano

Link to comment
Share on other sites

  • 2 weeks later...
  • 3 months later...

Per la versione 1.4.5.1

 

blockart.tpl rimuovere:

<span>{l s='Shipping' mod='blockcart'}</span>
  <span id="cart_block_shipping_cost" class="price ajax_cart_shipping_cost">{$shipping_cost}</span>

blockart.php sostituire

 

'total' => Tools::displayPrice($totalToPay, $currency),

con

 

'total' => Tools::displayPrice($params['cart']->getOrderTotal($useTax, Cart::BOTH_WITHOUT_SHIPPING), $currency),

 

www.iltshop.it PERFETTO !!!

Link to comment
Share on other sites

  • 2 years later...

Salve,

avete qualche idea o sapete consigliarmi qualche modulo che mi calcoli le spese di spedizione prima della registrazione del cliente, altrimenti un cliente non italiano potrebbe essere tratto in inganno dalle spese di spedizione indicate nel carrello, anche se le nascondo non è detto che poi tale cliente voglia registrasi per vedere quanto gli costa la spedizione.

 

La spedizione è calcolata in base al peso e alla nazione.

 

 

Versione utilizzata PrestaShop™ 1.5.4.1

 

 

Ciao

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...