Forum

The forum is a free service supported by community members. Please consider opening a support ticket if you need timely help.

PrevPrev Go to previous topic
NextNext Go to next topic
Last Post 04 Mar 2011 09:59 PM by  Steve L
Cart Continue Shopping Link
 3 Replies
Sort:
You are not authorized to post a reply.
Author Messages


New Member


Posts:
New Member


--
04 Mar 2011 03:09 PM
    When I click on continue shopping link in the cart module I get redirected to the home page. Can I specify a different page?
    0


    Veteran Member


    Posts:2957
    Veteran Member


    --
    04 Mar 2011 03:27 PM
    Currently, you'll need to go to Configuration > Templates and create a new custom template for the Cart module control. In there, look for the continue shopping hyperlink and add the attribute style="display:none" to that tag so it hides it. Then add a new HTML tag:

    <a href="point it to where you want" >Continue Shopping...</a>

    Then under Configuration > Settings go to Cart --> Display Template and set it to the new custom template you just created.

    This is how customizations work and is a first class feature in the Storefront. You can now customize anything (look and feel) if you follow this procedure.
    0


    New Member


    Posts:
    New Member


    --
    04 Mar 2011 09:46 PM
    It works. This is what I did in the cart template:

    <td style="text-align: right">
    <asp:HyperLink ID="ContinueShoppingHyperLink" runat="server" style="display:none" resourcekey="ContinueShoppingHyperLink"></asp:HyperLink>
    <a href="/WebStore/StoreProducts/tabid/159/Default.aspx" >Continue Shopping...</a>
     <asp:Button ID="CheckoutButton" runat="server"
    onclick="CheckoutButton_Click" ValidationGroup="CartDisplayTemplateControl" resourcekey="CheckoutButton" />
    </td>
    0


    Veteran Member


    Posts:2957
    Veteran Member


    --
    04 Mar 2011 09:59 PM
    Beautiful. Thanks for sharing back!
    0
    You are not authorized to post a reply.