I want to replicate the " paid subscriptions" part of the usercp on a webtemplate; the template that vb uses is " subscriptions" in the "paid subscriptions templates" section, but when i copy this into the webtemplate, It doesnt work. for instance there is this code below, how do I get the " activesubscriptions" data from the database into the webtemplate??:
<if condition="$show['activesubscriptions']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="3">$vbphrase[active_subscriptions]</td>
</tr>
<tr>
<td class="thead">$vbphrase[subscription_title]</td>
<td class="thead">$vbphrase[start_date]</td>
<td class="thead">$vbphrase[expiry_date]</td>
</tr>
$subscribedbits
</table>
<br />
</if>
any advice warmly received
|