Honor/Memorial Donation form with eCards
I would like our Tribute gifts donation form to have the following options:
1. Make an honor or memorial gift with no family/honoree notification
2. Send a tribute e-card
3. Complete notification information so that we are notified to send a snail mail card
I have the form set up, but when I go to validate I receive the following problem:
There are too many data elements on the form that serve the same purpose.
Solution: Remove data elements until only ONE of the following are present on the form:
- Honor Gift - Message Body
- eCard - Message
Does this mean I have to create separate forms for eCards and for non-eCard tribute giving?
Comments
-
Hi Carrie,
I think you are trying to do something like this:
https://secure3.convio.net/cmf/site/Donation2?df_id=4240&4240.donation=form1
We haven't made this live to our donors yet, but I think its what you are going for.
Let me know if it is and I can tell ya how I set it up.
Thanks,
Phil
1 -
Philip Nawrocki:
Hi Carrie,
I think you are trying to do something like this:
https://secure3.convio.net/cmf/site/Donation2?df_id=4240&4240.donation=form1
We haven't made this live to our donors yet, but I think its what you are going for.
Let me know if it is and I can tell ya how I set it up.
Thanks,
Phil
Possibly this is what we would like to do. Do you have eCard options on the next page of the form?
0 -
Carrie Kran:
Possibly this is what we would like to do. Do you have eCard options on the next page of the form?
Yes, just fill in dummy info on the first page and you can get to the next one and see the eCard options.
Use 4111111111111111 and Visa for the CC info
0 -
Philip Nawrocki:
Yes, just fill in dummy info on the first page and you can get to the next one and see the eCard options.
Use 4111111111111111 and Visa for the CC info
Aha!
This is pretty much what I am trying to set up. You have gotten around the issue I am having through your option to notify the honoree or others about the gift (below eCard). We want to do this tool, but I was including an option to send a personal message in this section as well as the eCard section. That is why I was receiving the error in when validating the form.
I think your option works just as well.
Thank you!
0 -
Philip Nawrocki:
Hi Carrie,
I think you are trying to do something like this:
https://secure3.convio.net/cmf/site/Donation2?df_id=4240&4240.donation=form1
We haven't made this live to our donors yet, but I think its what you are going for.
Let me know if it is and I can tell ya how I set it up.
Thanks,
Phil
Hi Philip,
We were looking to set up something similar to your example for our organization so thanks so much for your post!
One question though: how were you able to Show/Hide the eCard fields using the "Yes, Send an eCard" checkbox? We have that option for honor or memorial fields but not for eCard fields. Do you need to use jQuery to accomplish that?
Thanks so much!
0 -
Stephen Saporito:
Hi Philip,
We were looking to set up something similar to your example for our organization so thanks so much for your post!
One question though: how were you able to Show/Hide the eCard fields using the "Yes, Send an eCard" checkbox? We have that option for honor or memorial fields but not for eCard fields. Do you need to use jQuery to accomplish that?
Thanks so much!
Hi Stephen,
We are using the following eCard fields on the left side when editing a donation form:
eCard - Send Checkbox
eCard Recipients
eCard - Selections
eCard - Subject
eCard - Mesage
eCard - Preview Button
Once moved to the right side in the form editor, we have them in the above order.
eCard - Send Checkbox and eCard - Selections are the two fields that really drive the form. Once you click the eCard - Send Checkbox on the actual donation form, the eCard -Selections does all the work. In the donation form editor, that is where you select the eCards that will appear. It is Step 3, eCard Selections. For Step 5 on the eCard - Selections field choose: Required only if sending an eCard.
Let me know if that helps and if you have any other questions.
0 -
Philip Nawrocki:
Hi Stephen,
We are using the following eCard fields on the left side when editing a donation form:
eCard - Send Checkbox
eCard Recipients
eCard - Selections
eCard - Subject
eCard - Mesage
eCard - Preview Button
Once moved to the right side in the form editor, we have them in the above order.
eCard - Send Checkbox and eCard - Selections are the two fields that really drive the form. Once you click the eCard - Send Checkbox on the actual donation form, the eCard -Selections does all the work. In the donation form editor, that is where you select the eCards that will appear. It is Step 3, eCard Selections. For Step 5 on the eCard - Selections field choose: Required only if sending an eCard.
Let me know if that helps and if you have any other questions.
Thanks Philip! We were able to set that up, but our eCard fields on the donation form always display and I see in the example you provided, you were able to hide those fields until someone checks the "Yes, I want to send an eCard" checkbox. I was wondering if you were able to do that through Luminate Online or if you had to create a script to accomplish that.
Thank you again for your help!
0 -
Stephen Saporito:
Thanks Philip! We were able to set that up, but our eCard fields on the donation form always display and I see in the example you provided, you were able to hide those fields until someone checks the "Yes, I want to send an eCard" checkbox. I was wondering if you were able to do that through Luminate Online or if you had to create a script to accomplish that.
Thank you again for your help!
It is all done in Luminate. No scripting needed.
On your eCard - Send Checkbox field, step 7, is that checked? If it is, that could be why you are seeing the fields.
0 -
Philip Nawrocki:
It is all done in Luminate. No scripting needed.
On your eCard - Send Checkbox field, step 7, is that checked? If it is, that could be why you are seeing the fields.
No, we have that option unchecked. Strange - I'll keep digging, but I really appreciate your help.
0 -
Stephen Saporito:
No, we have that option unchecked. Strange - I'll keep digging, but I really appreciate your help.
Actually that's not a default function. It looks like someone added some JS to that element. You can see the full JS element around that check box if you view that page source:
<script type="text/javascript">
<!--
var comp = new ObservableComponent ('send_ecard', 'name');
comp.hide = function(_hidden)
{
var _display = _hidden ? 'none' : '';
set_display ('send_ecard_Row', _display);
this.disable_submit_flag (_hidden);
}
comp.set = function (_value)
{
if (document.getElementById('send_ecardname')) {
document.getElementById('send_ecardname').checked = _value;
this.fireEvent();
}
}
comp.get = function()
{
if (document.getElementById('send_ecardname'))
return document.getElementById('send_ecardname').checked;
}
comp.clear = function()
{
this.set(false);
}
//-->0 -
Kent Gilliam:
Actually that's not a default function. It looks like someone added some JS to that element. You can see the full JS element around that check box if you view that page source:
<script type="text/javascript">
<!--
var comp = new ObservableComponent ('send_ecard', 'name');
comp.hide = function(_hidden)
{
var _display = _hidden ? 'none' : '';
set_display ('send_ecard_Row', _display);
this.disable_submit_flag (_hidden);
}
comp.set = function (_value)
{
if (document.getElementById('send_ecardname')) {
document.getElementById('send_ecardname').checked = _value;
this.fireEvent();
}
}
comp.get = function()
{
if (document.getElementById('send_ecardname'))
return document.getElementById('send_ecardname').checked;
}
comp.clear = function()
{
this.set(false);
}
//-->Hi Kent,
That actually didn't work for me, but I found this script in the code that seems to work for us on every browser I tested it on so far:
<script type="text/javascript">
addOnLoadHandler(function(){
showHideEcardFields();
var eCardSendCheckbox=document.getElementById('send_ecardname');
Utils.addEvent(eCardSendCheckbox,'click',showHideEcardFields);
});
function showHideEcardFields(){
var eCardSendCheckbox=document.getElementById('send_ecardname');
var eCardSendDateRow='ecard_send_date_Row';
var eCardRecipientsRow='ecard_recpients_Row';
var eCardSelectionsRow='select_grid_Row';
var eCardSubjectRow='tribute_ecard_subject_Row';
var eCardMessageRow='tribute_ecard_message_Row';
var eCardSendCopyRow='e_card_copy_sender_Row';
var eCardPreviewButtonRow='preview_button_Row';
var eCardFields=new Array(eCardSendDateRow,eCardRecipientsRow,eCardSelectionsRow,eCardSubjectRow,eCardMessageRow,eCardSendCopyRow,eCardPreviewButtonRow);
var i;
if(eCardSendCheckbox.checked){
for(i in eCardFields){
if(document.getElementById(eCardFields[i])){
document.getElementById(eCardFields[i]).style.position='static';
document.getElementById(eCardFields[i]).style.top='0';
document.getElementById(eCardFields[i]).style.left='0';
}
}
}
else{
for(i in eCardFields){
if(document.getElementById(eCardFields[i])){
document.getElementById(eCardFields[i]).style.position='absolute';
document.getElementById(eCardFields[i]).style.top='0';
document.getElementById(eCardFields[i]).style.left='-999em';
}
}
}
}
</script>If you see any issues with using this, please let me know.
Much appreciated,
Stephen
0 -
Stephen Saporito:
Hi Kent,
That actually didn't work for me, but I found this script in the code that seems to work for us on every browser I tested it on so far:
<script type="text/javascript">
addOnLoadHandler(function(){
showHideEcardFields();
var eCardSendCheckbox=document.getElementById('send_ecardname');
Utils.addEvent(eCardSendCheckbox,'click',showHideEcardFields);
});
function showHideEcardFields(){
var eCardSendCheckbox=document.getElementById('send_ecardname');
var eCardSendDateRow='ecard_send_date_Row';
var eCardRecipientsRow='ecard_recpients_Row';
var eCardSelectionsRow='select_grid_Row';
var eCardSubjectRow='tribute_ecard_subject_Row';
var eCardMessageRow='tribute_ecard_message_Row';
var eCardSendCopyRow='e_card_copy_sender_Row';
var eCardPreviewButtonRow='preview_button_Row';
var eCardFields=new Array(eCardSendDateRow,eCardRecipientsRow,eCardSelectionsRow,eCardSubjectRow,eCardMessageRow,eCardSendCopyRow,eCardPreviewButtonRow);
var i;
if(eCardSendCheckbox.checked){
for(i in eCardFields){
if(document.getElementById(eCardFields[i])){
document.getElementById(eCardFields[i]).style.position='static';
document.getElementById(eCardFields[i]).style.top='0';
document.getElementById(eCardFields[i]).style.left='0';
}
}
}
else{
for(i in eCardFields){
if(document.getElementById(eCardFields[i])){
document.getElementById(eCardFields[i]).style.position='absolute';
document.getElementById(eCardFields[i]).style.top='0';
document.getElementById(eCardFields[i]).style.left='-999em';
}
}
}
}
</script>If you see any issues with using this, please let me know.
Much appreciated,
Stephen
Yeah... That bit I shared was just a small portion. There was some other stuff to it but it probably had stuff that you couldn't see on the live end when viewing the source. I just wanted to show that there was some JS that was controlling that and it wasn't a default functionality. Thanks a million for sharing this code though! It will be a big help as I know others would love this UX.
Thanks!
0 -
Stephen Saporito:
No, we have that option unchecked. Strange - I'll keep digging, but I really appreciate your help.
Sorry about that Stephen.
I haven't looked at this donation form in a long time. You are correct. We do have some scripting. We usually put it directly under the "Page #" field. This time we had it at the very bottom.
Glad you figured it out!
0 -
Philip Nawrocki:
Sorry about that Stephen.
I haven't looked at this donation form in a long time. You are correct. We do have some scripting. We usually put it directly under the "Page #" field. This time we had it at the very bottom.
Glad you figured it out!
No worries Philip! Thanks so much to you both for your help!
0 -
Kent Gilliam:
Stephen Saporito:
Hi Kent,
That actually didn't work for me, but I found this script in the code that seems to work for us on every browser I tested it on so far:
<script type="text/javascript">
addOnLoadHandler(function(){
showHideEcardFields();
var eCardSendCheckbox=document.getElementById('send_ecardname');
Utils.addEvent(eCardSendCheckbox,'click',showHideEcardFields);
});
function showHideEcardFields(){
var eCardSendCheckbox=document.getElementById('send_ecardname');
var eCardSendDateRow='ecard_send_date_Row';
var eCardRecipientsRow='ecard_recpients_Row';
var eCardSelectionsRow='select_grid_Row';
var eCardSubjectRow='tribute_ecard_subject_Row';
var eCardMessageRow='tribute_ecard_message_Row';
var eCardSendCopyRow='e_card_copy_sender_Row';
var eCardPreviewButtonRow='preview_button_Row';
var eCardFields=new Array(eCardSendDateRow,eCardRecipientsRow,eCardSelectionsRow,eCardSubjectRow,eCardMessageRow,eCardSendCopyRow,eCardPreviewButtonRow);
var i;
if(eCardSendCheckbox.checked){
for(i in eCardFields){
if(document.getElementById(eCardFields[i])){
document.getElementById(eCardFields[i]).style.position='static';
document.getElementById(eCardFields[i]).style.top='0';
document.getElementById(eCardFields[i]).style.left='0';
}
}
}
else{
for(i in eCardFields){
if(document.getElementById(eCardFields[i])){
document.getElementById(eCardFields[i]).style.position='absolute';
document.getElementById(eCardFields[i]).style.top='0';
document.getElementById(eCardFields[i]).style.left='-999em';
}
}
}
}
</script>If you see any issues with using this, please let me know.
Much appreciated,
Stephen
Yeah... That bit I shared was just a small portion. There was some other stuff to it but it probably had stuff that you couldn't see on the live end when viewing the source. I just wanted to show that there was some JS that was controlling that and it wasn't a default functionality. Thanks a million for sharing this code though! It will be a big help as I know others would love this UX.
Thanks!
I tried this but it did not work. Could anyone help me figure this out? Thanks!
0
Categories
- All Categories
- Shannon parent
- shannon 2
- shannon 1
- 21 Advocacy DC Users Group
- 14 BBCRM PAG Discussions
- 89 High Education Program Advisory Group (HE PAG)
- 28 Luminate CRM DC Users Group
- 8 DC Luminate CRM Users Group
- Luminate PAG
- 5.9K Blackbaud Altru®
- 58 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 409 bbcon®
- 2.1K Blackbaud CRM™ and Blackbaud Internet Solutions™
- donorCentrics®
- 1.1K Blackbaud eTapestry®
- 2.8K Blackbaud Financial Edge NXT®
- 1.1K Blackbaud Grantmaking™
- 527 Education Management Solutions for Higher Education
- 1 JustGiving® from Blackbaud®
- 4.6K Education Management Solutions for K-12 Schools
- Blackbaud Luminate Online & Blackbaud TeamRaiser
- 16.4K Blackbaud Raiser's Edge NXT®
- 4.1K SKY Developer
- 547 ResearchPoint™
- 151 Blackbaud Tuition Management™
- 61 everydayhero
- 3 Campaign Ideas
- 58 General Discussion
- 115 Blackbaud ID
- 87 K-12 Blackbaud ID
- 6 Admin Console
- 949 Organizational Best Practices
- 353 The Tap (Just for Fun)
- 235 Blackbaud Community Feedback Forum
- 55 Admissions Event Management EAP
- 18 MobilePay Terminal + BBID Canada EAP
- 36 EAP for New Email Campaigns Experience in Blackbaud Luminate Online®
- 109 EAP for 360 Student Profile in Blackbaud Student Information System
- 41 EAP for Assessment Builder in Blackbaud Learning Management System™
- 9 Technical Preview for SKY API for Blackbaud CRM™ and Blackbaud Altru®
- 55 Community Advisory Group
- 46 Blackbaud Community Ideas
- 26 Blackbaud Community Challenges
- 7 Security Testing Forum
- 3 Blackbaud Staff Discussions
- 1 Blackbaud Partners Discussions
- 1 Blackbaud Giving Search™
- 35 EAP Student Assignment Details and Assignment Center
- 39 EAP Core - Roles and Tasks
- 59 Blackbaud Community All-Stars Discussions
- 20 Blackbaud Raiser's Edge NXT® Online Giving EAP
- Diocesan Blackbaud Raiser’s Edge NXT® User’s Group
- 2 Blackbaud Consultant’s Community
- 43 End of Term Grade Entry EAP
- 92 EAP for Query in Blackbaud Raiser's Edge NXT®
- 38 Standard Reports for Blackbaud Raiser's Edge NXT® EAP
- 12 Payments Assistant for Blackbaud Financial Edge NXT® EAP
- 6 Ask an All Star (Austen Brown)
- 8 Ask an All-Star Alex Wong (Blackbaud Raiser's Edge NXT®)
- 1 Ask an All-Star Alex Wong (Blackbaud Financial Edge NXT®)
- 6 Ask an All-Star (Christine Robertson)
- 21 Ask an Expert (Anthony Gallo)
- Blackbaud Francophone Group
- 22 Ask an Expert (David Springer)
- 4 Raiser's Edge NXT PowerUp Challenge #1 (Query)
- 6 Ask an All-Star Sunshine Reinken Watson and Carlene Johnson
- 4 Raiser's Edge NXT PowerUp Challenge: Events
- 14 Ask an All-Star (Elizabeth Johnson)
- 7 Ask an Expert (Stephen Churchill)
- 2025 ARCHIVED FORUM POSTS
- 322 ARCHIVED | Financial Edge® Tips and Tricks
- 164 ARCHIVED | Raiser's Edge® Blog
- 300 ARCHIVED | Raiser's Edge® Blog
- 441 ARCHIVED | Blackbaud Altru® Tips and Tricks
- 66 ARCHIVED | Blackbaud NetCommunity™ Blog
- 211 ARCHIVED | Blackbaud Target Analytics® Tips and Tricks
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- Luminate CRM DC Users Group
- 225 ARCHIVED | Blackbaud eTapestry® Tips and Tricks
- 1 Blackbaud eTapestry® Know How Blog
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)
- 1 Blackbaud K-12 Education Solutions™ Blog
- 280 ARCHIVED | Mixed Community Announcements
- 3 ARCHIVED | Blackbaud Corporations™ & Blackbaud Foundations™ Hosting Status
- 1 npEngage
- 24 ARCHIVED | K-12 Announcements
- 15 ARCHIVED | FIMS Host*Net Hosting Status
- 23 ARCHIVED | Blackbaud Outcomes & Online Applications (IGAM) Hosting Status
- 22 ARCHIVED | Blackbaud DonorCentral Hosting Status
- 14 ARCHIVED | Blackbaud Grantmaking™ UK Hosting Status
- 117 ARCHIVED | Blackbaud CRM™ and Blackbaud Internet Solutions™ Announcements
- 50 Blackbaud NetCommunity™ Blog
- 169 ARCHIVED | Blackbaud Grantmaking™ Tips and Tricks
- Advocacy DC Users Group
- 718 Community News
- Blackbaud Altru® Hosting Status
- 104 ARCHIVED | Member Spotlight
- 145 ARCHIVED | Hosting Blog
- 149 JustGiving® from Blackbaud® Blog
- 97 ARCHIVED | bbcon® Blogs
- 19 ARCHIVED | Blackbaud Luminate CRM™ Announcements
- 161 Luminate Advocacy News
- 187 Organizational Best Practices Blog
- 67 everydayhero Blog
- 52 Blackbaud SKY® Reporting Announcements
- 17 ARCHIVED | Blackbaud SKY® Reporting for K-12 Announcements
- 3 Luminate Online Product Advisory Group (LO PAG)
- 81 ARCHIVED | JustGiving® from Blackbaud® Tips and Tricks
- 1 ARCHIVED | K-12 Conference Blog
- Blackbaud Church Management™ Announcements
- ARCHIVED | Blackbaud Award Management™ and Blackbaud Stewardship Management™ Announcements
- 1 Blackbaud Peer-to-Peer Fundraising™, Powered by JustGiving® Blogs
- 39 Tips, Tricks, and Timesavers!
- 56 Blackbaud Church Management™ Resources
- 154 Blackbaud Church Management™ Announcements
- 1 ARCHIVED | Blackbaud Church Management™ Tips and Tricks
- 11 ARCHIVED | Blackbaud Higher Education Solutions™ Announcements
- 7 ARCHIVED | Blackbaud Guided Fundraising™ Blog
- 2 Blackbaud Fundraiser Performance Management™ Blog
- 9 Foundations Events and Content
- 14 ARCHIVED | Blog Posts
- 2 ARCHIVED | Blackbaud FIMS™ Announcement and Tips
- 59 Blackbaud Partner Announcements
- 10 ARCHIVED | Blackbaud Impact Edge™ EAP Blogs
- 1 Community Help Blogs
- Diocesan Blackbaud Raiser’s Edge NXT® Users' Group
- Blackbaud Consultant’s Community
- Blackbaud Francophone Group
- 1 BLOG ARCHIVE CATEGORY
- Blackbaud Community™ Discussions
- 8.3K Blackbaud Luminate Online® & Blackbaud TeamRaiser® Discussions
- 5.7K Jobs Board