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

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

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #425 on: June 19, 2009, 02:34:12 PM »

New Version of Bakery:

VERSION 1.3.3 (06/19/2009)


VERSION HISTORY
  • When upgrading the db field lightbox2 is now added correctly (reported by snark)


DOWNLOAD
Download the zip file from the Bakery website:
http://www.bakery-shop.ch/#download


UPGRADE NOTES
Not all changes will be done automatically by the upgrade script when upgrading from a version prior v1.3 to v1.3.3. Still there will be some adaptations you have to do manually:
  • Before upgrading make a backup of at least the /media/bakery/ directory. You will have to reupload ALL item images using the Bakery backend.
  • Alternatively you can move image files manually using ftp. First make a directory structure like this:
    /media/bakery/thumbs/
    /media/bakery/images/

    Then add a directory for every item, eg.:
    /media/bakery/thumbs/item1/
    /media/bakery/images/item1/
    Move your image respectively thumb files to the corresponding directory.
    Use speaking image file names since they are used for the image <alt> and <title> tag and shown as the Lightbox2 caption. Underscores are replaced by spaces automatically.
    The item images and thumbs will be loaded automatically by Bakery.
  • Modify the item templates. Use the vars [THUMB], [THUMBS], [IMAGE] AND [IMAGES] to display images. The inserted images will be linked to the detail page or to the Lightbox2 depending on your page settings. So there is no more need to do this in your template.
    • [IMAGE] = Main item image - only displayed if selected at section "2. Product Images" of the "Add/modify item" page
    • [IMAGES] = All item images except for the item main image.
    • [THUMB] = Thumbnail of the main item image - only displayed if selected at section "2. Product Images" of the "Add/modify item" page
    • [THUMBS] = All thumbnails of the item images except for the item main image.


PLEASE NOTE
  • Bakery 1.3.3 provides new features (see version history above) like multiple item images or Lightbox2. The way how Bakery handles and stores images is changed basically. Please read the "Upgrade Notes" above.


Christoph

« Last Edit: June 21, 2009, 09:20:58 PM by freeSbee »
Logged

snark

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #426 on: June 22, 2009, 10:43:20 AM »
is it possible to have a wysiwyg field for the short description so we can style this piece of text to our need/liking
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #427 on: June 22, 2009, 11:15:19 AM »
Hi snark

Quote from: snark on June 22, 2009, 10:43:20 AM
is it possible to have a wysiwyg field for the short description so we can style this piece of text to our need/liking
Yes, you can do it quite simply. Open the file modify_item.php and locate the textarea name="description".
Use the wb function show_wysiwyg_editor() and implement it as it is done for the full_desc some lines below.

Regards Christoph
Logged

snark

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #428 on: June 22, 2009, 12:53:19 PM »
I tried that but no matter what I try, I the page won't load.. do you happen to have a 'modify_item.php with those extra's' lying around? ...

Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #429 on: June 22, 2009, 02:36:40 PM »
@snark
I've modified one for you...

WYSIWYG editor for item brief and item full description

Replace the files modify_item.php and save_item.php by the attached ones and you will get an "Add/Modify Item"-Page with 2 WYSIWYG editors, one for the item brief description and another one for the item full description. Requires Bakery v1.3 or later.

Christoph

[gelöscht durch Administrator]
Logged

snark

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #430 on: June 22, 2009, 02:49:25 PM »
ggggggggggggaaaaarr eatttt!!!!


I hope you will make this a standard feature for the next version

« Last Edit: June 22, 2009, 11:41:21 PM by snark »
Logged

cchhita

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #431 on: June 24, 2009, 05:54:26 AM »
Hi There!
Great plugin, it works fantastic.

Can someone please tell me if it is possible to set the length of characters in the short description?
I.e. when viewed in the category layout, I want all descriptions to be the same length, so all product blocks are the same size.

I looked in the forum, but cannot find anything there.

Thanks
Logged

Offline klok_pm

  • Posts: 28
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #432 on: June 24, 2009, 08:28:03 AM »
Let me post something to the forum for the first time. I just discovered WB since 2 months and i am very amazed by its simplicitiy.

About bakery. Just noticed a small bug in the latest release 1.3.3.

