WebsiteBaker Logo
  • *
  • Templates
  • Help
  • Add-ons
  • Download
  • Home
*
Welcome, Guest. Please login or register.

Login with username, password and session length
 

News


WebsiteBaker 2.13.6 is now available!


Will it continue with WB? It goes on! | Geht es mit WB weiter? Es geht weiter!
https://forum.websitebaker.org/index.php/topic,32340.msg226702.html#msg226702


The forum email address board@websitebaker.org is working again
https://forum.websitebaker.org/index.php/topic,32358.0.html


R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WB
https://forum.websitebaker.org/index.php/topic,32355.0.html


* Support WebsiteBaker

Your donations will help to:

  • Pay for our dedicated server
  • Pay for domain registration
  • and much more!

You can donate by clicking on the button below.


  • Home
  • Help
  • Search
  • Login
  • Register

  • WebsiteBaker Community Forum »
  • WebsiteBaker Support (2.8.x) »
  • Bakery Shop »
  • Bakery: Small Shop Module (ORIGINAL TOPIC)
  • Print
Pages: 1 2 3 [4] 5 6 ... 34   Go Down

Author Topic: Bakery: Small Shop Module (ORIGINAL TOPIC)  (Read 583322 times)

Offline erikp01

  • Posts: 44
  • Gender: Male
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #75 on: February 01, 2008, 07:20:40 AM »
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
Logged

Offline erikp01

  • Posts: 44
  • Gender: Male
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #76 on: February 01, 2008, 07:24:31 AM »
Does anybody have a french language file for Bakery?

erik
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #77 on: February 01, 2008, 09:17:45 AM »

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
Logged

Offline erikp01

  • Posts: 44
  • Gender: Male
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #78 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_di v_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

Logged

Offline erikp01

  • Posts: 44
  • Gender: Male
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #79 on: February 01, 2008, 03:11:18 PM »
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
Logged

Offline Ruud

  • Posts: 3671
  • Gender: Male
  • Do not use PM for help! Please use the forum!
    • Dev4Me - Professional WebsiteBaker Development
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #80 on: February 01, 2008, 03:50:04 PM »
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)
Logged
Dev4me - WebsiteBaker modules - WBhelp.org

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #81 on: February 01, 2008, 09:40:43 PM »
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_di v_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:
Code: [Select]
// 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
 
Logged

brent

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #82 on: February 01, 2008, 10:19:59 PM »
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.
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #83 on: February 01, 2008, 10:49:32 PM »
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
Logged

Offline Ruud

  • Posts: 3671
  • Gender: Male
  • Do not use PM for help! Please use the forum!
    • Dev4Me - Professional WebsiteBaker Development
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #84 on: February 01, 2008, 10:57:28 PM »
Quote
It is possible and I will more probably than not implement it in the next version.

Thats good news. I'll be waiting.

In the meantime I am trying to translate the language files in Dutch.

Strange thing is that some words seems to be hardcoded?
For instance the word "Price" on the firstcatalog page. I can't find it in the language file or even in the view*.php files.

Am I missing something there?

Ruud
Logged
Dev4me - WebsiteBaker modules - WBhelp.org

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #85 on: February 01, 2008, 11:03:18 PM »
Quote from: RuudE on February 01, 2008, 10:57:28 PM
For instance the word "Price" on the firstcatalog page. I can't find it in the language file or even in the view*.php files.

Language file EN.php line 135:
$MOD_BAKERY['TXT_PRICE'] = 'Price';
Logged

Offline Ruud

  • Posts: 3671
  • Gender: Male
  • Do not use PM for help! Please use the forum!
    • Dev4Me - Professional WebsiteBaker Development
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #86 on: February 01, 2008, 11:17:11 PM »
Quote
Language file EN.php line 135:
$MOD_BAKERY['TXT_PRICE'] = 'Price';

my ne NL.php says:
$MOD_BAKERY['TXT_PRICE'] = 'Prijs';

The first page shows: Price
The details page shows: Price
The "view cart" page shows: Prijs

