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

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

Offline Boudi

  • Posts: 1190
  • Gender: Male
  • //o_-\\
    • Yze Webdesign
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #550 on: November 03, 2009, 01:50:57 PM »
Hi,

A client of me has several bakery shops on their website. They do a lot in clothing. They have an optionlist in which customers can choose their size. Eg: S,M,L,XL,XXL

The problem that they face is the order of these options. The order is alphabetical so you get L,M,S,XL,XXL

Can this be re-arranged to the correct option list settings?

Note: I found in this topic another issue about this, but that was about figures.

Any help would be appreciated.

Greetz,

Boudi
Logged
...:: Bake the Unbakable ::...

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #551 on: November 04, 2009, 04:04:45 PM »
Hi Boudi

Quote from: Boudi on November 03, 2009, 01:50:57 PM
The problem that they face is the order of these options. The order is alphabetical so you get L,M,S,XL,XXL
Can this be re-arranged to the correct option list settings?

Bakery does not support ordering of option attributes by default.
But try this workarround:

NOTE:
These modifications will affect ALL Bakery option attributes, not only the ones given in the example below. All option attributes will be ordered the same as the attribute_id.


1.
First go to the mod_bakery_attributes table in your database and reorder the attribute_id field in your own way.

For example:

attribute_id        option_id         attribute_name

     6                      2                        XXL
     7                      2                        L
     8                      2                        S
     9                      2                        XL
   10                      2                        M


Change db table to, eg.:

attribute_id          option_id         attribute_name

    10                        2                          XXL
      8                        2                          L
      6                        2                          S
      9                        2                          XL
      7                        2                          M


2.
Open the files view_overview.php and view_item.php. If you need the same ordering in the backend too, open modify_item.php and modify_options.php as well. Replace the code (all in all 5 times)
Code: [Select]
ORDER BY o.option_name, a.attribute_name ASC
by
Code: [Select]
ORDER BY a.attribute_id ASC

Regards Christoph
Logged

gilly

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #552 on: November 05, 2009, 06:49:34 AM »
does Bakery have any issues with the Aggregator module?

I have a site with the following setup:

online store (aggregator page)
- specials (aggregator page)
    - product page 1 (bakery page - no products)
    - product page 2 (bakery page - no products)
- current season (aggregator page)
    - product page 3 (bakery page - has products)
    - product page 4 (bakery page - has products)

Now the aggregator on the specials page works fine - it aggregates the product page 1 and 2. But the current season page does not work properly. Looking through the html that is output, there are links for the aggregated pages, but nothing inside the a tags, so the links are invisible.

It seems as soon as you add a product to one of the bakery pages, the aggregator stops working.

Any ideas why?
Logged

youecho

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #553 on: November 08, 2009, 06:38:36 PM »
Hi!

I have another question about the item options:

For example: i create an item "x" with a quantity of 7 pieces, and select the option "size" S, M, L.
How can i select that i have for example 2 items "x" size S, 1 item "x" size M and 4 items "x" size L?
Now it only gives the total quantity of the item, but when for example size M is sold out, you can still order it..

I hope you understand the problem, and more important, perhaps can give me a solution :)
Best regards,
Frans van Gastel / youecho
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #554 on: November 08, 2009, 08:12:59 PM »
Hi Frans

Quote from: youecho on November 08, 2009, 06:38:36 PM
For example: i create an item "x" with a quantity of 7 pieces, and select the option "size" S, M, L.
How can i select that i have for example 2 items "x" size S, 1 item "x" size M and 4 items "x" size L?
Now it only gives the total quantity of the item, but when for example size M is sold out, you can still order it..

Indeed, this is a known but still unsolved problem of Bakery.

Solving it for one option (eg. color) with 4 or 5 attributes (eg. red, blue, green...) would be easy. But what about 20 items with 2 or 3 options and 4 attributes each? Just calculate! And 20 items are not that much in a shop.

It is getting rather complicated. Therefor Bakery is still just taking account of items not regarding any options nor attributes.

Any suggestions on this subject are welcome!

Regards Christoph
Logged

Yippeekayaye

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #555 on: November 10, 2009, 04:56:52 PM »
For the next update...

I noticed a couple styles missing from backend.css

