Home › Forums › WordPress MailChimp Campaign Manager › Subscription/Sign Up form display issues › Reply To: Subscription/Sign Up form display issues
October 24, 2017 at 12:20 pm
#8011
Keymaster
Hi,
we have noted this issue and will fix in new version for now. Please do following.
goto templates/subscription.form.php and near line 44 you see
echo '<label for="'.$field['id'].'">'.$field['label'].'</label>';
replace it with
echo '<label for="'.$field['id'].'">'.ucfirst($field['label']).'</label>';
and in same file near line number 54
echo '<label><input type="checkbox" name="interests['.$interest['id'].']"> '.$interest['label'].'</label><br>';
replace it with:
echo '<label><input type="checkbox" name="interests['.$interest['id'].']"> '.ucfirst($interest['label']).'</label><br>';
Cheers.