Featured artists and Top members issue
Installation and Configuration
by "on the featured section" do you mean the "Image Slider IDs" in the skin settings?
// Show Signup Options
if (isset($_opt) && is_array($_opt) && count($_opt) > 1) {
$_tmp = array(
'name' => 'quota_id',
'label' => 59,
'help' => 60,
'type' => 'select',
'options' => 'jrProfile_get_signup_quotas',
'validate' => 'number_nz'
);
jrCore_form_field_create($_tmp);
}
// Show Signup Options
if (isset($_opt) && is_array($_opt) && count($_opt) > 1) {
$_tmp = array(
'name' => 'quota_id',
'label' => 59,
'help' => 60,
'default' => $_conf['jrProfile_default_quota_id'],
'type' => 'select',
'options' => 'jrProfile_get_signup_quotas',
'validate' => 'number_nz'
);
jrCore_form_field_create($_tmp);
}
'default' => $_conf['jrProfile_default_quota_id'],