Event Calendar Pro - Pay Later

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
3/11/2010 3:30:27 PM
Gravatar
Total Posts 74

Event Calendar Pro - Pay Later

When someone chooses to pay later for an event, can it pop up a page or insert into the confirmation page information on where to mail a check?

 

Thanks,

Joe

3/12/2010 12:50:44 PM
Gravatar
Total Posts 18439

Re: Event Calendar Pro - Pay Later

It doesn't currently have any functionality like that. The pay later feature was requested a long time ago and I basically implemented it to support the scenario for like a course where the user would bring a check or make payment at the event.

I could easily add a setting where text could be entered that would be appended into the confirmation email if the order is a pay later order. For now you could use a custom email template for the confirmation email and just hard code a message in there saying that if you chose pay later please mail your payment to...

By default the email template used is /Data/MessageTemplates/en-US-DefaultOrderConfirmationPlainTextEmailTemplate.config

You could create a custom file say named like en-US-MyCustomEventCalConfirmation.config, copy the contents from the default one and then modify it. It only support plain text for now.

To make it use your custom file add this to your user.config

<add key="EventCalProCustomConfirmationBodyTemplate" value="MyCustomEventCalConfirmation.config" />

Note that you leave off the en-US- in the config setting even though the real file name starts with en-US-

Hope it helps,

Joe

You must sign in to post in the forums. This thread is closed to new posts.