eugenevdm Posted January 14, 2010 Share Posted January 14, 2010 I want to know if clients log in if they can see their credit balance? On our system we can't, but it might be because we didn't update all our templates properly. If someone know this can be done please provide the steps on how to see a client's credit balance from the Client Area. kind regards, Eugene 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Support Manager WHMCS John Posted January 14, 2010 WHMCS Support Manager Share Posted January 14, 2010 Yes, clients can see their credit balance on the client area homepage. Sounds like a problem with your customised templates. 0 Quote Link to comment Share on other sites More sharing options...
Derek Posted January 30, 2010 Share Posted January 30, 2010 I am having the same issue. What is the line of code and where to place it ? 0 Quote Link to comment Share on other sites More sharing options...
othellotech Posted January 30, 2010 Share Posted January 30, 2010 I am having the same issue simply compare your modified .tpl with eth standard one taht came with whmcs for clientarea 0 Quote Link to comment Share on other sites More sharing options...
m00 Posted January 30, 2010 Share Posted January 30, 2010 Place {$clientsstats.creditbalance} where you want to show the credit balance. 0 Quote Link to comment Share on other sites More sharing options...
Derek Posted January 31, 2010 Share Posted January 31, 2010 Place {$clientsstats.creditbalance} where you want to show the credit balance. Thanks, where is the default location ? 0 Quote Link to comment Share on other sites More sharing options...
m00 Posted January 31, 2010 Share Posted January 31, 2010 Thanks, where is the default location ? For the portal template, it's in the right (Quick navigation) menu under Account Statistics. For the default template it's on the client area home under Account Statistics. 0 Quote Link to comment Share on other sites More sharing options...
Derek Posted February 3, 2010 Share Posted February 3, 2010 For the portal template, it's in the right (Quick navigation) menu under Account Statistics. For the default template it's on the client area home under Account Statistics. Unless I am blind I don't see this anywhere. 0 Quote Link to comment Share on other sites More sharing options...
Derek Posted February 3, 2010 Share Posted February 3, 2010 What am I doing wrong here? Under my details I am trying to add the credit balance and it shows up fine but I am trying to also name it Credit Balance but when I do so it shows up blank with no name. <tr> <td class="fieldarea">{$LANG.clientsstats.creditbalance}</td> <td><input type="text" name="clientsstats.creditbalance" value="{$clientsstats.creditbalance}" size="25" /></td> </tr> 0 Quote Link to comment Share on other sites More sharing options...
sparky Posted February 3, 2010 Share Posted February 3, 2010 Update your clientareahome.tpl template and you will see it. Looks like when you upgraded you didn't update your custom theme templates. 0 Quote Link to comment Share on other sites More sharing options...
m00 Posted February 3, 2010 Share Posted February 3, 2010 What am I doing wrong here? Under my details I am trying to add the credit balance and it shows up fine but I am trying to also name it Credit Balance but when I do so it shows up blank with no name. <tr> <td class="fieldarea">{$LANG.clientsstats.creditbalance}</td> <td><input type="text" name="clientsstats.creditbalance" value="{$clientsstats.creditbalance}" size="25" /></td> </tr> This works fine for me: <tr> <td class="fieldarea">{$LANG.statscreditbalance}</td> <td><input type="text" name="clientsstats.creditbalance" value="{$clientsstats.creditbalance}" size="25" /></td> </tr> (the name of the langue entry should be {$LANG.statscreditbalance}) 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.