Is it possible to customize TeamRaiser Pages components?
What about the builtin components? Are we able to change the participant/team search layout (changing the HTML code)? E.g., if I don't want to use one search box for searching the participant and team, is it possible?
Thanks!
Comments
-
Quite a bit is possible.
You can use the PageWrapper to for some customizations, and some fields in the Customize Pages configuration.
For instance the Default Participant Page has a Page Footer field that accepts HTML, which the users cannot access. We use that to insert a custom sidebar that has our own thermometer, badge scroll, PDF, etc.
Here's a sample from one of our events.
http://foundation.luriechildrens.org/site/TR/Events/StepUpforKids?px=1105632&pg=personal&fr_id=1750
<div class="sideBarFundraising">
<div id="parDon">
<div class="title">My Fundraising</div>
<div class="parGoal">
<h3>[[E48:[[S334:fr_id]]-[[S334:px]]:goal]]</h3>
<span class="calloutLabel">Goal</span>
</div>
<div class="parDollars">
<h3>[[E48:[[S334:fr_id]]-[[S334:px]]:dollars]]</h3>
<span class="calloutLabel">Achieved</span>
</div>
</div>
[[E36:top_gifts_list,[[S80:frId]],0,[[E48:[[S334:fr_id]]-[[S334:px]]:participant-id]],SCROLLING,SUM,100,Fundraising Honor Roll]]
<div id="fundraisingDownloads" class="sidebar-box">
<h3>PDF Downloads</h3>
<a class="PDF" href="../_wrappers/stepup/2018/docs/step_up_2018_donation_form.pdf" target="_blank">Donation Form</a>
</div>
</div>
[[S51:reus_teamraiser_progressive_milestones]]
JQuery comes in pretty handy, and plenty of CSS to override what the stock styles do.
If you use your PageWrapper, you can identify the current page using S8. We do that in the Page Header Elements to include special CSS files depending on the current page.
[[?[[S8]]::pg=entry::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-home.css">
::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-inside.css">
]]
In fact we do a lot of this!
[[?[[S8]]::Donation2::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-donate.css">
::
[[?[[S8]]::pg=topparticipantlist::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-participantlist.css">
::
[[?[[S8]]::pg=personal::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-common.css">
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-participant.css">
::
[[?[[S8]]::page_type=fr_personal::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-participant.css">
::
[[?[[S8]]::pg=teamlist::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-teamlist.css">
::
[[?[[S8]]::pg=team::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-common.css">
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-team.css">
::
[[?[[S8]]::page_type=fr_team_page::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-team.css">
::
[[?[[S8]]::pg=complist::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-companylist.css">
::
[[?[[S8]]::pg=company::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-company.css">
::
[[?[[?[[S8]]::TRR::T::]][[?[[S8]]::pg=rthanks::T::]]::T::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-registration.css">
::
[[?[[S8]]::sid=1007::
<link rel="stylesheet" href="../_resources-teamraiser/reus_teamraiser_impact/css/impact.css">
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-impact.css">
::
[[?[[S8]]xx::/site/TRxx::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-pfind.css">
::
[[?[[S8]]::pg=pfind::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-pfind.css">
::
[[?[[S8]]::ConsProfileUser::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-profile.css">
::
[[?[[S8]]::ConsInterestsUser::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-profile.css">
::
[[?[[S8]]::ServiceCenter::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-profile.css">
::
[[?[[S8]]::TellAFriend::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-taf.css">
::
]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]
[[?[[S8]]::sid=1019::
<link rel="stylesheet" href="../_resources-teamraiser/reus_css/share-a-story.css">
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-story.css">
::
[[?[[S8]]::sid=1004::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-coordinator.css">
::
[[?[[S8]]::sid=2200::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-social.css">
::]]]]]]0 -
Also look at the APIs at http://open.convio.com. You can do quite a bit by using CSS and JQuery to manipulate the generated page, but you can also just rewrite the functionality entriely using the API and LuminateExtend. People are even completely replacing the stock registration process with completely custom code.0
-
Thanks! If I want to change 'Find a Participant' page, and I only have this HTML area input, are you suggesting me to insert the new layout HTML with parameter tags in there, and hide the builtin components using CSS? I'm not sure what you mean by 'We use that to insert a custom sidebar that has our own thermometer, badge scroll, PDF, etc.', could you explain how the search box is inserted into the 'Find a Participant' page?
And where can I find the parameter tags like '[[E48:[[S334:fr_id]]-[[S334:px]]:goal]]'? Is there a documentation somewhere?Brian Mucha:
Quite a bit is possible.
You can use the PageWrapper to for some customizations, and some fields in the Customize Pages configuration.
For instance the Default Participant Page has a Page Footer field that accepts HTML, which the users cannot access. We use that to insert a custom sidebar that has our own thermometer, badge scroll, PDF, etc.
Here's a sample from one of our events.
http://foundation.luriechildrens.org/site/TR/Events/StepUpforKids?px=1105632&pg=personal&fr_id=1750
<div class="sideBarFundraising">
<div id="parDon">
<div class="title">My Fundraising</div>
<div class="parGoal">
<h3>[[E48:[[S334:fr_id]]-[[S334:px]]:goal]]</h3>
<span class="calloutLabel">Goal</span>
</div>
<div class="parDollars">
<h3>[[E48:[[S334:fr_id]]-[[S334:px]]:dollars]]</h3>
<span class="calloutLabel">Achieved</span>
</div>
</div>
[[E36:top_gifts_list,[[S80:frId]],0,[[E48:[[S334:fr_id]]-[[S334:px]]:participant-id]],SCROLLING,SUM,100,Fundraising Honor Roll]]
<div id="fundraisingDownloads" class="sidebar-box">
<h3>PDF Downloads</h3>
<a class="PDF" href="../_wrappers/stepup/2018/docs/step_up_2018_donation_form.pdf" target="_blank">Donation Form</a>
</div>
</div>
[[S51:reus_teamraiser_progressive_milestones]]
JQuery comes in pretty handy, and plenty of CSS to override what the stock styles do.
If you use your PageWrapper, you can identify the current page using S8. We do that in the Page Header Elements to include special CSS files depending on the current page.
[[?[[S8]]::pg=entry::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-home.css">
::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-inside.css">
]]
In fact we do a lot of this!
[[?[[S8]]::Donation2::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-donate.css">
::
[[?[[S8]]::pg=topparticipantlist::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-participantlist.css">
::
[[?[[S8]]::pg=personal::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-common.css">
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-participant.css">
::
[[?[[S8]]::page_type=fr_personal::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-participant.css">
::
[[?[[S8]]::pg=teamlist::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-teamlist.css">
::
[[?[[S8]]::pg=team::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-common.css">
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-team.css">
::
[[?[[S8]]::page_type=fr_team_page::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-team.css">
::
[[?[[S8]]::pg=complist::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-companylist.css">
::
[[?[[S8]]::pg=company::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-company.css">
::
[[?[[?[[S8]]::TRR::T::]][[?[[S8]]::pg=rthanks::T::]]::T::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-registration.css">
::
[[?[[S8]]::sid=1007::
<link rel="stylesheet" href="../_resources-teamraiser/reus_teamraiser_impact/css/impact.css">
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-impact.css">
::
[[?[[S8]]xx::/site/TRxx::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-pfind.css">
::
[[?[[S8]]::pg=pfind::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-pfind.css">
::
[[?[[S8]]::ConsProfileUser::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-profile.css">
::
[[?[[S8]]::ConsInterestsUser::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-profile.css">
::
[[?[[S8]]::ServiceCenter::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-profile.css">
::
[[?[[S8]]::TellAFriend::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-taf.css">
::
]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]
[[?[[S8]]::sid=1019::
<link rel="stylesheet" href="../_resources-teamraiser/reus_css/share-a-story.css">
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-story.css">
::
[[?[[S8]]::sid=1004::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-coordinator.css">
::
[[?[[S8]]::sid=2200::
<link rel="stylesheet" href="../_wrappers/stepup/2018/css/layout-tweaks-social.css">
::]]]]]]
0 -
S-Tag docs: https://www.blackbaud.com/support/howto/coveo/luminate-online/Subsystems/S-Tags/Concepts/Admin_S-Tags.html
> ...insert the new layout HTML with parameter tags in there...could you explain how the search box is inserted into the 'Find a Participant' page?
Yes, exactly - depending on what you want to do. The cool thing is this is how you can insert your own html into the page. There's a lot you can do with that. You could just add some CSS and style the existing component better. Or you could hide the existing search form and use the S44 search component. Or if you want to get complicated, you could add a bunch of html and javascript to completely customize search using the API.
The sidebar thing was just an example of something similar. I don't have a find a participant customization, but we do something like this on personal pages. There we replace the stock thermo and badge components with our own code.
For any of these options it will be super handy to know some CSS at least, and a bit of html. (And javascript for the api option.)0 -
Thanks for sharing that URL, Brian, which comes from the help docs as stored in the Knowledgebase.
If you'd like to look at the S-Tag documents with a side Table of Contents, you can also use this URL: https://www.blackbaud.com/files/support/helpfiles/luminate-online/help/luminateonline.html#../Subsystems/S-Tags/Content/Concepts/Admin_S-Tags.html
0 -
Thank you both for the reply. I'm not doing crazy changes and I'm looking for a quick way to change the HTML layout of those builtin components, like moving some elements below others etc., so if I want to customize a S35 TeamRaiser Thermometer, I've found S48 Tag to get the [[S48:1170:goal]] and [[S48:1170:dollars]], and then put them in the HTML, is that right?
For each TeamRaiser, we can display a thermometer, do you have a tag to show thermometer for all the TeamRaisers on the PageWrapper? Or, can you help me find a tag giving me the total raised dollars and total goals of all team raisers? Thanks!Brian Mucha:
S-Tag docs: https://www.blackbaud.com/support/howto/coveo/luminate-online/Subsystems/S-Tags/Concepts/Admin_S-Tags.html
> ...insert the new layout HTML with parameter tags in there...could you explain how the search box is inserted into the 'Find a Participant' page?
Yes, exactly - depending on what you want to do. The cool thing is this is how you can insert your own html into the page. There's a lot you can do with that. You could just add some CSS and style the existing component better. Or you could hide the existing search form and use the S44 search component. Or if you want to get complicated, you could add a bunch of html and javascript to completely customize search using the API.
The sidebar thing was just an example of something similar. I don't have a find a participant customization, but we do something like this on personal pages. There we replace the stock thermo and badge components with our own code.
For any of these options it will be super handy to know some CSS at least, and a bit of html. (And javascript for the api option.)
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®
- 2K 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
- 21 Blackbaud Impact Edge™
- 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
- 124 Ninja Secret Society
- 32 Blackbaud Raiser's Edge NXT® Receipting EAP
- 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