Forums / Setup & design / Fetching basket (shop module)
Robin Sørlie
Monday 28 July 2003 8:11:05 am
Hi
In my pagelayout template I have a "box" on the right side which show the products in basket and total amount.
I have tried this:
{section name=Basket show=$basket.items|gt(0)}<input type="hidden" name="ProductItemIDList[]" value="{$Basket:ProductItem:item.id}" />
<table width="100%"> {section name=ProductItem loop=$basket.items} <tr> <td class="menybox" width="100%" colspan="2"><a class="menybox" href={concat("/content/view/full/",$Basket:ProductItem:item.node_id,"/")|ezurl}>{$Basket:ProductItem:item.item_count} x {$Basket:ProductItem:item.object_name|wash}{$Basket:ProductItem:item.item_count}</a> </td> {/section} </tr> <tr> <td class="menybox" width="50%">Total:</td> <td class="menybox" width="50%"></td> </tr> <tr> <td class="menybox" width="50%">{$basket.total_inc_vat|l10n(currency)}</td> <td class="menybox" width="50%">{$basket.total_ex_vat|l10n(currency)}</td> </tr> </table>{/section}
{section name=Basket show=$basket.items|lt(1) } You have no products in your basket. {/section}
This works fine when I'm in /shop/basket/, but not when browsing around for more products. I suppose I need a fetch function here, but how can I fetch from basket?
Bjørn Kaarstein
Tuesday 29 July 2003 1:49:26 am
Hi.
How about a little workaround...
If you use an Iframe to display the basket in your box, the box will always be in /shop/basket.
<iframe src={"http://myshop.no/shop/basket"|ezurl} height=800 width=300 scrolling=no frameborder=0></iframe>
If you use position:absolute around it, you can place it where you want.
I had to use something like this to include a mailform that contained checkboxes - linking to an ASP page on another site...
Regards Bjørn.
Tuesday 29 July 2003 5:57:37 am
Yes , thats a way, but this box is going to have another look than the basket page. I know there is supposed to be another way. Found this on the forum [url]http://www.ez.no/developer/ez_publish_3/forum/developer/referencing_shop_baskets_when_continuing_shopping[/url]
But I'm not sure what Bård is thinking about.
-Robin
Tuesday 29 July 2003 6:09:48 am
But thanks for the tips, I will use this in an another part of the site...