This would be easy to do if there was smarty code for paid packages

what i mean is you could use something like

Code:
{if $package == pay}
<table cellpadding="1" cellspacing="0" border="0">
<tr>
<td><input name="field_privacy" type="radio" value="public" checked></td>
<td><span class="bold">Public:</span> Share your video with the world! (Recommended)</td>
</tr>
</table>

</td>
</tr>
<tr>
<td align="right"><span class="label"></span></td>
<td>

<table cellpadding="1" cellspacing="0" border="0">
<tr>
<td><input name="field_privacy" type="radio" value="private"></td>
<td><span class="bold">Private:</span> Only viewable by you and those you share the video with.</td>
</tr>
</table>

{else}
<table cellpadding="1" cellspacing="0" border="0">
<tr>
<td><input name="field_privacy" type="radio" value="public" checked></td>
<td><span class="bold">Public:</span> Share your video with the world! </td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right"><span class="label"></span></td>
<td>

<table cellpadding="1" cellspacing="0" border="0">
<tr>
<td>private option only available to paid subscribers</td>
<td><span class="bold">Private:</span> Only viewable by you and those you share the video with.</td>
</tr>
</table>
{/if}

This would only give the option to choose private if they were on a paid package.

however it wont work unless admin can tell us the correct {if $package == pay} smarty code.

i would also like to know it as with that smarty code it could be used on many things to give paid package users many advantages.