Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 4 of 4

Thread: Template switching by auth or not

  1. #1
    smoreo is offline Member
    Join Date
    Nov 2009
    Location
    Brooklyn, NY
    Posts
    36

    Default Template switching by auth or not

    I would like to not show the menu and cart data (you have# in your cart)before the user logs in, i am wondering if there is a way to have an alt template.ascx used when there is no user session and then switch after they log in?

  2. #2
    George the Great is offline Senior Member
    Join Date
    Nov 2006
    Location
    Cleveland, OH
    Posts
    1,792

    Default

    It's going to take a few modifications to do something like this, but if you look in App_Code/SkinBase.cs(.vb) you can check the customer object for the boolean IsRegistered value (IsRegistered will always be 0 unless the customer is logged into their account) and then based on this change the template that is being used.
    <a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>

  3. #3
    smoreo is offline Member
    Join Date
    Nov 2009
    Location
    Brooklyn, NY
    Posts
    36

    Default

    ok got it, so i will be able to determine if someone is logged in. How do i then tell the skin to change templates?

  4. #4
    vuelto is offline Junior Member
    Join Date
    Feb 2011
    Posts
    1

    Default /skins/skin_1/xmlpackages/rev.cart.xml.config

    This is how I did it.

    Add this to your template where you want your cart to appear...

    HTML Code:
    (!XmlPackage Name="rev.cart.xml.config"!)
    ...and create this in the appropriate directory...

    HTML Code:
    <?xml version="1.0" standalone="yes" ?>
    <!-- ###################################################################################################### -->
    <!-- Copyright AspDotNetStorefront.com, 1995-2009.  All Rights Reserved.					                -->
    <!-- [url]http://www.aspdotnetstorefront.com[/url]														                -->
    <!-- For details on this license please visit  the product homepage at the URL above.		                -->
    <!-- THE ABOVE NOTICE MUST REMAIN INTACT.                                                                   -->
    <!-- ###################################################################################################### -->
    <package version="2.1" displayname="Cart" debug="false" includeentityhelper="false">
      <PackageTransform>
        <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aspdnsf="urn:aspdnsf" exclude-result-prefixes="aspdnsf">
          <xsl:output method="html" omit-xml-declaration="yes"/>
    
          <xsl:template match="/">
            <xsl:param name="custName" select="/root/System/CustomerFirstName"></xsl:param>
            <xsl:choose>
              <xsl:when test="$custName != ''">
                <div id="cartBtn" style="text-align:center; clear:none; float:left; padding-right:20px;">
                  <a class="cart" href="shoppingcart.aspx">
                    <img align="middle" alt="Shopping Cart" src="skins/skin_(!SKINID!)/images/icons/cart.gif"  border="0" /><br />View Cart ((!NUM_CART_ITEMS!))
                  </a>
                </div>
                <div style="clear:none; float:left; margin-top: 32px;">
                  <span id="userName">(!USERNAME!)</span>
                  <span id="loginText">
                    <a href="(!SIGNINOUT_LINK!)">(!SIGNINOUT_TEXT!)</a>
                  </span>
                </div>
              </xsl:when>
            </xsl:choose>
          </xsl:template>
          
        </xsl:stylesheet>
      </PackageTransform>
    </package>