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

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

snark

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #450 on: July 02, 2009, 10:57:50 PM »
Quote
'Ask for price' in the frontend? A kind of textfield to let customers enter a price?
If so alter the HTML of the templates.

Regards Christoph


no... I have some stuff I cannot give a price, people have to get in touch to hear the price... when I put no price in the pricefield it automatically makes it 0,00...

I wondered if there is a chance to change this default value to 'Ask me' or 'mail for the price' or something like that

Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #451 on: July 03, 2009, 09:04:01 AM »
@snark
Quote from: snark on July 02, 2009, 10:57:50 PM
I have some stuff I cannot give a price, people have to get in touch to hear the price... when I put no price in the pricefield it automatically makes it 0,00...
I wondered if there is a chance to change this default value to 'Ask me' or 'mail for the price' or something like that
  • Make a new category: http://www.bakery-shop.ch/#categories
  • Modify the templates of this new page to fit your needs. That is to say delete the pricing and the "Add to cart" button and add a mailto link "Mail for the price"
  • Furthermore you could change the database field "price" from 'DECIMAL(9,2)' to 'VARCHAR(10)'. This way a blank field will not be converted to 0. But actually in your case this is not really needed.

Regards Christoph
« Last Edit: July 03, 2009, 08:36:56 PM by freeSbee »
Logged

Offline masarin

  • Posts: 56
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #452 on: July 03, 2009, 01:27:05 PM »
How can I make a multi lamguage Bakery shop?
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #453 on: July 03, 2009, 02:42:43 PM »
Quote from: masarin on July 03, 2009, 01:27:05 PM
How can I make a multi lamguage Bakery shop?

Hi Masarin
Bakery does not support multilingual websites by default.



But this might give you an idea of how you can work around.

1. Make different Bakery pages for every language by selecting different languages for every page.

2. Translate the email templates to the required languages. Make a multilingual email containing all localisations divided in different sections -  each section holding one translation. Save them in the Bakery > Payment Methods > Email Settings.



There is another approach described in this post:
https://forum.WebsiteBaker.org/index.php/topic,7834.msg66610.html#msg66610



Regards Christoph
« Last Edit: July 03, 2009, 08:34:57 PM by freeSbee »
Logged

infinex

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #454 on: July 03, 2009, 03:22:54 PM »
Hello,

I hope i am good in this topic.
I already serched on the forum to a problem i have, but cannot find it.

When i want to make a payment in Bakery with Paypal, paypal say:
This recipient does not accept payments denominated in WS_Error_XClick_Pre f_Foreign_Currency. Please contact the seller and ask him to update his payment receiving preferences to accept this currency.


Is there anyone whoe knows what i am doing wrong?

Marcel.
Logged

snark

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #455 on: July 04, 2009, 11:46:39 AM »
Quote from: freeSbee on July 03, 2009, 09:04:01 AM
Furthermore you could change the database field "price" from 'DECIMAL(9,2)' to 'VARCHAR(10)'. This way a blank field will not be converted to 0. But actually in your case this is not really needed.

wrong... this was exactly what I needed and I could have thought of that myself... thanks

Logged

snark

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #456 on: July 04, 2009, 01:13:00 PM »
Quote from: freeSbee on June 29, 2009, 08:16:30 PM

@snark
Hi snark

You can use the WB "Browse Media" section to browse, add, overwrite or delete any Bakery thumbs and images. The thumbs and images of eg. item_id 1 are located at
/media/bakery/thumbs/item1/
/media/bakery/images/item1/

Make sure a thumb and a corresponding image have the same file name. Thumbs must have the extension .jpg.


did it in a better way...

somewhere around line 1127 I changed:
Code: [Select]
$thumb_append = "' alt='".$img_title."' title='".$img_title." ' class='mod_bakery_item_thumb_f' /></a>"; to:
Code: [Select]
$thumb_append = "' alt='".$img_title."' title='".$img_title."' width='".$thumbwidth."' class='mod_bakery_item_thumb_f' /></a>";
( and added $thumbwidth=100; somewhere)


now all the [THUMBS] on the detail pages hav a width of 100 px while the thumb on the mainpage still is the original thumbsize


