WebsiteBaker Support (2.8.x) > Bakery Shop

Bakery: Small Shop Module (ORIGINAL TOPIC)

<< < (99/167) > >>

freeSbee:
Hi pctechhelp

1. Open the files view_cart.php and view_summary.php.

2. Localize the code line (4 times)

--- Code: ---$f_price = number_format($items[$i]['price'], 2, $setting_dec_point, $setting_thousands_sep);
--- End code ---
and replace it by

--- Code: ---$f_price = number_format($items[$i]['quantity'] * $items[$i]['price'], 2, $setting_dec_point, $setting_thousands_sep);
--- End code ---

3. Localize the code line (2 times)

--- Code: ---$f_shipping = number_format($items[$i]['shipping'], 2, $setting_dec_point, $setting_thousands_sep);
--- End code ---
and replace it by

--- Code: ---$f_shipping = number_format($items[$i]['quantity'] * $items[$i]['shipping'], 2, $setting_dec_point, $setting_thousands_sep);
--- End code ---

Regards Christoph

pctechhelp:
Thanks freesbee,

My SMTP is off in a free webhost , is that the reason i can forward email to the customer

just want to be sure
 :-D

freeSbee:
@pctechhelp
Bakery makes use of the PHP mail() function (no SMTP).

Regards Chiristoph

D. Peeters:
Is it possible to add a gift coupon function to this module??

freeSbee:
Hi Peeters


--- Quote from: Peeters on August 18, 2009, 10:37:52 AM ---Is it possible to add a gift coupon function to this module??

--- End quote ---
Not by default. All features are listed at the >> Bakery website.

Regards Christoph

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version