Hi all
I have a Shop based on NB-Store 2.3.5 which basically works great - first thanks for this great product!
Now my customer has a little problem identifying the products in the order for shipping, because if the client clicks "buy" in the productlist, it seems that the product-id is not passed to the system - in the order there is only a link to the productlists page where the product is/was on it, not to the product detail page as expected
if someone clicks "buy" in the productdetail page then the link in the cart/order is correct and leads to the product detail page
Can someone tell me if this is by design or if there may be something wrong in my templates?
thanks in advance
Don
Example BUY Link from the productlist page:
http://.../shop/CatID/2/Girls
Example Buy-Link from the Product Detail page of the same product:
http://.../shop/__ProdID/673/__CatID/2/Pink_Sneakers
Product List Template:
I have a Shop based on NB-Store 2.3.5 which basically works great - first thanks for this great product!
Now my customer has a little problem identifying the products in the order for shipping, because if the client clicks "buy" in the productlist, it seems that the product-id is not passed to the system - in the order there is only a link to the productlists page where the product is/was on it, not to the product detail page as expected
if someone clicks "buy" in the productdetail page then the link in the cart/order is correct and leads to the product detail page
Can someone tell me if this is by design or if there may be something wrong in my templates?
thanks in advance
Don
Example BUY Link from the productlist page:
javascript:WebForm_DoPostBackWithOptions(new%20WebForm_PostBackOptions("dnn$ctr420$ProductList$dlProductList$ctl00$ctl23",%20"",%20true,%20"",%20"",%20false,%20true))
Url of the Productlist page this product is on :http://.../shop/CatID/2/Girls
Example Buy-Link from the Product Detail page of the same product:
javascript:WebForm_DoPostBackWithOptions(new%20WebForm_PostBackOptions("dnn$ctr420$ProductList$dlProductDetail$ctl00$ctl44",%20"",%20true,%20"",%20"",%20false,%20true))
Url of the Productdetail page of this product :http://.../shop/__ProdID/673/__CatID/2/Pink_Sneakers
Product List Template:
<div class="ListItemWrap ListItem [TAG:XMLDATA:genxml/dropdownlist/catcolor] [TAG:TEST:<prop TestType='setting' TestName='productlistrows.flag' TestValue='1' Action='Show' />]Rows[TAG:END]">
<div class="ListItemImage">
<a href="[TAG:LINK]">
<img alt="[TAG:PRODUCTNAME]" border="0" src="[TAG:IMAGEURL]" />
[TAG:TEST:<prop TestType="isOnSale" Action="Show" />]<!-- Sale Pricing -->
<img alt="Aktion!" class="OnSaleOverlay" src="/Desktopmodules/nb_store/img/OnSaleOverlay.png" style="width:110px;height:48px" border="0" />
[TAG:END]
</a>
</div>
<div class="ListItemBottom">
<div class="ListItemLeft">
<div class="ItemName">[TAG:MANUFACTURER]</div>
<div class="ItemSize">Größe [TAG:XMLDATA:genxml/dropdownlist/itemsize]</div>
</div>
<div class="ListItemRight">
<span class="RetailPrice">[TAG:FROMPRICECURRENCY]</span>
<span class="BuyButtonWrap">
<span class="BuyButtonArea">[TAG:ADDTOBASKET:<prop CssClass="BuyLink" Text="kaufen" />]</span>
<span class="ValueHidden">[TAG:QTY:<prop CssClass="QuantityField NormalTextBox" />]</span>
</span>
</div>
</div>
</div>