what useful account upgrades can you really offer to paid members?

Same here.

Mike? Kier? :whistle:


You could do this with a simple edit to the visible styles in the style_chooser template.

Find this:
Code:
<xen:foreach loop="$styles" value="$style">
                <xen:if is="{$style.user_selectable} OR {$visitor.is_admin}">

Use this replacing X with the user group number you want to allow the additional styles.
Code:
<xen:foreach loop="$styles" value="$style">
                <xen:if is="{$style.user_selectable} OR {$visitor.is_admin} OR {xen:helper ismemberof, $visitor, X}">
 
Top Bottom