Bakery: Small Shop Module (ORIGINAL TOPIC)

freeSbee

Quote from: RuudE on February 01, 2008, 03:50:04 PM
Would it be possible to add this as a setting or two? (use tax on shipping & shipping inc tax/excl tax)

Hi Ruud

It is possible and I will more probably than not implement it in the next version.
Thanks for the hint.

Best,
Christoph

brent

Quote from: RuudE on February 01, 2008, 03:50:04 PM
I actually cannot believe this would be different in other countries. If not you sell your product for EUR 1.00, and add EUR 499.00 for shipping (taxfree).

It's true, In the USA you don't charge tax for shipping.

freeSbee

Quote from: erikp01 on February 01, 2008, 01:37:17 PM
To have the view_cart button at step 1 of the checkout process I added this piece of code at line 60 of the file view_form.php

?>
<div class="mode_bakery_main_div_cart_bt_f">
<form action="yourwebshoppage.php" method="post">
<input type="submit" name="cart" class="mode_bakery_bt_cart_f" value="View Cart" />
</form>
</div>
<?php

Hi Erik

To make this code more universal I advise that you use vars instead of hardcoded values:

// Show button "View Cart"
echo "<div class='mode_bakery_main_div_cart_bt_f'>\n
<form action='$setting_continue_url' method='post'>\n
<input type='submit' name='cart' class='mode_bakery_bt_cart_f' value='{$MOD_BAKERY['TXT_VIEW_CART']}' />\n
</form>\n
</div>\n";


Best,
Christoph

Ruud

I love this module. It shows you can do great things and still keep it (relatively) simple.

I have one remark/request.
I have seen a lot about taxes, but one thing I missed in these discussions.

The tax is not calculated over the shipping costs.
Overhere (Netherlands) you need to tell the customer the tax on the complete amount of what is deliverred. Shipping costs is one of them.
I actually cannot believe this would be different in other countries. If not you sell your product for EUR 1.00, and add EUR 499.00 for shipping (taxfree).

So I tried all settings I could find. (incl tax/.excl tax/shipping per item/shipping total) but there is never a tax calculation with the shipping included.

Would it be possible to add this as a setting or two? (use tax on shipping & shipping inc tax/excl tax)
If not (or too difficult) can you point me in the direction of "hacking" the module for my personal situation?

Thanks for your help,

Ruud

