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 ... 19 20 [21] 22 23 ... 34   Go Down

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

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #500 on: August 21, 2009, 08:49:45 PM »
@haulakoski
Please search and read this thread befor posting.



@ vanbemmel
Quote from: vanbemmel on August 21, 2009, 02:59:06 PM
1. is it possible in the product detail page of Bakery to change the url /bakery/ to /shop/ ?
Try this (not tested):
Only apply to a new and clean (no items added) Bakery installation.

1. Localise the code below (2 times) at the save_item.php file:
Code: [Select]
'/bakery/'.page_filename($title)and replace it by
Code: [Select]
'/shop/'.page_filename($title)
2. Localise the code below (3 times) at the save_item.php file:
Code: [Select]
WB_PATH.PAGES_DIRECTORY.'/bakery/'and replace it by
Code: [Select]
WB_PATH.PAGES_DIRECTORY.'/shop/'

Quote from: vanbemmel on August 21, 2009, 02:59:06 PM
2. how can i display more information in the order mail then only the default information inside [ITEM_LIST]? 
For example i would like to add the title or description of the product.  Where can I change the content of [ITEM_LIST] ?
Try this (not tested):
1. At line about 52 of the view_summary.php file add the required fields like description and full_desc to the db query.

2. Localise the comment below (2 times) at the view_summary.php file:
Code: [Select]
// Make list of ordered items for e-mailRight after this comment you can add the required information using the appropriate vars like $items[$i]['description'].

Please give feedback!

Regards Christoph
Logged

mcollins

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #501 on: August 31, 2009, 10:39:41 AM »
Hi, sorry if this was asked before, but is it possible to hide the "EDIT CSS" & "PAGE SETTINGS" by user class. I have a helper that sets stuff up in the shop, and this helper will access this area. I would like to have it not seen, but seen by me.

Also something nice would be to have ( order admin, stock admin, general settings & payment settings) in the Admin-Tools area. Or even on the admin home page, a new small button called bakery, and in that section you will find those small settings.

I love the simplicity of this plugin, this is what has switched me over from using E107 to website baker. Very nice work on this, and thank you for all your hard work.
Logged

