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 2 of 2

Thread: Removing Regular Price from product page

  1. #1
    sam.bengtson is offline Member
    Join Date
    Jan 2011
    Posts
    64

    Default Removing Regular Price from product page

    My superiors have decided to have some extended pricing that actually increases prices for a couple of our "special" customers. This is a problem because they can see that they are being charged as you can see in the picture. Is there any way to modify or remove that line? Thanks

    Name:  Capture.JPG
Views: 87
Size:  15.9 KB

  2. #2
    sam.bengtson is offline Member
    Join Date
    Jan 2011
    Posts
    64

    Default

    Ah nevermind, solved my own problem.

    Code:
     <xsl:choose>
                                                    <xsl:when test="Price > ExtendedPrice">
                                                      
                                                      <xsl:value-of select="aspdnsf:GetVariantPrice(VariantID, number(HidePriceUntilCart), Price, SalePrice, ExtendedPrice, Points, $pSalesPromptName, TaxClassID)" disable-output-escaping="yes" />
                                                    </xsl:when>
                                                    <xsl:otherwise>
                                                      
                                                      Regular Price: $<xsl:value-of select='format-number(ExtendedPrice, "#.##")' disable-output-escaping="yes" />
                                                      
                                                    </xsl:otherwise>
                                                      </xsl:choose>