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: Customer Name

  1. #1
    chrismartz is offline Senior Member
    Join Date
    Apr 2010
    Posts
    339

    Default Customer Name

    When a customer is logged in, their name shows by the shopping cart. If they have a customer level, that shows as part of their name in (). How can I turn this off or remove it from teh code?

  2. #2
    Misakko Staff - Peter is offline Junior Member
    Join Date
    Dec 2009
    Posts
    10

    Default Customer Name

    Open the source code 'Parser.cs' and try this codes:

    else
    {
    tmpS = AppLogic.GetString("skinbase.cs.1", SkinID, ThisCustomer.LocaleSetting) + " <a class=\"username\" href=\"account.aspx\">" + ThisCustomer.FullName() + "</a>" + CommonLogic.IIF(ThisCustomer.CustomerLevelID != 0, "&nbsp;(" + ThisCustomer.CustomerLevelName + ")", "");

    }
    .