View Single Post
  #3  
Old 05-22-2008, 06:00 PM
 
paul@dimoda.com.au paul@dimoda.com.au is offline
 

Senior Member
  
Join Date: Aug 2007
Location: Perth, Australia
Posts: 148
 

Default Re: Show $$ value for BCSE's Reward Points Mod

You Champion

Ok, so here is the modified code a side bar menu item reward_points.tpl for the Customer rewards mod to show

Line 1 - link to Points System Explanation ( your static page )
Line 2 - Link to Customer Referral programme ( the crp_referral.php )
Line 3 - if logged in show current points balance
Line 4 - if logged in show current points equivilent $ Value

{capture name=menu}
<table border="0" cellpadding="3" cellspacing="0" width="100%">
<tr><td>Earn Points</td><td><a href="/store/pages.php?pageid=30" title="Coffee Shrine's Customer Reward Points Programme">{include file="buttons/search_head.tpl"}</a>
</td></tr>
<tr><td colspan="2"><hr class="VertMenuHr" size="1"/></td></tr>
<tr><td>Refer a Friend</td><td><a href="/store/crp_referral.php" title="Refer a Friend and receive Bonus Points">{include file="buttons/search_head.tpl"}</a></td></tr>
{if $login eq "" }
<tr><td colspan="2"><hr class="VertMenuHr" size="1"/></td></tr>
<tr><td colspan="2>">(User must be logged in)</td></tr>
{else}
{* Points Added*}
<tr><td colspan="2"><hr class="VertMenuHr" size="1"/></td></tr>
<tr>
<td>Points Balance:</td>
<td><b>{$points.total}</b></td>
</tr>
<tr>
<td>Points Value:</td>
<td>{math x=$points.total y=$wcmPaymentRate equation="x / y" format="%.2f" assign="wcmPointsDollars"}
{include file="currency.tpl" value=$wcmPointsDollars}</td>
</tr>
{/if}

{* End Points added*}</table>
{/capture}
{ include file="menu.tpl" dingbats="dingbats_categorie.gif" menu_title=$lng.lbl_reward_points menu_content=$smarty.capture.menu }

Enjoy - comments welcome
__________________
X-Cart Gold 4.1.10, 4.1.18, 4.4.4, 4.4.5
Reply With Quote