All Collections
Integrations
Other integrations
Embed RefTagger to instantly hyperlink Scripture references
Embed RefTagger to instantly hyperlink Scripture references

Install the RefTagger program from Faithlife to add hyperlinks to all Bible references in your courses.

Laurie Garcia avatar
Written by Laurie Garcia
Updated over a week ago

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: 

  1. 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). 

  2. Copy the embed code provided.     

  3. From your Pathwright account, open "Settings" from the main menu and navigate to "Connect other apps" > "Add custom code." Paste the embed code under the "body" section on this page. 

  4. 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>
Did this answer your question?