(ps.. it gets even worse, the actual rule is you need to add tax in the same percentage as the goods you deliver. I can't find out what to do when you have mixed tax rates in one order)
[url=https://dev4me.com/modules-snippets/]Dev4me - WebsiteBaker modules[/url] - [url=https://wbhelp.org/]WBhelp.org[/url]

erikp01

Seagull,

a code snippet like anycart for ex should be very usefull. This to place the subtotal of the current order anywhere. Is this possible?


erik

erikp01

To have the view_cart button at step 1 of the checkout process I added this piece of code at line 60 of the file view_form.php

?>
<div class="mode_bakery_main_div_cart_bt_f">
<form action="yourwebshoppage.php" method="post">
<input type="submit" name="cart" class="mode_bakery_bt_cart_f" value="View Cart" />
</form>
</div>
<?php


freeSbee


Bonjour Erik

Quote from: erikp01 on February 01, 2008, 07:20:40 AM
...
on the product detail page and on step 1 the address entry page. I think the customer likes to see what he ordered at the time he gives name and address.
Thanks for the hint.

Quote from: erikp01 on February 01, 2008, 07:24:31 AM
Does anybody have a french language file for Bakery?
rickieleejones2000 planed to do some translation work. See this and the next post for further information:
   https://forum.websitebaker.org/index.php/topic,7834.msg48848.html#msg48848
   https://forum.websitebaker.org/index.php/topic,7834.msg48858.html#msg48858
I don't know if he has started the work yet. Just contact him:
   https://forum.websitebaker.org/index.php?action=pm;sa=send;u=6654

Best,
Christoph

erikp01

Does anybody have a french language file for Bakery?

erik

erikp01

Christoph,

on the product detail page and on step 1 the address entry page. I think the customer likes to see what he ordered at the time he gives name and address.

erik

freeSbee


Hi Erik

Quote from: erikp01 on January 31, 2008, 05:14:34 PM
I think the button VIEW CART should be visible during the whole shopping process.
What exactly would be your suggestion? To show a VIEW CART button on step 1 to 3 of the submit order pages?

Best,
Christoph

erikp01

Christoph,

I think the button VIEW CART should be visible during the whole shopping process.
This can only give more confidence to the customer.
What do you think?


erik

erikp01

Christoph,

OK this is it, it must be set to a higher amount. :wink:
Everything works fine.

thnx
erik

freeSbee


Hi erikp01

I did not change anything about the shipping... !?

What value do you have set for "Free Shipping over:" in the "Shipping Settings" section of the Bakery "General Settings"?

Best,
Christoph

erikp01

#71
Christoph,
I just did the setup of the 0.82, now I see that the shipping is not added to the total.
I am working with domestic and abroad.


erik

freeSbee

#70

New Version of Bakery:

VERSION 0.82 (01/31/2008)


  • Corrected tax calculation for prices including tax (brutto prices).
    Do not use older versions any more due to this error!
  • Added possability to use [ORDER_ID] in the email templates.

Christoph


DOWNLOAD REMOVED
Please download the latest version from the Bakery Website.


freeSbee

Hi Peter

Quote from: doxynder on January 29, 2008, 05:52:03 PM
// Replace vars with values
$vars = array('[CUSTOMER_NAME]', '[SHOP_NAME]', '[BANK_ACCOUNT]', '[CUST_ADDRESS]', '[ITEM_LIST]', '[ORDER_ID]' );
$values = array($cust_name, $setting_shop_name, $setting_bank_account, $email_cust_address, $email_item_list, $order_id);

Thanks for that -- I will put it into the next version of Bakery.

Best,
Christoph


doxynder

Thanks for the fast answer!

i´ve seen the order id in the subject but i also needed it in the email...because i need the reason for Payment with an speciefied number - people shoud know what to fill in.

// Replace vars with values
$vars = array('[CUSTOMER_NAME]', '[SHOP_NAME]', '[BANK_ACCOUNT]', '[CUST_ADDRESS]', '[ITEM_LIST]', '[ORDER_ID]' );
$values = array($cust_name, $setting_shop_name, $setting_bank_account, $email_cust_address, $email_item_list, $order_id);

in the backend i added [order_id]

i really don´t know what i´m doing here, but it works (never done something in php). but i´m trying

peter

freeSbee

Hi Peter
Thanks for feedback!

Quote from: doxynder on January 29, 2008, 04:54:17 PM
But how can i implement the order_nr in the email?
The order_id is actually sent in the subject of the email.

Best,
Christoph

doxynder

Great Module!

really easy to use! one question:

But how can i implement the order_nr in the email?

I need this for the costumers: reason for payment/Verwendungszweck

i tried to implement the "order_id" but all attempts were in vain (in backend)

Peter

freeSbee

#65

New Version of Bakery:

VERSION 0.81 (01/19/2008)


  • Changed the way of displaying the order summary:

    • Subtotal: Just calculates the total cost of items without any shipping per item.
    • Shipping: Calculates the total shipping costs including shipping per item.
  • Added a missing language var $MOD_BAKERY['ERR_INVAL_STATE'].
  • Made some corrections to the English language file.
  • Replaced the error, success and information icons by new ones.
  • Fixed a bug that caused a warning when the user did select no zone country in the general settings.
  • Changed the concept of "Proceed Shopping URL" to "Continue Shopping URL".

Christoph


DOWNLOAD REMOVED
Please download the latest version from the Bakery Website.

dhdesign

Using version 0.8 just downloaded a couple of days ago, I am getting this same error when trying to save the General Settings:

Warning: implode() [function.implode]: Bad arguments. in /home/[nnnnnnnnnnn/wb directory]/modules/bakery/save_general_settings.php on line 50
Success


You responded to the OP with this error that you had fixed it. Is that fix to be included in the next version, or is it possible to patch 0.8 to correct this?

Thanks in advance!


freeSbee

Quote from: applepie on January 12, 2008, 09:09:07 AM
Why is this mod not available in 'Addons' page?

Hi applepie
I am still working on it -- but it will soon...

Quote from: xram13 on January 12, 2008, 06:09:07 PM
The option's on my producs have different prices on them. Any way I can include those prices in the calculations of the shopping cart ?

Hi xram13
Sorry, no...
Quote from: freeSbee on November 14, 2007, 08:39:05 AM
ITEM OPTIONS
...
Bakery supports one option for every item as long as the price stays the same for every attribute.

@applepie & @ xram13
Thanks for the catch!

Best,
Christoph

xram13

Hi

Thanks for a great module , I am still testing this, but so far everything works , I only have one comment/question

The option's on my producs have different prices on them. Any way I can include those prices in the calculations of the shopping cart ?

applepie

Hi guys, this is a very neat module. I have messing around with Gocart without success. This module gives me all I need. Thank you for sharing it. Why is this mod not available in 'Addons' page?

freeSbee

#60
Hi DGEC

Quote from: DGEC on January 10, 2008, 05:02:02 PM
- the English on page 3, payment option buttons is improper.  You should say "I will pay with PayPal" for example.
I would suggest something like... "Pay in Advance" and "Use PayPal" for the buttons.

Thanks for the hint and your suggestion. Made corrections to the EN.php file.

Quote from: DGEC on January 10, 2008, 05:02:02 PM
- I've never used PayPal - I assume they send a copy of the invoice to the buyer's email?

Yes, they do.

Quote from: DGEC on January 10, 2008, 05:02:02 PM
- also, are you doing anything with the Quantity field, a bunch of Javascript perhaps? Sometimes there is no visible cursor there. I was trying to click on it, and it looked like it wasn't "taking". But when I typed a number, it showed up, but still with no cursor.

No, no JS at all. Couldn't reproduce it either. Could anybody else?

Best,
Christoph