05/12/2015 at 11:48 am
#333996
Keymaster
@ Jessica
re: Is it possible to have a separate form for each type of membership?
Sorry, no.
I’m assuming your users already have roles assigned to define whether they are General or Premier members, yes?
You could hook into the cnf_shortcode_atts filter. and change the options based on the user’s role. In pseudo code:
if ( role == "premier" ) then:
$atts['logo'] = true;
else:
$atts['logo'] = false;
return $atts;
Does that help?