maybe this option to have different thumbsizes for summery and detailpage  could be added to the page settings in a future release


Logged

infinex

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #457 on: July 06, 2009, 08:25:51 PM »
Quote from: snark on July 04, 2009, 11:46:39 AM
Quote from: freeSbee on July 03, 2009, 09:04:01 AM
Furthermore you could change the database field "price" from 'DECIMAL(9,2)' to 'VARCHAR(10)'. This way a blank field will not be converted to 0. But actually in your case this is not really needed.

wrong... this was exactly what I needed and I could have thought of that myself... thanks



Thanks,
Logged

infinex

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #458 on: July 07, 2009, 03:13:03 PM »
Quote from: snark on July 04, 2009, 11:46:39 AM
Quote from: freeSbee on July 03, 2009, 09:04:01 AM
Furthermore you could change the database field "price" from 'DECIMAL(9,2)' to 'VARCHAR(10)'. This way a blank field will not be converted to 0. But actually in your case this is not really needed.

wrong... this was exactly what I needed and I could have thought of that myself... thanks



Now i changed the DECIMAL 9,2 in VARCHAR 10 but have another problem. I get:

This recipient does not accept payments denominated in WS_Error_XClick_Pre f_Foreign_Currency. Please contact the seller and ask him to update his payment receiving preferences to accept this currency.
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #459 on: July 07, 2009, 05:15:14 PM »
Hi Marcel

Quote from: infinex on July 03, 2009, 03:22:54 PM
When i want to make a payment in Bakery with Paypal, paypal say:
This recipient does not accept payments denominated in WS_Error_XClick_Pre f_Foreign_Currency. Please contact the seller and ask him to update his payment receiving preferences to accept this currency.
As the error message tells you this has to do with your PayPal payment receiving settings. If you do not know how to set them correctly please search the PayPal FAQ or contact PayPal customer support.

Regards Christoph
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #460 on: July 08, 2009, 02:56:12 PM »

New Version of Bakery:

VERSION 1.3.5 (07/08/2009)


VERSION HISTORY
Bakery 1.3.5 version history

KNOW HOW
Further information can be found on the Bakery Website.

DOWNLOAD
Download from the Bakery Website.

PLEASE NOTE
Please read the upgrade notes when upgrading to version 1.3 or later.


Christoph
Logged

Offline masarin

  • Posts: 56
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #461 on: July 08, 2009, 03:46:09 PM »
Quote from: freeSbee on July 03, 2009, 02:42:43 PM
Quote from: masarin on July 03, 2009, 01:27:05 PM
How can I make a multi lamguage Bakery shop?

Hi Masarin
Bakery does not support multilingual websites by default.



But this might give you an idea of how you can work around.

1. Make different Bakery pages for every language by selecting different languages for every page.

2. Translate the email templates to the required languages. Make a multilingual email containing all localisations divided in different sections -  each section holding one translation. Save them in the Bakery > Payment Methods > Email Settings.



There is another approach described in this post:
https://forum.WebsiteBaker.org/index.php/topic,7834.msg66610.html#msg66610



Regards Christoph

1. Make different Bakery pages for every language by selecting different languages for every page.

I set up Swedish and English like in the tutor
http://help.WebsiteBaker.org/pages/en/advanced-docu/designer-guide/multilingual-websites.php

2. Translate the email templates to the required languages. Make a multilingual email containing all localisations divided in different sections -  each section holding one translation. Save them in the Bakery > Payment Methods > Email Settings.

This I dont understand how to do. I dont have any file named Bakery > Payment Methods > Email Settings.
How do I devide the localisations with different sections? what kind of sections?
Logged

infinex

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #462 on: July 08, 2009, 07:23:51 PM »
Quote from: freeSbee on July 07, 2009, 05:15:14 PM
Hi Marcel

Quote from: infinex on July 03, 2009, 03:22:54 PM
When i want to make a payment in Bakery with Paypal, paypal say:
This recipient does not accept payments denominated in WS_Error_XClick_Pre f_Foreign_Currency. Please contact the seller and ask him to update his payment receiving preferences to accept this currency.
As the error message tells you this has to do with your PayPal payment receiving settings. If you do not know how to set them correctly please search the PayPal FAQ or contact PayPal customer support.