.row_a {    background-color:  #FFFFFF;}
.row_b {    background-color:  #E6EBF4;}

This color codes the rows in the backend
Logged

Offline Stefek

  • Posts: 6177
  • Gender: Male
  • ("ړ)
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #556 on: November 10, 2009, 05:23:35 PM »
Quote from: Yippeekayaye on November 10, 2009, 04:56:52 PM
For the next update...

I noticed a couple styles missing from backend.css

.row_a {    background-color:  #FFFFFF;}
.row_b {    background-color:  #E6EBF4;}

This color codes the rows in the backend
Hello.
Normally this Classes are defined in the Backend Theme.
You can go to admin>>settings>>general settings >> Backend-Theme and there you can switch the backend theme to another one.
Is there any difference?

Regards,
Stefek
« Last Edit: November 15, 2009, 10:59:53 PM by Stefek »
Logged
"Gemeinsam schafft man mehr."

gemeinsam
1. mehreren Personen oder Dingen in gleicher Weise gehörend, eigen
2. in Gemeinschaft [unternommen, zu bewältigen]; zusammen, miteinander
#Duden

eltremolo

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #557 on: November 14, 2009, 12:59:15 PM »
Hi
I need an upload function/field on the article detail page for customers  to upload a picture. should be sent e.g. with the order confirmation mail.
Any idea or tipps???
Logged

Offline zirzy

  • Posts: 178
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #558 on: November 15, 2009, 10:52:03 PM »
Quote from: zarathustra.at on August 03, 2009, 10:04:38 AM
I think this has to do with allowed special characters - you have to define which special characters are allowed:

(in your case i suppose) in file bakery/languages/SE.php

    $MOD_BAKERY['ADD_REGEXP_CHARS'] = 'ÄÖÜäöüß';

make sure the file is encoded the same as your WB installation.

Hope this helps!

Hi guys!
I just dont get this.. I have translated bakery to finnish but the customer ordering form don´t understand åäö`s. Wiew.php has the // Check the textfields codes.. Should I put åäö´s there? I tried this also ($MOD_BAKERY['ADD_REGEXP_CHARS'] = 'ÄÖÜäöüß'; ) on few ways, but it did not work at all. Im doin somethin wrong but what?

Ihave test server on utf-8 and my customers server where shuold be the final version on iso-8859-1.

Is there someone who can help me?

THANKS!

Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #559 on: November 16, 2009, 08:32:49 AM »
Hi zirzy

http://www.bakery-shop.ch/#customer_address_form
http://www.bakery-shop.ch/#charset

Add your chars like "åäö" and other to the $MOD_BAKERY['ADD_REGEXP_CHARS'] var like this:
$MOD_BAKERY['ADD_REGEXP_CHARS'] = 'åäö';

Save your language file using iso-8859-1 encoding. This way both iso-8859-1 and utf8 should work fine.

Regards Christoph
Logged

Offline zirzy

  • Posts: 178
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #560 on: November 16, 2009, 07:29:08 PM »
Hey thanks Dude!! And thanks for so fast reply! I was lil dum :-D It works fine now! Great job. Many thanks to you :-)
Logged

daydreamer

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #561 on: November 18, 2009, 08:32:41 AM »
Anyone intrested in www.cardsave.net payment gateway??? If so would you pay towards getting this done by freeSbee?
Card Save is the UK's biggest credit card company please let me know.
Logged

youecho

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #562 on: November 19, 2009, 12:22:06 AM »
Hi Christoph,

Thanx again for your reply, and too bad its not yet possible to split the item-quantity for every option.. Hopefully it will be implemented in a future update..

Quote
Solving it for one option (eg. color) with 4 or 5 attributes (eg. red, blue, green...) would be easy.

You say its quite easy to achieve it for only one option (for example item x with options size S, M, L). Can you tell me step by step how i can do that? You would help me out a lot!

Thanx in advance.
Best regards,
Frans van Gastel
Logged

Ben Meijer

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #563 on: November 19, 2009, 10:18:04 AM »
Dear all,

Im trying to use bakery for selling online products, both Ebook and online video. This has a challange. Bakery is not really designed to do this. I have trouble uploading videos. I believe there are limits to the upload size with php?
Does anybody have any ideas how I can fix this? has anybody managed this?

1) uploading videos,selling E-books

Any suggestions?

Kind Regards
Ben Meijer
Logged

bigeddude

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #564 on: November 20, 2009, 12:26:44 AM »
To increase the allowable upload file size, you must modify the php.ini file on the web server.  If you use a hosting company, they should allow you to change this or they can change it for you.

The settings are -

upload_max_filesize = 30M
post_max_size = 30M

I think 2M is the default setting.
Logged

bigeddude

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #565 on: November 21, 2009, 12:00:33 AM »
I am using the version 1.4.1 with the mini cart using the ModBakeryMiniCart droplet.  Does anyone know of a way I can get the mini cart to not show up on the cart page.  It seems redundant and it is causing me some formatting headaches in my template but just on the page shown after the user clicks on 'view cart'. 
Logged

youecho

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #566 on: November 21, 2009, 12:56:02 PM »
Quote
Does anybody have any ideas how I can fix this? has anybody managed this?

1) uploading videos,selling E-books


Hello Ben Meijer,

I also tried to fix this upload problem, but couldnt solve it through changing the php.ini. Most of the hosting providers also have strict rules for that..

Thats why i found a java upload tool like Zupload or Jumploader, which can use FTP instead of HTTP requests.

http://sourceforge.net/projects/zupload/
http://jumploader.com/index.html

Easy to implement in your Webbaker admin environment.
Works like a charm for me.

Best regards,
Frans van Gastel

Logged

Offline weiry

  • Posts: 92
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #567 on: November 23, 2009, 06:26:14 AM »
This is a great module and fairly easy to customise.

I am trying to change the text that appears on the second page of the cart where you need to put a tick in the select box agreeing to the terms and conditions. Where can I update this text?

I have looked through numerous files in the module and can't seem to find it anywhere.

I am sure it is easy.

Thanks for your help in advance.

Weiry.
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #568 on: November 23, 2009, 08:39:42 AM »
Hi Weiry

Quote from: weiry on November 23, 2009, 06:26:14 AM
I am trying to change the text that appears on the second page of the cart where you need to put a tick in the select box agreeing to the terms and conditions. Where can I update this text?

http://www.bakery-shop.ch/#modify_text
It is in the $MOD_BAKERY['TXT_AGREE'] var.

Regards Christoph
Logged

Offline weiry

  • Posts: 92
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #569 on: November 23, 2009, 08:49:28 AM »
Hi Christoph,

Thanks for the reply.

Yes you are right that is the text, but the URL link is not contained there. Sorry I should have made that more specific in my post. I want it to reference a particular page for Terms & Conditions so I need to change that, not just the text.

Thanks,

Weiry.
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #570 on: November 23, 2009, 08:55:42 AM »
Hi Weiry

Quote from: weiry on November 23, 2009, 08:49:28 AM
Christoph,
I want it to reference a particular page for Terms & Conditions so I need to change that, not just the text.

http://www.bakery-shop.ch/#terms_and_conditions

Regards Christoph
Logged

Offline weiry

  • Posts: 92
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #571 on: November 23, 2009, 09:08:40 AM »
Thank you Christoph,

I indeed missed that!  :oops:

This is a great module and my client is very happy with the way in which it is working, it has certainly saved me many hours and $$. I will indeed bookmark the site you have given me and read that more carefully.

Thank you for getting back to me.

Regards,
Christopher.
Logged

Offline weiry

  • Posts: 92
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #572 on: November 26, 2009, 04:46:24 AM »
Hi Christoph,

I am having trouble with Captcha when I try to pay with PayPal. It is encrypting the PayPal account email address and thus give me an error.

It puts the email address as name(at)domainname(dot)COM(dot)au at the top of the PayPal screen when I opt to pay via PayPal.

I have the Frontend Output Filter disabled on the site as I am using the Droplet to encrypt the email addresses elsewhere on the site.

Some help to try and resolve this issue please.

Thanks.
Logged

Offline weiry

  • Posts: 92
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #573 on: November 26, 2009, 05:36:12 AM »
Just one other quick thing, when the stock level is zero, it doesn't bring up the number or image. If I go to order it, it then tells me that it is out of stock, but there is no reference to this on the actual shopping cart selection page.

Have checked the images and they are there, and the low and normal stock displays.

Thanks,
Weiry.
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #574 on: November 26, 2009, 02:35:44 PM »
Hi Weiry

Quote from: weiry on November 26, 2009, 04:46:24 AM
I am having trouble with Captcha when I try to pay with PayPal.
Captcha ? There is no Captcha in Bakery...


Quote from: weiry on November 26, 2009, 04:46:24 AM
It is encrypting the PayPal account email address and thus give me an error.
It puts the email address as name(at)domainname(dot)COM(dot)au at the top of the PayPal screen when I opt to pay via PayPal.
I have the Frontend Output Filter disabled on the site as I am using the Droplet to encrypt the email addresses elsewhere on the site.
I have never tested with the Droplet that encrypts the email addresses but I am virtually certain it is the reason for the malfunction on the checkout page. Please pm me the link to the page so I can check it.
Use the frontend output filter instead since Bakery can handle this kind of filtering.


Quote from: weiry on November 26, 2009, 05:36:12 AM
Just one other quick thing, when the stock level is zero, it doesn't bring up the number or image. If I go to order it, it then tells me that it is out of stock, but there is no reference to this on the actual shopping cart selection page.
This is a bug. I fixed it and it will be part of the next upgrade.
Thanks for reporting!

Regards Christoph
Logged

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