Jump to content

Sconto per fasce di prezzo


MarcoM

Recommended Posts

Ciao,
voglio fare uno sconto del 5% a chi fa un acquisto superiore a 1000€

ho trovato questo sul forum:

Modifica file: /classes/cart.php
linea 684 nella versione 1.3.1 modifica :
if ($type == 5) return $shipping_fees;
if ($type == 6) return $wrapping_fees;
if ($type == 3) $order_total += $shipping_fees + $wrapping_fees;
if ($order_total < 0 AND $type != 2) return 0;
for:

if ($order_total >= 1000) $order_total *= 95/100; /*Over 1000, 5% discount */
if ($type == 5) return $shipping_fees;
if ($type == 6) return $wrapping_fees;
if ($type == 3) $order_total += $shipping_fees + $wrapping_fees;
if ($order_total < 0 AND $type != 2) return 0;

Funziona!!!
mi piacerebbe però limitare lo sconto ad acquisti che contengano almeno 3 prodotti, questo per evitare che lo sconto venga applicato a prodotti che costano più di 1000 €
Suppongo di dover Modificare.

if ($order_total >= 1000 AND..................) [/color][/size]$order_total *= 95/100; /*Over 1000, 5% discount */

mi sapreste aiutare?

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...