I found where to edit that part of the portlet in the edit.event.jsp file. The problem I'm having now is I'm not sure how to add in the "Other" radio with the text box to put your own email/emails that you would like the reminder sent to. I wouldn't think I would have to edit in anything to the CalEventConstants. Has anyone else done something like this that could shed some light on it for me?
Thanks!
Mike
1<aui:field-wrapper cssClass="reminders" label="">
2 <aui:input checked="<%= remindBy == CalEventConstants.REMIND_BY_NONE %>" label="do-not-send-a-reminder" name="remindBy" type="radio" value="<%= CalEventConstants.REMIND_BY_NONE %>" />
3 <aui:input checked="<%= remindBy == CalEventConstants.REMIND_BY_EMAIL %>" label='<%= LanguageUtil.get(pageContext, "email-address") + " (" + user.getEmailAddress() + ")" %>' name="remindBy" type="radio" value="<%= CalEventConstants.REMIND_BY_EMAIL %>" />
4 <aui:input checked="<%= remindBy == CalEventConstants.REMIND_BY_SMS %>" label='<%= LanguageUtil.get(pageContext, "sms") + (Validator.isNotNull(contact.getSmsSn()) ? " (" + contact.getSmsSn() + ")" : "") %>' name="remindBy" type="radio" value="<%= CalEventConstants.REMIND_BY_SMS %>" />
5 </aui:field-wrapper>