Luminate integrates with google analytics
Options
Hi friends:
I try to integrate Luminate online and google analytics, looks like not sucessful.
I enabled google analytic in convio. When I try to get reports from convio account, it says that This report requires e-commerce tracking to be set up for the view.
Can any experts here help me to set up tracking codes?
Thanks,
Catherine
I try to integrate Luminate online and google analytics, looks like not sucessful.
I enabled google analytic in convio. When I try to get reports from convio account, it says that This report requires e-commerce tracking to be set up for the view.
Can any experts here help me to set up tracking codes?
Thanks,
Catherine
Tagged:
0
Comments
-
Catherine Han ,
The out of the box Google Analytics integration in Luminate is very old and no longer works. To get accurate data reported on your transaction you will have to do some coding in Luminate, some knowledge of Luminate S-tags and Javascript is required for this.
The general steps are:
1. Disable Luminate GA integration.
2. Insert the latest GA or GTM tracker code on all Luminate pages.
3. Set up the desired values on the transaction thank you pages that you want to track, in accordance with the configured tracker.
4. Configure your tracking code to read transaction values on the thank you pages.
I hope this is helpful.
1 -
Thank you so much for the instruction. I am not familiar with Javascript. Do you have any businesses or individuals can help with some cost? not too expensive. Or someone in the community can help.
Thanks,
Catherine0 -
Hi Catherine,
The Google Analytics integration with LO does still work, though there are other more recent versions of Google Analytics code you can insert into your wrappers that require javascript. Depending on your needs, the current Luminate version may work for your organization. To answer your question, the ecommerce tracking needs to be enabled in your Google Analytics account. Here are instructions:- Sign in to Google Analytics.
- Click Admin, and navigate to the view you want.
- In the VIEW column, click Ecommerce Settings.
- Set Enable Ecommerce to ON.
- Click Save.
Shiloh
0 -
Shiloh Fallon ,
Luminate Online's most current code for Google Analytics is `ga.js` code. Per Google's website (Google Analytics Documentation), this code has been deprecated and in our experience does not always work as expected or produce accurate numbers in Google Analytics. We found that the default Luminate code tracks failed transactions in Analytics as well as the successful ones. Google Anlaytics is now on a 2nd version since the ga.js code, this tracker gives more data on standard pages in the reports.I work with DNL Omnimedia Inc and we worked out the logic, sharing it here for the benefit of the community. Here are the instructions for implementing the latest Google Analytics code in Luminate Online. I hope this is helpful.
- Set Site Data Parameter 'GOOGLE_ANALYTICS_ENABLED' to
FALSE
to disable the old tracker - Create a PageBuilder reusable page Ex:
reus_analytics
. - Disable your WYSIWYG editor in Luminate by clicking on your name in the top right cornder, unchecking Use the WYSIWYG and clicking Save.
- Edit the page created in step 2 and paste the following code into the body of the page:
<span><!-- Global Site Tag Google Analytics --></span><br/><span><<span>script</span> <span>async</span> <span>src</span>=<span>"https://www.googletagmanager.com/gtag/js?id=UA-XXXXXX-X"</span>></span><span></<span>script</span>></span><br/><span><<span>script</span>></span><span><br/> <span>window</span>.dataLayer = <span>window</span>.dataLayer || [];<br/><br/> <span><span>function</span> <span>gtag</span>()</span>{dataLayer.push(<span>arguments</span>);}<br/> gtag(<span>'js'</span>, <span>new</span> <span>Date</span>());<br/><br/> gtag(<span>'config'</span>, <span>'UA-XXXXXX-X'</span>, {<br/> <span>'linker'</span>: {<br/> <span>'domains'</span>: [<span>'dnl.convio.net'</span>, <span>'secure3.convio.net'</span>]<br/> }<br/> });<br/><br/></span><span></<span>script</span>></span><br/><span><!-- End of Global Site Tag Google Analytics --></span><br/><br/><span><!-- Luminate Transaction Tracking --></span><br/>[[?x9x::x[[S4]]x::<br/> [[?[[A14]]::/completed::<br/><span><<span>script</span> <span>type</span>=<span>"text/javascript"</span> <span>id</span>=<span>"analytics--ecommerce-variables"</span>></span><span><br/> <span>/**<br/> * Set all Luminate properties as JavaScript variables, for ease of reading<br/> * and using in various tags below.<br/> */</span><br/><br/> <span>var</span> analyticsAffiliation = <span>'[[T6:[[S0:SITE_NAME]]]]'</span>;<br/> <span>var</span> analyticsCategory = <span>'[[T6:[[S120:dc:campaignName]]]]'</span>;<br/> <span>var</span> analyticsCurrency = <span>'[[S72:currency_code]]'</span>;<br/> <span>var</span> analyticsPaymentMethod = <span>'[[?x[[S334:extproc]]x::xx::[[S120:dc:creditCardType]]::[[S334:extproc]]]]'</span>;<br/> <span>var</span> analyticsProductName = <span>'Donation [[S334:df_id]]: [[T6:[[S120:dc:donationFormName]]]]'</span>;<br/> <span>var</span> analyticsProductPrice = [[E130:[[S120:dc:giftAmount]] number]];<br/> <span>var</span> analyticsRevenue = [[E130:[[S120:dc:taxDeductibleValue]] number]];<br/> <span>var</span> analyticsProductSku = <span>'donation-[[?xmonthsxquartersxyearsx::x[[S120:dc:recurringFrequencyUnit]]x::[[E130:"[[S120:dc:recurringFrequencyUnit]]" "s" "ly" replaceall]]::one-time]]-[[S334:df_id]]-[[S334:df_id]]'</span>;<br/> <span>var</span> analyticsShipping = [[?xx::x[[S120:dc:shippingCharge]]x::<span>0</span>::[[E130:[[S120:dc:shippingCharge]] number]]]];<br/> <span>var</span> analyticsTransactionId = <span>'[[S120:dc:trackingCode]]'</span>;<br/> <span>var</span> analyticsTax = <span>0</span>;<br/> <span>/**<br/> * Track the transaction with Global Site Tag Google Analytics<br/> */</span><br/> <span>if</span> (<span>typeof</span> gtag !== <span>'undefined'</span>) {<br/> gtag(<span>'event'</span>, <span>'purchase'</span>, {<br/> <span>'transaction_id'</span>: analyticsTransactionId,<br/> <span>'affiliation'</span>: analyticsAffiliation,<br/> <span>'value'</span>: analyticsRevenue,<br/> <span>'currency'</span>: analyticsCurrency,<br/> <span>'tax'</span>: analyticsTax,<br/> <span>'shipping'</span>: analyticsShipping,<br/> <span>'items'</span>: [<br/> {<br/> <span>'id'</span>: analyticsProductSku,<br/> <span>'name'</span>: analyticsProductName,<br/> <span>'category'</span>: analyticsCategory,<br/> <span>'price'</span>: analyticsProductPrice,<br/> }]<br/> });<br/> }<br/> <span>else</span> {<br/> <span>console</span>.warn(<span>'[Global Site Tag Google Analytics] gtag variable is not defined.'</span>, gtag);<br/> }<br/></span><span></<span>script</span>></span><br/>
- Change
UA-XXXXXX-X
to the number of your analytics account, in 2 places in the script. - Change
'dnl.convio.net', 'secure3.convio.net'
to the names of the domains pointing to your Luminate account, include the domain name of your main site as well. - Update all your wrappers to include the PageBuilder reusable above in the
<head>
section of the wrapper. The code for inserting the page in the wrapper is:[[S51:reus_analytics]]
. - Ensure that your Google Analytics view has E-commerce option turned on.
- Verify that you can now see the new tracker on all pages. Browse the site and run a test transaction to verify that the E-commerce data is coming through into analytics.
5 - Set Site Data Parameter 'GOOGLE_ANALYTICS_ENABLED' to
-
Elizabeth and shiloh: sorry for my late respone. I was away from office for a period time. I will try in my site. Thank you for sharing.
Catherine0
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™
- 1 YourCause® from Blackbaud®
- 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
- 1.1K ARCHIVED FORUMS | Inactive and/or Completed EAPs
- 3 Blackbaud Staff Discussions
- 7.7K ARCHIVED FORUM CATEGORY [ID 304]
- 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