PrimeBible Verse Preview transforms Bible references in your content into interactive tooltips that display verse text instantly. Perfect for theology blogs, church websites, and Christian content creators.
PrimeBible is a 501(c)(3) nonprofit organization dedicated to making deep Bible study accessible to everyone. Our platform provides free tools including:
* Hebrew and Greek original language analysis
* Strong’s Concordance integration
* Cross-reference explorer
* Biblical timeline
* Scholarly articles on messianic prophecy, textual criticism, and theology
Learn more at primebible.com
This plugin is free and always will be. If it blesses your ministry, consider:
* Leaving a 5-star review
* Sharing with other Christian content creators
* Donating to support nonprofit Bible study tools at primebible.com/donate
Developed by the PrimeBible team with love for the global church.
Special thanks to the WordPress community and all beta testers who provided feedback.
Data Collection: This plugin does not collect, store, or transmit any personal data about your visitors.
API Requests: When a verse tooltip is displayed, the plugin fetches verse text from primebible.com’s API. These requests include:
– The Bible reference (e.g., “John 3:16”)
– The requested translation (e.g., “KJV”)
No Tracking: PrimeBible does not log IP addresses, track user behavior, or use cookies from these API requests.
Optional Analytics: If you enable the analytics setting, the plugin will fire a Google Analytics event when a tooltip is opened (if GA is already installed on your site). This is disabled by default.
Third-Party Services: The plugin connects to primebible.com’s API to fetch verse text. No other third-party services are used.
For more information, see the PrimeBible Privacy Policy.
PrimeBible Verse Preview is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
Bible translations are subject to their respective copyright holders. PrimeBible provides access to public domain translations and those licensed for free distribution.
Filter: primebible_config
Modify the JavaScript configuration before it’s output.
add_filter(‘primebible_config’, function($config) {
$config[‘translation’] = ‘ESV’;
$config[‘theme’] = ‘dark’;
return $config;
});
Action: primebible_before_enqueue
Runs before scripts are enqueued (if loading conditions are met).
add_action(‘primebible_before_enqueue’, function() {
// Your code here
});
Disable on specific page by template:
add_filter(‘primebible_should_load’, function($should_load) {
if (is_page_template(‘template-landing.php’)) {
return false;
}
return $should_load;
});
Development happens on GitHub: github.com/primebible/wordpress-plugin
Contributions welcome:
– Bug reports
– Feature requests
– Pull requests
– Documentation improvements
Documentation: primebible.com/docs/wordpress-plugin
Support Forum: wordpress.org/support/plugin/primebible-verse-preview
Email: [email protected]
Average Response Time: 24-48 hours
We’re committed to excellent support. If you have an issue, we’ll help you resolve it.