in modify_page_setting s.php  line 147

<input type="text" name="items_per_page" style="width: 35px" value="<? echo $fetch_content['items_per_page']; ?>" /> 0 = <?php echo $TEXT['UNLIMITED']; ?>        </td>

needs to be changed to:

<input type="text" name="items_per_page" style="width: 35px" value="<?php echo $fetch_content['items_per_page']; ?>" /> 0 = <?php echo $TEXT['UNLIMITED']; ?>        </td>

The opening tag for PHP was not correctly written. It was giving errors with me.

Can this be included in the next release? Thanks
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #433 on: June 24, 2009, 06:34:54 PM »
@cchhita
Hi cchhita
Sorry, I did not catch it. Where do you want to limit the lenght? In the backend or the frontend? Please be more detailed...


@klok_pm
Hi klok_pm
Thanks for the hint!
This only makes troubles if your php.ini directive short_open_tag is set to "0", default is "1". Anyway, I will fix it in the next version.

Regards Christoph
Logged

SlaY3R

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #434 on: June 25, 2009, 10:48:25 AM »
Hi FreeSbee,

When i pay with Mollie payment system. I receave (when the mony is tranfered to mollie) that the order is aborded.

So my order is lost and the costumer already payed for it.
Could you check if there is any problem with the postback action?