Regards Christoph

Thanks, for the answer. I call with Paypal i think.

Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #463 on: July 08, 2009, 09:52:27 PM »
Hi Masarin

Quote from: masarin on July 08, 2009, 03:46:09 PM
This I dont understand how to do. I dont have any file named Bakery > Payment Methods > Email Settings.
How do I devide the localisations with different sections? what kind of sections?
This is not a file. If you use version 1.1 or later the email templates are located at the   > Bakery Backend  > Payment Methods > Email Settings
http://www.bakery-shop.ch/#templates

Since all customers will get the same email with purchase details you have to write multilingual emails. I suggest to make multiple sections in the email, one section for each language.

Hope I could put my idea across to you.

Regards Christoph
Logged

lleighh2

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #464 on: July 09, 2009, 01:49:24 AM »
I'd like to add shipping only if the shopper orders 2 or more items. They get free shipping with 1 item.

Do I make changes in view_summary.php? If so, what and where? Thx.
Logged

Offline masarin

  • Posts: 56
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #465 on: July 09, 2009, 08:22:02 AM »
Does anyone have a Swedish language file to share?
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #466 on: July 09, 2009, 09:17:05 AM »
Quote from: masarin on July 09, 2009, 08:22:02 AM
Does anyone have a Swedish language file to share?
You might pm mmmike:
https://forum.WebsiteBaker.org/index.php?action=pm;sa=send;u=10720

Regards Christoph
Logged

Offline masarin

  • Posts: 56
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #467 on: July 09, 2009, 09:02:34 PM »
Quote from: freeSbee on July 08, 2009, 09:52:27 PM
Hi Masarin

Quote from: masarin on July 08, 2009, 03:46:09 PM
This I dont understand how to do. I dont have any file named Bakery > Payment Methods > Email Settings.
How do I devide the localisations with different sections? what kind of sections?
This is not a file. If you use version 1.1 or later the email templates are located at the   > Bakery Backend  > Payment Methods > Email Settings
http://www.bakery-shop.ch/#templates

Since all customers will get the same email with purchase details you have to write multilingual emails. I suggest to make multiple sections in the email, one section for each language.

Hope I could put my idea across to you.

Regards Christoph

I think I understand. I have to do one email for each payment method that inkludes both Swedish and English, and all customers will have an email in both Swedish and English. Am I getting this right?
So I make a new email template to include all languages into the same mail?

I am working on translating Bakery into Swedish, and when I translated the payment_methods I noticed that in every payment methods language file (payment_methods/advance/languages/EN.php) there is a email section (same as in Bakery Backend  > Payment Methods > Email Settings).
Is there no funktion for these implemented yet? or is there a way to use them?
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #468 on: July 09, 2009, 09:24:50 PM »
Hi Masarin

Quote from: masarin on July 09, 2009, 09:02:34 PM
I think I understand. I have to do one email for each payment method that inkludes both Swedish and English, and all customers will have an email in both Swedish and English. Am I getting this right?
So I make a new email template to include all languages into the same mail?
Yes, correct. Bakery was never intended to be multilingual. So, this is just a workaround.

Quote from: masarin on July 09, 2009, 09:02:34 PM
I am working on translating Bakery into Swedish, and when I translated the payment_methods I noticed that in every payment methods language file (payment_methods/advance/languages/EN.php) there is a email section (same as in Bakery Backend  > Payment Methods > Email Settings).
Is there no funktion for these implemented yet? or is there a way to use them?
These are the default email templates. Bakery uses the default WB language setting to determine which email template will be saved in the database for later modifications.

Regards Christoph
Logged

Offline masarin

  • Posts: 56
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #469 on: July 09, 2009, 09:42:47 PM »
Quote from: freeSbee on July 09, 2009, 09:24:50 PM
Hi Masarin

