Help! I am trying to implement the ratings and reviews from Toolkit on my CSSUI store which has short links like this
http://MYDOMAIN.com/p/product-name.html
If I need the long url to make the following code work my long url would be
http://MYDOMAIN.com/merchant2/merchant.mvc?
Store_code=ABCD&Screen=PROD&Product_Code=product-name
The code below has me stumped. It is to open up the screen to write a review.Can anyone help? (I am using p instead of PROD in my short links) Thank you in advance for any help you can provide changing the URLs to work with my store.
<!-- begin links to write a review //-->
<mvt:if expr="NOT g.review">
<br />
<mvt:if expr="g.basket:cust_id GT 0">
<a href="&mvt:global:sessionurl;Store_Code=&mvta:glob al:store:code;&Screen=PROD&Product_Code=&m vta:global:Product_Code;&review=1" title="Review this product">
<mvt:else>
<a href="&mvt:global:secure_sessionurl;Store_Code=&mv ta:global:store:code;&Screen=LOGN&Product_ Code=&mvta:global:Product_Code;" title="Review this product">Login and
</mvt:if>
<mvt:if expr="NOT g.reviews">
be the first to write a review</a>
<mvt:else>
<mvt:if expr="g.basket:cust_id GT 0">
Write a review</a>
<mvt:else>
write a review</a>
</mvt:if>
</mvt:if>
http://MYDOMAIN.com/p/product-name.html
If I need the long url to make the following code work my long url would be
http://MYDOMAIN.com/merchant2/merchant.mvc?
Store_code=ABCD&Screen=PROD&Product_Code=product-name
The code below has me stumped. It is to open up the screen to write a review.Can anyone help? (I am using p instead of PROD in my short links) Thank you in advance for any help you can provide changing the URLs to work with my store.
<!-- begin links to write a review //-->
<mvt:if expr="NOT g.review">
<br />
<mvt:if expr="g.basket:cust_id GT 0">
<a href="&mvt:global:sessionurl;Store_Code=&mvta:glob al:store:code;&Screen=PROD&Product_Code=&m vta:global:Product_Code;&review=1" title="Review this product">
<mvt:else>
<a href="&mvt:global:secure_sessionurl;Store_Code=&mv ta:global:store:code;&Screen=LOGN&Product_ Code=&mvta:global:Product_Code;" title="Review this product">Login and
</mvt:if>
<mvt:if expr="NOT g.reviews">
be the first to write a review</a>
<mvt:else>
<mvt:if expr="g.basket:cust_id GT 0">
Write a review</a>
<mvt:else>
write a review</a>
</mvt:if>
</mvt:if>
Comment