|
Home > Archive > WebSphere Commerce suite > June 2006 > Linking the Guided Sell Q&A tree to the sample store
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Linking the Guided Sell Q&A tree to the sample store
|
|
|
| Hi all,
I am working with WCS v6.0. I have created Q&A tree in Guided Sell using Commerce Accelerator. I am also able to preview it using the 'Preview' button. But how am I to link it to the store, so that when a customer clicks on that link it is directed to th
e Q&A tree created by me. I am working with sample stores - ConsumerDirect and AdvancedB2BDirect. Can anyone please help me on this?
Thanks in advance!
| |
|
| Try incuding this in the catgory display page ..
<table>
<tr>
<td>
<%-- The URL to display the Product Comparison Page --%>
<c:url var="paProductCompUrl" value="sgdPComp">
<c:param name="catalogId" value="${WCParam.catalogId}" />
<c:param name="storeId" value="${WCParam.storeId}" />
<c:param name="categoryId" value="${categoryId}" />
<c:param name="langId" value="${langId}" />
</c:url>
<a href="<c:out value="${paProductCompUrl}" />"> Product Comparison </a>
</td>
</tr>
<tr>
<td>
<%-- The URL to display the Product Exploration Page --%>
<c:url var="paProductExpUrl" value="sgdPExp">
<c:param name="catalogId" value="${WCParam.catalogId}" />
<c:param name="storeId" value="${WCParam.storeId}" />
<c:param name="categoryId" value="${categoryId}" />
<c:param name="langId" value="${langId}" />
</c:url>
<a href="<c:out value="${paProductExpUrl}" />"> Product Exploration </a>
</td>
</tr>
<tr>
<td>
<%-- The URL to display the Guided Sell Page --%>
<c:url var="paGuidedSellUrl" value="sgdGSell">
<c:param name="catalogId" value="${WCParam.catalogId}" />
<c:param name="storeId" value="${WCParam.storeId}" />
<c:param name="categoryId" value="${categoryId}" />
<c:param name="langId" value="${langId}" />
</c:url>
<a href="<c:out value="${paGuidedSellUrl}" />"> Guided Sell </a>
</td>
</tr>
</table>
|
|
|
|
|