I renamed the DE.php to NL.php. The same thing happens.
It gets even stranger..
I renamed my NL.php to EN.php (started a fresh browser)
The word "Price" is not in there, but still shows in the first and details page.

I'm really lost here.

Ruud
Logged
Dev4me - WebsiteBaker modules - WBhelp.org

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #87 on: February 01, 2008, 11:30:18 PM »
Quote from: RuudE on February 01, 2008, 11:17:11 PM
..., but still shows in the first and details page.

No worry! It is in your Database...
At the moment you are adding a new Bakery page, Bakery creates the templates of the overview page and the detail page USING THE CURRENT LANGUAGE FILE!
Modify the templates at the "Layout Settings" section of the "Page Setttings".
Furthermore try to create a new Bakery page using NL.php you will see - no miracles!

Good n8!
Christoph

Logged

Offline Ruud

  • Posts: 3671
  • Gender: Male
  • Do not use PM for help! Please use the forum!
    • Dev4Me - Professional WebsiteBaker Development
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #88 on: February 01, 2008, 11:36:10 PM »
Ouch..

Looking at the templates I see what you mean.

A request for next version?

Can you change te templates to use variable names instead of hard coded data?
That way you could make it completely multilanguage (i think)

For now, I will recreate the pages to fix the problem.

Thanks,

Ruud
Logged
Dev4me - WebsiteBaker modules - WBhelp.org

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #89 on: February 01, 2008, 11:45:22 PM »
Quote from: RuudE on February 01, 2008, 03:50:04 PM
(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)

Which taxe rate would be applied to a eg. shipping based on a flat amount / number of items / percentage of subtotal...
Can anybody advise?

Thanks!
Logged

Offline erikp01

  • Posts: 44
  • Gender: Male
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #90 on: February 02, 2008, 10:13:34 AM »
FreeSbee,

thank your for the code improvement about the view_cart button, it is indeed better.

Now I am trying to make a snippet that shows a minicart.

Thanks again

erik
« Last Edit: February 02, 2008, 01:15:06 PM by erikp01 »
Logged

Offline Ruud

  • Posts: 3671
  • Gender: Male
  • Do not use PM for help! Please use the forum!
    • Dev4Me - Professional WebsiteBaker Development
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #91 on: February 02, 2008, 12:19:31 PM »
Quote
Which taxe rate would be applied to a eg. shipping based on a flat amount / number of items / percentage of subtotal...
Can anybody advise?

I would suggest to have just one tax rate for shipping. (select rate 1,2,3 or none)
I don't think there will be many shops using different tax rates for shipping.

Just calcuate the total shipping, and add the percentage.
So if shipping = €5.00,  the tax (dutch 19%) would be 5*.19=0.95 added to the tax and to the total.
(asuming the shop was set to pricing excl tax)


Thanks,

Ruud
Logged
Dev4me - WebsiteBaker modules - WBhelp.org

Offline erikp01

  • Posts: 44
  • Gender: Male
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #92 on: February 02, 2008, 02:08:14 PM »
Freesbee,

to have the cart content visbile at step 1 (form entry name and address) I did 2 things:

1°) downloaded view_cart.php and renamed to mini_cart.php. Deleted the code for the buttom display at 2 places. Saved and uploaded.
2°) in view.php  around line 228 I include the mini_cart.php just before the view_form.php include.

Code looks like this:

// MAKE ORDER    
        case $MOD_BAKERY['TXT_SUBMIT_ORDER']:
            include('mini_cart.php');
            include('view_form.php');
            return;
            break;

Works fine for me.
Logged

dhdesign

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #93 on: February 03, 2008, 09:19:49 PM »
I'd been playing around with version 0.81, making cosmetic changes in the shop's appearance, and everything was working fine - I could add products, add them to the cart, view the cart, etc.

This AM I uninstalled the module, then reinstalled the latest version of the module (0.82), did the general and page settings, added one product, and went to test things out. Whenever I try to add an item to the cart, all I get is a blank white page with this message "No input file specified." - I have to hit the back button in the browser to see the shop page again.

This is happening with a clean install of the module, not an upgrade.

