Reftagger will automatically convert any standard Bible reference into a hyperlink. Upon hover, the link will display selected verses in a pop-up tool tip and the user can open in a new tab to read the full text in the version of your choice.
Scripture references in readings, assessment questions, and elsewhere on your Pathwright site can be instantly hyperlinked.
To add Reftagger to your account:
Go to https://reftagger.com/.
Select your preferences, including Bible version. You'll find more settings at https://reftagger.com/customize/ (we'd recommend setting "tag chapters" to true and omit tagging headers).
Copy the embed code provided.
You can paste your code under Dashboard > Account Settings. Make sure to paste the embed code under the "body" section.
Finally, add the codes below to allow RefTagger to load correctly.
Add the following code under the "header" section on the same page.
<style>
.rtTooltip {
z-index: 99999999999999 !important;
}
@media only screen and (min-width: 401px) {
.rtTooltip {
left: calc(50% - 200px) !important;
}
}
</style>
Add the following code under the "body" section on the same page.
<!-- Call refTagger.tag when step content is rendered in view mode. -->
<script>
document.addEventListener("step:content:view:rendered", function () {
try {
window.refTagger && window.refTagger.tag()
} catch (error) {
// Silently fail as Reftagger is likely throwing an
// error due to there being no refs to tag.
}
})
</script>