Offline D. Peeters

  • Posts: 128
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #502 on: August 31, 2009, 06:40:43 PM »
Is there a way by which I can auto fill-out the address form when someone is ordering (i'm modifying your shop module for businesses so all their employees can order stuff (all orders need to be delivered to one adress))??
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #503 on: September 01, 2009, 09:40:51 AM »
Hi mcollins

Quote from: mcollins on August 31, 2009, 10:39:41 AM
Hi, sorry if this was asked before, but is it possible to hide the "EDIT CSS" & "PAGE SETTINGS" by user class.
You can display Bakery settings to WebsiteBaker admin only:
Login to the Bakery backend as admin with user id = 1 > "General Settings" > "Settings:" and activate "Display Settings to Admin (id = 1) only".
This will hide general and page settings, payment methods and css settings from all other users than the admin with user id = 1.

Regards Christoph
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #504 on: September 01, 2009, 10:15:23 AM »
Hi Peeters

Quote from: Peeters on August 31, 2009, 06:40:43 PM
Is there a way by which I can auto fill-out the address form when someone is ordering (i'm modifying your shop module for businesses so all their employees can order stuff (all orders need to be delivered to one adress))??
Probably most convenient solution for your needs is to prepopulate the form fields by hard coded values.
Open the view_form.php file and go to the
// Make the form
and
// Make the shipping address form
comments.
Have a look at the arrays $cust_info and $ship_info. Redefine those two arrays and replace the values by your required ones.

Another possability might be this:
For logged in customers Bakery tries to get their address data of a previous order to prepopulat the address fields.
   http://www.bakery-shop.ch/#customer_address_form
Requires all employees to have an account and to be logged in when ordering. After the first order Bakery will auto fill-out the address using the given addresses.

Regards Christoph
Logged

Offline D. Peeters

  • Posts: 128
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #505 on: September 01, 2009, 08:00:14 PM »
Quote from: freeSbee on September 01, 2009, 10:15:23 AM
Probably most convenient solution for your needs is to prepopulate the form fields by hard coded values.

hmmm... for some reason it doesn't work.... any idea what I did wrong?

Quote from: freeSbee on September 01, 2009, 10:15:23 AM
For logged in customers Bakery tries to get their address data of a previous order to prepopulat the address fields.
   http://www.bakery-shop.ch/#customer_address_form
Requires all employees to have an account and to be logged in when ordering. After the first order Bakery will auto fill-out the address using the given addresses.

can i also put all data in the database as if they have already ordered? (order id's don't matter)
[/quote]

Logged

ghost06

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #506 on: September 02, 2009, 06:44:53 PM »
hello to all,
I am making the translation in Italian :lol:,
I say that it is possible to add to a field tax identification number customer in the form address?

thanks
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #507 on: September 02, 2009, 07:41:02 PM »
Ciao ghost06

Quote from: ghost06 on September 02, 2009, 06:44:53 PM
I am making the translation in Italian
Great - grazie mille! Please post upon completion!

Quote from: ghost06 on September 02, 2009, 06:44:53 PM
I say that it is possible to add to a field tax identification number customer in the form address?
Not by default. You have to code the additional field yourself.

Regards Christoph
Logged

ghost06

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #508 on: September 02, 2009, 08:21:21 PM »
Quote from: freeSbee on September 02, 2009, 07:41:02 PM
Ciao ghost06

Quote from: ghost06 on September 02, 2009, 06:44:53 PM
I am making the translation in Italian
Great - grazie mille! Please post upon completion!

okkk  :wink:

Quote from: freeSbee on September 02, 2009, 07:41:02 PM
Quote from: ghost06 on September 02, 2009, 06:44:53 PM
I say that it is possible to add to a field tax identification number customer in the form address?
Not by default. You have to code the additional field yourself.

Regards Christoph

I am not thus great! :-D

someone can make it? in many countries the field is obligatory tax identification number in order to make a purchase. a lot important is a thing :wink:
Logged

Offline D. Peeters

  • Posts: 128
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #509 on: September 04, 2009, 04:53:34 PM »
Quote from: freeSbee on September 01, 2009, 10:15:23 AM
Probably most convenient solution for your needs is to prepopulate the form fields by hard coded values.

hmmm... for some reason it doesn't work.... any idea what I did wrong?

Quote from: freeSbee on September 01, 2009, 10:15:23 AM
For logged in customers Bakery tries to get their address data of a previous order to prepopulat the address fields.
   http://www.bakery-shop.ch/#customer_address_form
Requires all employees to have an account and to be logged in when ordering. After the first order Bakery will auto fill-out the address using the given addresses.

can i also put all data in the database as if they have already ordered? (order id's don't matter)


[/quote]
Logged

daydreamer

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #510 on: September 06, 2009, 10:13:41 AM »
Change US states to UK has anyone got this or done this
Thanks
Logged

mcollins

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #511 on: September 08, 2009, 03:21:50 AM »
So can this be done: Something nice would be to have ( order admin, stock admin, general settings & payment settings) in the Admin-Tools area. Or even on the admin home page, a new small button called bakery, and in that section you will find those small settings.
Logged

mcollins

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #512 on: September 08, 2009, 06:21:28 AM »
In the print invoice, I would like to be able to place our company logo to the top of the page. When i go to images and upload new logo.jpg and logo.gif I get 550 error and not able to update the images there. Is there something I need to go to get this to update? I have gone through FTP and also through file manager in cpanel. Both options do not allow me to do this. I also tried changing the file perms to 777... still no luck...
Logged

mcollins

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #513 on: September 08, 2009, 07:47:07 AM »
Holy Cow Bayman... look at this... it is just sooo awsom!!! But with the goofyness out the way... this is what I would love to see. Seems like a real long way to go to pages/ shop page/ order administration, to see what the orders are and print them...

[gelöscht durch Administrator]
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #514 on: September 08, 2009, 10:19:26 AM »
Hi Mcollins

Quote from: mcollins on September 08, 2009, 06:21:28 AM
In the print invoice, I would like to be able to place our company logo to the top of the page. When i go to images and upload new logo.jpg and logo.gif I get 550 error and not able to update the images there. Is there something I need to go to get this to update? I have gone through FTP and also through file manager in cpanel. Both options do not allow me to do this. I also tried changing the file perms to 777... still no luck...
Please read this:
http://help.WebsiteBaker.org/pages/en/knowledge-base/files-and-permissions.php
and especially this:
http://help.WebsiteBaker.org/pages/en/knowledge-base/files-and-permissions.php#anker5

Regards Christoph
Logged

mcollins

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #515 on: September 08, 2009, 03:45:23 PM »
Fantastic Christoph... the webadmin worked a treat... Thank you very much. I was pulling my hair out at the fasct that the FTP and evencpanel file manager couldn't do what I needed.

Now, please may I ask again...

Quote from: mcollins on September 08, 2009, 03:21:50 AM
So can this be done: Something nice would be to have ( order admin, stock admin, general settings & payment settings) in the Admin-Tools area. Or even on the admin home page, a new small button called bakery, and in that section you will find those small settings.


I hope you enjoyed my artistic impression of what I would love to see. I think something so simple can compliment this software in its true simplistic form. This is why I am growing to love Bakery and WebsiteBaker...
Combined together make for true harmony.
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #516 on: September 08, 2009, 07:51:35 PM »
Hi mcollins

Quote from: mcollins on September 08, 2009, 03:21:50 AM
So can this be done: Something nice would be to have ( order admin, stock admin, general settings & payment settings) in the Admin-Tools area. Or even on the admin home page, a new small button called bakery, and in that section you will find those small settings.
Nice suggestion - but technically not feasible. This would concern WB core files and no Bakery files.

Edit: Here you will find a short tut on how to achieve it: https://forum.WebsiteBaker.org/index.php/topic,7834.msg98277.html#msg98277

Regards Christoph
« Last Edit: September 16, 2009, 09:26:14 AM by freeSbee »
Logged

mcollins

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #517 on: September 09, 2009, 01:59:08 AM »
So Christoph.... this can be done, but not by you? Possible a small colaboration with you and the WB Scripters could achiev such a thing to make something so fantastic even better? How hard would this be? Is this something that anyone could do? What kind of thread would I need to make in another section to get the right people on to it?
Logged

ghost06

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #518 on: September 09, 2009, 03:35:16 AM »
hello to all,
someone can help me?
I do not succeed to set up the tax on the products,

I have tried all the ways, but in the total I do not see the sum of the cost of product + 20% of taxes!

how I must make?

 :cry: :cry:
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #519 on: September 09, 2009, 09:09:53 AM »
Hi ghost06

Quote from: ghost06 on September 09, 2009, 03:35:16 AM
I have tried all the ways, but in the total I do not see the sum of the cost of product + 20% of taxes!
Tell us what exactly you have done!
Especially what settings (general settings and item settings) concerning taxes did you set?

Regards Christoph
Logged

ghost06

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #520 on: September 09, 2009, 12:46:45 PM »
Quote from: freeSbee on September 09, 2009, 09:09:53 AM
Hi ghost06

Quote from: ghost06 on September 09, 2009, 03:35:16 AM
I have tried all the ways, but in the total I do not see the sum of the cost of product + 20% of taxes!
Tell us what exactly you have done!
Especially what settings (general settings and item settings) concerning taxes did you set?

Regards Christoph

hello freeSbee, thanks for the answer,
I do not speak very well English, I put you the images of the configurations…

ps. soon I will give to you also the translation in Italian when l' I will have ended! :wink:

[gelöscht durch Administrator]
Logged

Offline mongbatstar

  • Posts: 2
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #521 on: September 09, 2009, 02:11:45 PM »
Sorry for my first post to be a nagging one and then to pull a post from another thread but I am in a situation similiar to the one described here;
https://forum.WebsiteBaker.org/index.php/topic,15099.0.html

Is there a straightforward way around this or am I able to edit the module to suit this requirement?

Thanks for your time.
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #522 on: September 09, 2009, 08:11:27 PM »
Hi ghost06

Quote from: ghost06 on September 09, 2009, 03:35:16 AM
I do not succeed to set up the tax on the products,
I have tried all the ways, but in the total I do not see the sum of the cost of product + 20% of taxes!

1. Taxes are shown at the summary page only (after customers have entered their address data).
2. Set "General Settings" > "Payment Settings" > "Tax" to "Shop Country"

Thanks a lot for translating Bakery!

Regards Christoph
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #523 on: September 09, 2009, 08:18:20 PM »
Hi mitmystery,
hi mongbatstar

Quote from: mitmystery on September 01, 2009, 04:28:35 PM
Essentially we sell products that require different shipping charges depending on the amount ordered. e.g. order eight and the shiiping price is per product. However order more than eight and price is per pallet so to speak. I have no idea how to set this up using the bakery module.
By default Bakery can not do it. Modify the php code of the view_summary.php file to fit your needs.

Regards Christoph
« Last Edit: September 09, 2009, 08:20:43 PM by freeSbee »
Logged

daydreamer

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #524 on: September 11, 2009, 11:48:02 AM »
Hi just wondered if anyone has intergrated Streamline as a payment option?
If not how would I go about doing this?

http://www.streamline.com/index.php
Logged

  • Print
Pages: 1 ... 19 20 [21] 22 23 ... 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