WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Bakery Shop => Topic started by: daydreamer on July 31, 2013, 02:14:10 PM

Title: Last Items add to cart
Post by: daydreamer on July 31, 2013, 02:14:10 PM
How can I show add to cart on last items please?
Title: Re: Last Items add to cart
Post by: jacobi22 on July 31, 2013, 02:43:24 PM
read here -> http://www.bakery-shop.ch/#lastitems
Title: Re: Last Items add to cart
Post by: daydreamer on July 31, 2013, 02:51:42 PM
No mention of showing the add to cart button on there.
Title: Re: Last Items add to cart
Post by: freeSbee on August 03, 2013, 10:08:24 PM
Hi daydreamer

Use a droplet:
http://www.bakery-shop.ch/#modbakerycartlink

Or use a code example given below. Make sure you only use it within the templates of the Bakery page settings:
   
As a link:
<a href="[SHOP_URL]?view_cart=yes">[VIEW_CART]</a>

As a button (requires JS):
<input type="button" name="view_cart" value="[VIEW_CART]" class="mod_bakery_bt_cart_ f" onclick="javascript: window.location = '[SHOP_URL]?view_cart=yes';" />
   
As a submit button:
<form action="[SHOP_URL]" method="post">
<input type="submit" name="view_cart" value="[VIEW_CART]" class="mod_bakery_bt_cart_ f" />
</form>

Regards Christoph