BBIS Donation Page Confirmation URL
Hi all,
When someone makes a donation on our BBIS donation page, they are "redirected" to a confirmation page, but the URL does not change, which means we are not able to track people who "abandon cart," or people who convert (when viewing Google Analytics) as well as other issues. Is there a way for us to ensure that donors are redirected to a confirmation page that is trackable?
Thank you,
PJ
When someone makes a donation on our BBIS donation page, they are "redirected" to a confirmation page, but the URL does not change, which means we are not able to track people who "abandon cart," or people who convert (when viewing Google Analytics) as well as other issues. Is there a way for us to ensure that donors are redirected to a confirmation page that is trackable?
Thank you,
PJ
Tagged:
0
Comments
-
There is a built-in function that's triggered upon successful completion of a donation form within the object: BLACKBAUD.netcommunity.api.DonationConfirmation
To use this, simply add whatever function you like to it using BLACKBAUD.netcommunity.api.DonationConfirmation.Add(function(){ //your code here; });
So for a redirection, you would do something along the lines of:
When doing this kind of redirection you may want to actually include some code to 'hide' the donation form once it's been submitted and add a loading indicator over the page.
BLACKBAUD.netcommunity.api.DonationConfirmation.add(function(){
window.location.href = "https://yourdomain.com/donate/thank-you-page";
});
Note - this might be a little different if you have your form configured to use BB Checkout - my understanding is that functionality does already reload the page once completed but I assume it does then trigger that function correctly (but I would need to test that to verify).
You can also test all of the custom confirmation functions by calling BLACKBAUD.netcommunity.api.DonationConfirmation.run(); within your browser's javascript console.0
Categories
- All Categories
- 6 Blackbaud Community Help
- 213 bbcon®
- 1.4K Blackbaud Altru®
- 403 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 1.1K Blackbaud CRM™ and Blackbaud Internet Solutions™
- 15 donorCentrics®
- 360 Blackbaud eTapestry®
- 2.6K Blackbaud Financial Edge NXT®
- 656 Blackbaud Grantmaking™
- 577 Blackbaud Education Management Solutions for Higher Education
- 3.2K Blackbaud Education Management Solutions for K-12 Schools
- 939 Blackbaud Luminate Online® and Blackbaud TeamRaiser®
- 84 JustGiving® from Blackbaud®
- 6.6K Blackbaud Raiser's Edge NXT®
- 3.7K SKY Developer
- 248 ResearchPoint™
- 119 Blackbaud Tuition Management™
- 165 Organizational Best Practices
- 241 Member Lounge (Just for Fun)
- 34 Blackbaud Community Challenges
- 37 PowerUp Challenges
- 3 (Open) PowerUp Challenge: Grid View Batch
- 3 (Closed) PowerUp Challenge: Chat for Blackbaud AI
- 3 (Closed) PowerUp Challenge: Data Health
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Product Update Briefing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports+
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Email Marketing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Gift Management
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Event Management
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Home Page
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Query
- 794 Community News
- 2.9K Jobs Board
- 54 Blackbaud SKY® Reporting Announcements
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)