Some actions i did:
1 (firefox) ordered 1 product from 0,50 euro without any shipping kost or btw (can't get further on the bank selection page) (giving me a error thats its not posible to enter the ideal)

2 (firefox) Ordered 1 product from 1,00 euro + 1,00 euro shipping kost with 6%btw (total 2,00); returns : order is aborded.

3 (firefox) Ordered 1 product from 3,00 euro + 2,00 euro shipping kost with 6%btw (total 5,00); returns : order is aborded.

4 (firefox) Cleared table bakery_order and bakery_customer + ordered 1 product from 1,00 euro + 1,00 euro shipping kost (total 2,00); returns : Payment status or payment method not defined.

5 (google chrome) transaction successfull

6 Tested on a other system. (Chrome) and it worked successfull

PS. u use Bakery 1.32

Greets,

SlaY3R
« Last Edit: June 25, 2009, 01:51:35 PM by SlaY3R »
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #435 on: June 25, 2009, 02:01:40 PM »
Hi SlaY3R

Quote from: SlaY3R on June 25, 2009, 10:48:25 AM
When i pay with Mollie payment system. I receave (when the mony is tranfered to mollie) that the order is aborded.
So my order is lost and the costumer already payed for it.
Could you check if there is any problem with the postback action?
I guess your are testing on a local server, aren't you? This will not work out with payment gateways since they have to redirect customers back to your domain upon payment completion. And of course they cannot find an URL like http://localhost/pages/shop.php
Please try again on a webbased system and let me know about it.

Regards Christoph
Logged

SlaY3R

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #436 on: June 25, 2009, 02:03:21 PM »
Hi FreeSbee,

I tested on a webhosting. But i think the problem was .htaccess (password protected) so the redirection didn't work?

Also the latest 2 tests where working normal.

Btw nice work mate!

Greets,

SlaYeR
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #437 on: June 25, 2009, 02:29:16 PM »
Quote from: SlaY3R on June 25, 2009, 02:03:21 PM
Btw nice work mate!
Well SlaYeR, thank you for testing!
Logged

SlaY3R

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #438 on: June 25, 2009, 03:17:50 PM »
Hi FreeSbee,

Found another problem:

When i change the Input type from submit to image it wont work in IE (firefox etc its working) Its redirect me to the root of the webshop.

working:
Code: [Select]
<input type="submit" name="cart" class="mod_bakery_bt_add_f" value="[ADD_TO_CART]" />
Not working in IE:
Code: [Select]
<input type="IMAGE" name="cart" class="mod_bakery_bt_add_f"  value="[ADD_TO_CART]" src="http://dummyurl/media/webshop/addchart.png"/>
Do you know why?



Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #439 on: June 25, 2009, 03:24:57 PM »
@ SlaY3R
http://www.bakery-shop.ch/#buttons
Logged

toggle

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #440 on: June 26, 2009, 12:17:11 AM »
Great Module.
I have just one small issue.

I have a customer who sells T shirts for his club.

Customers can't order more than 1 item with multiple attributes. EG: they cant order 1 T shirt in size small then order the exact same T shirt in size large. Only the first one orderd is displayed. Is it possible to change this somewhere.

Many thanks in advance.
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #441 on: June 29, 2009, 02:49:47 PM »

New Version of Bakery:

VERSION 1.3.4 (06/29/2009)


VERSION HISTORY
Bakery 1.3.4 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 Luckyluke

  • Posts: 556
  • Gender: Male
  • Let's Rock
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #442 on: June 29, 2009, 05:53:21 PM »
Hi,

Maybe I make some errors, but in the CSS is an item [BANK_ACCOUNT]. But where can I put this value?

Grtz,
Luc
Logged

snark

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #443 on: June 29, 2009, 06:59:14 PM »
is it possible to display the [thumb] in another size than  [thumbs]

I would like the [thumb] rather big, lets say 200px and the [thumbs] quite small, otherwise they take up too much space in the detailpage, lets say 100px

Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #444 on: June 29, 2009, 08:16:30 PM »
@Luckyluke
Hi Luckyluke

Use [BANK_ACCOUNT] in the email and the invoice templates.
For further information see the help page at "page settings" > "help" and "payment methods settings" > "help" that provides a list of keys to all variables used in the Bakery HTML and email templates.
http://www.bakery-shop.ch/#templates



@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.

Regards Christoph

Logged

Offline Luckyluke

  • Posts: 556
  • Gender: Male
  • Let's Rock
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #445 on: June 29, 2009, 10:25:01 PM »
Quote from: freeSbee on June 29, 2009, 08:16:30 PM

Use [BANK_ACCOUNT] in the email and the invoice templates.
For further information see the help page at "page settings" > "help" and "payment methods settings" > "help" that provides a list of keys to all variables used in the Bakery HTML and email templates.
http://www.bakery-shop.ch/#templates


Hi,
I know about this [BANK_ACCOUNT] settings in the email and invoice templates.
But where can I put the bank account number? In previous versions, it was in the page settings. Now, it's gone.
Luc
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #446 on: June 30, 2009, 08:48:37 AM »
Hi Luc

Quote from: Luckyluke on June 29, 2009, 10:25:01 PM
But where can I put the bank account number? In previous versions, it was in the page settings. Now, it's gone.
Bakery Page > Payment Methods > Modify Payment Method (select) Invoice > Invoice Settings: Shop Bank Account:

Regards Christoph
Logged

lleighh2

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #447 on: July 01, 2009, 10:25:33 PM »
Not sure why, but my shop is not adding in the shipping costs. It displays in the cart but doesn't get added toward the total. I added in the rate in the stock admin page. Is that the right place?

I also tried adding in a fee for gift wrapping. That didn't even show up in the cart. Which file should I edit?

http://thehappymagpie.com/pages/shoppingtest.php
Logged

snark

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #448 on: July 02, 2009, 08:05:49 AM »
is there a way to to the following:

if you leave open the pricefield it now displays '0,00'


is it possible to get 'ask for price' if you do not fill in the price
Logged

freeSbee

  • Guest
Re: Bakery: Small Shop Module (ORIGINAL TOPIC)
« Reply #449 on: July 02, 2009, 10:44:22 AM »

@lleighh2
Quote from: lleighh2 on July 01, 2009, 10:25:33 PM
Not sure why, but my shop is not adding in the shipping costs. It displays in the cart but doesn't get added toward the total. I added in the rate in the stock admin page. Is that the right place?
I also tried adding in a fee for gift wrapping. That didn't even show up in the cart. Which file should I edit?
1. http://www.bakery-shop.ch/#free_shipping => Right now you have free shipping 'on'!
2. http://www.bakery-shop.ch/#shipping_total
3. http://www.bakery-shop.ch/#shipping

@snark
Quote from: snark on July 02, 2009, 08:05:49 AM
if you leave open the pricefield it now displays '0,00'
is it possible to get 'ask for price' if you do not fill in the price
'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
« Last Edit: July 03, 2009, 08:48:30 AM by freeSbee »
Logged

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