Announcement

Collapse
No announcement yet.

Toolkit Ratings and Reviews Woes - Correct URLs for CSSUI store using short links

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Toolkit Ratings and Reviews Woes - Correct URLs for CSSUI store using short links

    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;&amp;Screen=PROD&amp;Product_Code=&m vta:global:Product_Code;&amp;review=1" title="Review this product">
    <mvt:else>
    <a href="&mvt:global:secure_sessionurl;Store_Code=&mv ta:global:store:code;&amp;Screen=LOGN&amp;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>
    Last edited by Spinner; 07-26-14, 08:44 AM.

    #2
    Re: Toolkit Ratings and Reviews Woes - Correct URLs for CSSUI store using short links

    You just need to update the links above to use the search friendly format.Try something like this** For some reason this is not outputting the format correctly.Here is the correct URL structure for your short links.
    Code:
    /p/&mvta:global:Product_Code;.html&review=1
    This would replace the long Miva link above.
    Last edited by Brennan; 07-28-14, 07:28 AM.
    Brennan Heyde
    VP Product
    Miva, Inc.
    [email protected]
    https://www.miva.com

    Comment


      #3
      Re: Toolkit Ratings and Reviews Woes - Correct URLs for CSSUI store using short links

      Brennan, Thank you! It looks like it will work but it doesn't, so there must be something somewhere else in the RRPROD template that I need to change. I have sent in a ticket to Emporium plus to see if they can help. The problem is the ratings and reviews function was written for an MMUI store and my store is a CSSUI with short links enabled. Thank you for your help! Sincerely, Iris
      Last edited by Spinner; 07-28-14, 11:22 AM.

      Comment

      Working...
      X