Quote from: masarin on July 09, 2009, 09:02:34 PM
I think I understand. I have to do one email for each payment method that inkludes both Swedish and English, and all customers will have an email in both Swedish and English. Am I getting this right?
So I make a new email template to include all languages into the same mail?
Yes, correct. Bakery was never intended to be multilingual. So, this is just a workaround.

Quote from: masarin on July 09, 2009, 09:02:34 PM
I am working on translating Bakery into Swedish, and when I translated the payment_methods I noticed that in every payment methods language file (payment_methods/advance/languages/EN.php) there is a email section (same as in Bakery Backend  > Payment Methods > Email Settings).
Is there no funktion for these implemented yet? or is there a way to use them?
These are the default email templates. Bakery uses the default WB language setting to determine which email template will be saved in the database for later modifications.

Regards Christoph

OK thank you for the quick answer.

Would it be difficult to make Bakery use these default email templates depending on witch language you chose for each Bakery Page? Then it would be easy to set up multilingual shops.

Regards Masarin
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #470 on: July 09, 2009, 09:53:34 PM »
Hi Masarin

Quote from: masarin on July 09, 2009, 09:42:47 PM
Would it be difficult to make Bakery use these default email templates depending on witch language you chose for each Bakery Page? Then it would be easy to set up multilingual shops.
No, I don't think it would be difficult if you do it without the feature to edit the email templates in the Bakery backend.

Regards Christoph
Logged

Offline masarin

  • Posts: 56
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #471 on: July 09, 2009, 11:07:26 PM »
Quote from: freeSbee on July 09, 2009, 09:53:34 PM
Hi Masarin

Quote from: masarin on July 09, 2009, 09:42:47 PM
Would it be difficult to make Bakery use these default email templates depending on witch language you chose for each Bakery Page? Then it would be easy to set up multilingual shops.
No, I don't think it would be difficult if you do it without the feature to edit the email templates in the Bakery backend.

Regards Christoph

Yes! Tell me how to do this. I can do without the bakery backend edit feature.
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #472 on: July 13, 2009, 10:30:06 PM »

New Version of Bakery:

VERSION 1.3.6 (07/13/2009)


VERSION HISTORY
Bakery 1.3.6 version history

KNOW HOW
Further information can be found on the Bakery Website.

DOWNLOAD
Download from the Bakery Website.

PLEASE NOTE
Please read the upgrade notes when upgrading to version 1.3 or later.


Christoph
Logged

Ben Meijer

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #473 on: July 14, 2009, 12:31:50 AM »
Hi super bakers,

I love this module! It looks very professional. Im playing around with it, trying to get this to work for my desires as well. I'm not a PHP guru.

Request:
I noticed that the AnyItems, LastItems,  Item Slide v0.2.0.7  , SimplePageHead v0.4GoogleSitemap v1.5 can all be installed by just installing the Mod, which is great, but still, for a non-PHP person, this requires quite some tinkering with the files. Is it not possible to integrate these options and have them as options you can just select (on/off).

Selling E-books? anybody?
I want to use bakery for selling video files & e-books which I want to have people see online. Has anybody already created such a construction?

This leads me to look into constructions where succesfull sale leads to an email coming with login details to a unique download page or a page where the videos are shown per video/item sold.


I noticed that I did not see anybody has created a log Ip snippet for matching secure logg-in (email) to a pc.
I found some code already for logging IP:

function getRealIpAddr()
{
    if (!empty($_SERVER['HTTP_CLIENT_IP']))   //check ip from share internet
    {
      $ip=$_SERVER['HTTP_CLIENT_IP'];
    }
    elseif (!empty($_SERVER['HTTP_X_FORWARDED_FO R']))   //to check ip is pass from proxy
    {
      $ip=$_SERVER['HTTP_X_FORWARDED_FO R'];
    }
    else
    {
      $ip=$_SERVER['REMOTE_ADDR'];
    }
    return $ip;
}


I plan to do more tinckering soon.


Kind regards,

Ben
Logged

lleighh2

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #474 on: July 14, 2009, 04:29:34 PM »
How do I add a textarea to the form on the cart summary page? I'd like customers to be able to send additional comments or requests (like about gift wrapping, etc) with their order.
Logged

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