I just came up with this idea to put a message at the top of the control panel based on usergroup. So members who do not have a subscription will see this info, but it will go away if they purchase a subscription.
I just added the following code to the very top of the USERCP template.
Code:
<!-- start message based on usergroup -->
<if condition="(in_array($vbulletin->userinfo['usergroupid'], array(2)))">
<table width="100%" align="center" style="background: #FFFAF0; border: solid 1px #660000;">
<tr>
<td>
Insert message about subscriptions here
</td>
</tr>
</table>
<br/>
</if>
<!-- end message based on usergroup -->