FREQUENTLY ASKED QUESTIONS
1 - Does this mod support subsilver?
Yes. The subsilver2 instructions are in the "
contrib" folder of the download.
2 - How do I restrict access to the Bible page to logged-in members only?
Open: root/bible.php
Find:
Code: Select all
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();
After Add:
Code: Select all
if ($user->data['user_id'] == ANONYMOUS)
{
login_box('', $user->lang['LOGIN']);
}
3 - How do I make the "Bible" link in the overall_header viewable to logged-in members only?
Open: root/styles/prosilver/template/overall_header.html
Find:
Code: Select all
<!-- SIMPLE ONLINE BIBLE MOD BEGIN -->
<li class="icon-pages"><a href="{U_SIMPLE_ONLINE_BIBLE_MOD_LINK}" title="{L_SIMPLE_ONLINE_BIBLE_MOD_LINK_EXPLAIN}">{L_SIMPLE_ONLINE_BIBLE_MOD_LINK}</a></li>
<!-- SIMPLE ONLINE BIBLE MOD END -->
Replace With:
Code: Select all
<!-- SIMPLE ONLINE BIBLE MOD BEGIN -->
<!-- IF S_USER_LOGGED_IN -->
<li class="icon-pages"><a href="{U_SIMPLE_ONLINE_BIBLE_MOD_LINK}" title="{L_SIMPLE_ONLINE_BIBLE_MOD_LINK_EXPLAIN}">{L_SIMPLE_ONLINE_BIBLE_MOD_LINK}</a></li>
<!-- ENDIF -->
<!-- SIMPLE ONLINE BIBLE MOD END -->
4 - Can I remove the links that are applied to the Bible page?
No. Removing the links will violate the terms of use.
5 - How do I make the links on the Bible page open in a new window instead of the same window (so visitors won't leave my site)?
Open: root/styles/prosilver/template/bible.html
Find:
Code: Select all
<br /><p class="sobmcenter"><a href="{U_SIMPLE_ONLINE_BIBLE_MOD_INFO}">{L_SIMPLE_ONLINE_BIBLE_MOD_INFO}</a> <a href="{U_SIMPLE_ONLINE_BIBLE_MOD_INFO}">{L_SIMPLE_ONLINE_BIBLE_MOD_VERSION}</a> | <a href="{U_SIMPLE_ONLINE_BIBLE_MOD_CREDIT}">{L_SIMPLE_ONLINE_BIBLE_MOD_CREDIT}</a></p>
Replace With:
Code: Select all
<br /><p class="sobmcenter"><a href="{U_SIMPLE_ONLINE_BIBLE_MOD_INFO}" target="_blank">{L_SIMPLE_ONLINE_BIBLE_MOD_INFO}</a> <a href="{U_SIMPLE_ONLINE_BIBLE_MOD_INFO}" target="_blank">{L_SIMPLE_ONLINE_BIBLE_MOD_VERSION}</a> | <a href="{U_SIMPLE_ONLINE_BIBLE_MOD_CREDIT}" target="_blank">{L_SIMPLE_ONLINE_BIBLE_MOD_CREDIT}</a></p>
6 - How do I add this mod to a style other than prosilver?
Copy the "
prosilver" folder in the download and rename it to the exact name of the style you're using.
- Upload the copied folder to the following directory: yoursite.com/yourphpbb/styles/
- In the install instructions, apply the edits for "overall_header.html" to the overall_header.html file of the style you're using.
- In the install instructions, apply the edits for "stylesheet.css" to the file of the style you're using.
- Upload the edited files. Go to the ACP, select the "Styles" tab. Refresh your "Templates", "Themes" and "Imagesets".
7 - How do I uninstall this mod?
Reverse the edits given in the install file. The edited files include:
- yoursite.com/yourphpbb/includes/functions.php,
- yoursite.com/yourphpbb/styles/prosilver/theme/stylesheet.css
- yoursite.com/yourphpbb/styles/prosilver/template/overall_header.html
Delete from your server:
- yoursite.com/yourphpbb/bible.php
- yoursite.com/yourphpbb/language/en/mods/online_bible_lang.php
- yoursite.com/yourphpbb/styles/prosilver/template/bible.html
- yoursite.com/yourphpbb/styles/prosilver/theme/bible.css
8 - What versions of phpBB is this mod compatible with?
The mod was tested on versions 3.0.8, 3.0.9, 3.0.10, 3.0.11 and 3.0.12.
9 - How do I add more/different Bible translations (versions) ?
Open
Find
Code: Select all
"versions": "eng-NASB,eng-KJV,eng-ESV,eng-NIV
In-Line Find
Add After (depending on version you want from the list below (in red))... Be sure to copy the comma (,).
- Darby Translation: ,eng-CEVUKeng-DARBY
- Good News Bible: ,eng-GNBDC
- King James Version: ,eng-KJV
- Revised Version 1885: ,eng-RV1885
- Amplified Bible: ,eng-AMP
- Contemporary English Version: ,eng-CEV
- Contemporary English Version: ,eng-CEVD
- Contemporary English Version UK: ,eng-CEVDUK
- English Standard Version: ,eng-ESV
- Good News Translation: ,eng-GNTD
- The Message: ,eng-MSG
- New American Bible, Revised: ,eng-NABRE
- New American Standard Bible: ,eng-NASB
- New International Version: ,eng-NIV
- New Living Translation: ,eng-NLT
- New Revised Standard Version: ,eng-NRSV
- Revised Standard Version: ,eng-RSV