WebsiteBaker Support (2.8.x) > Bakery Shop

Bakery: Small Shop Module (ORIGINAL TOPIC)

<< < (147/167) > >>

sozanski:

--- Quote from: freeSbee on March 26, 2010, 05:23:21 PM ---Hi Kevin


--- Quote from: sozanski on March 25, 2010, 01:09:17 PM ---I've recently switched my "add to cart" submit button to an image [button ...]
This works in both Firefox and Chroom, and guess what, it doesnt work in IE (no version whatsoever).

--- End quote ---

Add to the view.php file right after the comment

--- Code: ---GENERATE ORDER ID FOR NEW ORDERS
--- End code ---
the code below:

--- Code: ---if (isset($_POST['add_to_cart_x']) && $_POST['add_to_cart_x'] != '') {
$_POST['add_to_cart'] = 1;
}

--- End code ---
To achieve the same result for all shop navigation buttons use this code:

--- Code: ---foreach ($_POST as $key => $value) {
$count = 0;
$ie_post_key = str_replace('_x', '', $key, $count);
if ($count > 0) {
$_POST[$ie_post_key] = 1;
}
}

--- End code ---

Regards Christoph

--- End quote ---

Thanks for the quick response, it works like a charm for both the add to cart buttons and other shop navigation ones!

sozanski:
I know Iam asking alot and Im gonna ask one more question :P

Is it possible in any way to NOT show the WYSIWYG content above the bakery product pages, payment process and shopping cart pages etc? For SEO reasons I have descriptions of products on the product categorie pages themself.

Thanks again in advance.

freeSbee:
Hi Kevin

You can achieve this by adding your html content to the product overview template at "Page Settings" => "Layout Settings" => "Overview (Header)".

Regards Christoph

sozanski:

--- Quote from: freeSbee on March 28, 2010, 04:17:44 PM ---Hi Kevin

You can achieve this by adding your html content to the product overview template at "Page Settings" => "Layout Settings" => "Overview (Header)".

Regards Christoph

--- End quote ---

Oh, wow, how dumb of me not to realise that.. Muchos gracias again senor!

One thing tho, this means that whenever I want to tweak the product loop or product footer layout I need to manually do this on all pages. Anyway I can exclude the Header from the saving process?

cmolina:
Greetings.

I'm looking for bakery module. I'm impressing for this module. Very easu to use, and fully integrated with WB. Great job.

I want to propose some features for this module that can jump it to next level. I can help with anything, but I have a few years that cannot make any code.

First feature that is very important to implement is ACL for users. For example. would be great if WebsiteBaker admin, can add a new users and assign some permissions to bakery. For example, user A can only add products, but cannot modify shop settings, page settings, etc.

User B can add and modify products, but caanot delete it, or modify inventory properties.

I don't know if this feature is hard or easy to implement, but I think that is necessary.

Thanks a lot

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version