Removing Ads for Paid Memberships

Hello Everyone,
I was wondering about ads within my forum. Is there a way to remove every ad on my XenForo forum for my paid/"premium members?"

Thank you in advance for all your help!
 
So if I wanted to remove the ads for paid memberships, lets say "Paid Group 1" For this example would it look like this?

Original Code:
How can I hide content from a specific user group?
<xen:if is="!{xen:helper ismemberof, $visitor, x}">
This content will be hidden from members of user group x
</xen:if>


Modified Code:
How can I hide content from a specific user group?
<xen:if is="!{xen:helper ismemberof, $visitor, Paid Group 1}">
my Google Adsense code will go here.
</xen:if>


Is that what it should look like? Sorry for being a total noob, the last forum I had managed all my ads in a much different manner.
And just to be clear, this is the code I am looking for, correct?
 
Top Bottom