Any ideas on what the problem might be?
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #94 on: February 03, 2008, 11:04:27 PM »
@dhdesign

I am certain this is not a Bakery message and fairly certain it is not a WB message at all. I suppose it is a server message.
Have a look at Bakeries file list and check if there are files missing on the server or may be corrupted. If true, upgrade to v0.83 I am going to post later on.
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #95 on: February 03, 2008, 11:07:25 PM »

New Version of Bakery:

VERSION 0.83 (02/03/2008)

  • Modified the item templates using more text vars instead of hard coded text to make them completely multilingual. Use the following vars additionaly to take advantage of:
    [TXT_ITEM], [TXT_SKU], [TXT_PRICE], [TXT_SHIPPING], [TXT_FULL_DESC], [TXT_SHIPPING_COST], [TXT_DOMESTIC], [TXT_ABROAD], [TXT_BACK]
  • Added feature to select a tax rate for shipping.
  • Added customer information about "Free Shipping" in the summary table.

Christoph


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

« Last Edit: June 29, 2009, 02:37:53 PM by freeSbee »
Logged

dhdesign

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #96 on: February 03, 2008, 11:46:29 PM »
Quote from: freeSbee on February 03, 2008, 11:04:27 PM
@dhdesign

I am certain this is not a Bakery message and fairly certain it is not a WB message at all. I suppose it is a server message.
Have a look at Bakeries file list and check if there are files missing on the server or may be corrupted. If true, upgrade to v0.83 I am going to post later on.
I've uninstalled 0.82, and have just done a fresh install of 0.83 from the zip file in your post above via the WB module installation interface. I've checked via FTP to be sure that all of the files made it up to the server, and they are all there.

I am getting the same error - "No input file specified" whenever I try to add an item to the cart.

I did not get this error with 0.81. I don't understand what is causing this problem with both of the latest versions.

Any help will be most appreciated!
Logged

Offline Ruud

  • Posts: 3671
  • Gender: Male
  • Do not use PM for help! Please use the forum!
    • Dev4Me - Professional WebsiteBaker Development
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #97 on: February 03, 2008, 11:50:43 PM »
Quote from: freeSbee on February 03, 2008, 11:07:25 PM
New Version of Bakery:

VERSION 0.83 (02/03/2008)

Good news,

I'm a bit proud my comments made that much sense.  :wink:
I will start testing tommorow morning  (about midnight overhere) and let you (and the community) know.

Thanks already,

Ruud
Logged
Dev4me - WebsiteBaker modules - WBhelp.org

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #98 on: February 04, 2008, 09:41:41 AM »
Quote from: dhdesign on February 03, 2008, 11:46:29 PM
I've checked via FTP to be sure that all of the files made it up to the server, and they are all there.

Hi dhdesign

I am not sure about your problem but try this:
  • Delete all products in the shop.
  • Check via FTP if there are directories named "bakery" in the /pages and /media directory.
  • If true, delete them.
  • Add new products to the store and try again...

Best,
Christoph
Logged

Offline Ruud

  • Posts: 3671
  • Gender: Male
  • Do not use PM for help! Please use the forum!
    • Dev4Me - Professional WebsiteBaker Development
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #99 on: February 04, 2008, 11:25:52 AM »
Hi freeSbee,

It looks great. It works like a charm now.

I was still a bit puzzled by the multiple shipping rates (per item and a on top of that a total) but I read in this thread it was a request by someone. I will set the per-item-value to 0 strip it out of the details page template.

I will be working on optimizing my Dutch translation the next few days (Dutch grammar has some nasty things) and upload it here when its done.

Thanks again for all your good work.

Ruud
Logged
Dev4me - WebsiteBaker modules - WBhelp.org

  • Print
Pages: 1 2 3 [4] 5 6 ... 34   Go Up
  • WebsiteBaker Community Forum »
  • WebsiteBaker Support (2.8.x) »
  • Bakery Shop »
  • Bakery: Small Shop Module (ORIGINAL TOPIC)
 

  • SMF 2.0.19 | SMF © 2017, Simple Machines
  • XHTML
  • RSS
  • WAP2