The Special SiteSplat Membership has launched! Check our In Da Club Plan 👌
  • BBOOTS (phpBB 3.0) Changelog
  • News, Announcements, Feedback, Improvements, Changes and Policies.
News, Announcements, Feedback, Improvements, Changes and Policies.
 #494  by ThemeSplat
 March 5th, 2014, 2:42 pm
BBOOTS 3.0.5 released on May 6, 2015 Partial Changelog
BBOOTS maintenance update phpBB 3.0.14
BBcore Update (now using server protocol for gravatar - Be-aware gravatar ssl is much slower then regular protocol )
Update instruction here: viewtopic.php?p=6391#p6391


BBOOTS 3.0.4 released on Nov 13, 2014 Partial Changelog
BBOOTS maintenance update phpBB 3.0.13-PL1
BBcore Update
Update instruction here: viewtopic.php?p=5082#p5082


BBOOTS 3.0.3 released on Nov 13, 2014 Partial Changelog
BBOOTS maintenance update
BBcore Update: Now including a default offline board page and the fantastic Gravatar addon! (marketplace.php?mode=view&item_id=2) -The gravatar is off by default. This can be enabled via ACP > Avatar settings > Enable gravatar: YES
Bootstrap updated to 3.3.1
Jquery Cookies updated to 1.4.1
Update instruction here: viewtopic.php?p=4097#p4097

BBOOTS 3.0.2 released on June 10, 2014 Partial Changelog
BBOOTS maintenance update
BBcore Update
Update instruction here: viewtopic.php?p=2030#p2030


BBOOTS 3.0.1 released on May 20, 2014 Partial Changelog
maintenance update, fixed some reported bugs
Changed mobile post buttons layout
Update instruction here: viewtopic.php?p=1805#p1805


BBOOTS 3.0.0 released on May 7, 2014 Partial Changelog
Bootstrap 3.1.1 based
BBcore3x Added and MOD version Check
Menu Navigation improved (non English languages should now display proper spacing)
SEO optimization
Bug fixes and several Structure changes
Added new Read Function to the PM Notifier
Custom Icon Font set
Font Awesome 4x
Custom icons set: available classes
New Font Icons for Topics/Posts Status
More JS optimization
CSS general cleanup - Lighter, faster even more semantic
Minor Tweaks and Adjustments

Special Thanks goes out for: The Kuka for Beta testing. 8-)


BBOOTS 2.3.2 released on April 1, 2014:
Documentation updated
fixed the search action in topics
General Code clean
Extended forum margin on mobile devices


BBOOTS 2.3.1 released on March 6, 2014:
Balloon PM’s Notifier with Postpone option - Turn it on under UCP -Board configuration: Notify me on new private messages: Yes
Performance Engine to Load Up Resources Asynchronously and in Parallel
Performance Tweaks
Major Changes in CSS Specificity
Several JS updates
Error pages: 400, 401, 403, 404, 500, 501, 502, 503
Navigation moved to its own page
Added Custom Stylesheet for custom css or color scheme. Use the COLORIZE service to change the color-scheme in 1 click : COLORIZE
IconMoon integration - 263 New Glyphs: available classes
Responsive Avatars
New On-line off-line indicators for mobile devices
Rewritten scroll to top function
Mobile pagination and post buttons changes


Download here: http://themeforest.net/item/bboots-html ... ThemeSplat
 #1805  by ThemeSplat
 May 20th, 2014, 2:26 pm
Update from 3.0.0 to 3.0.1

Open BBOOTS/theme/basics.css Find and delete:
Code: Select all
.usermenu {
    box-shadow: 0 2px 2px 1px #CCCCCC;
}
Find:
Code: Select all
/*-------------------------------
	USER PROFILE AND GALLERY
 ------------------------------*/
After add:
Code: Select all
/*-- Responsive avatars fix for Bootsrtap3x --*/
.avatar-frame img  {
  width: auto\9;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}
Find and delete:
Code: Select all
.container {
    width: 95%;
    margin: 0 auto;
}

Find:
Code: Select all
.mainnav > ul {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: table;
    *display: inline;
    *zoom: 1;
	margin-top: -30px;
}

Replace it with:
Code: Select all
.mainnav > ul {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: table;
    *display: inline;
    *zoom: 1;
	margin-top: -35px;
}

Find:
Code: Select all
.footable-first-column {
    width: 60%;
}

Replace it with:
Code: Select all
.footable-first-column {
    width: 58%;
}

Find:
Code: Select all
/*** fix the bootstrap gap in btn group ***/
.btn-group-fix {
    margin-left: -2px !important;
}
After add:
Code: Select all
/*** fix the bootstrap space in btn group post ***/
.btn-post-fix {
   margin-left: 5px;
}


Responsive img in post: (this is included in the Bbcore3x. Uninstall it and install the newer version instead)
Open includes/bbcode.php and find:

Code: Select all
'img'		=> '<img src="$1" alt="' . $user->lang['IMAGE'] . '" />',
Replace it with:
Code: Select all
'img'		=> '<img class="img-responsive" src="$1" alt="' . $user->lang['IMAGE'] . '" />',



Open viewtopic_body.html and find:
Code: Select all
<div class="btn-toolbar pull-right hidden-xs">
			
		<div class="btn-group btn-group-post">
		  <!-- IF postrow.U_EDIT --><a class="btn btn-default" href="{postrow.U_EDIT}" title="{L_EDIT_POST}"><i class="fa fa-pencil"></i></a><!-- ENDIF -->
		  <!-- IF postrow.U_DELETE --><a class="btn btn-default" href="{postrow.U_DELETE}" title="{L_DELETE_POST}"><i class="fa fa-times"></i></a><!-- ENDIF -->

		<!-- IF not S_IS_BOT and S_REGISTERED_USER -->
		  <div class="btn-group btn-group-post btn-group-fix">
			<button title="{L_MORE}" type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
			  <i class="fa fa-cog"></i> <i class="fa fa-level-down"></i>
			</button>
			<ul class="dropdown-menu dropdown-menu-post">
			 <!-- IF postrow.U_REPORT --><li><a href="{postrow.U_REPORT}" title=""><i class="fa fa-exclamation-circle"></i> {L_REPORT_POST}</a></li><!-- ENDIF -->
			 <!-- IF postrow.U_WARN --><li><a href="{postrow.U_WARN}" title=""><i class="fa fa-minus-circle"></i> {L_WARN_USER}</a></li><!-- ENDIF -->
			 <!-- IF postrow.U_INFO --><li><a href="{postrow.U_INFO}" title=""><i class="fa fa-info-circle"></i> {L_INFORMATION}</a></li><!-- ENDIF -->
			</ul>
		  </div>
		<!-- ENDIF -->
		
		</div>

		<div class="btn-group btn-group-post">
			<!-- IF postrow.U_QUOTE --><a class="btn btn-default" href="{postrow.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}"><i class="fa fa-comment"></i></a><!-- ENDIF -->
		</div>
	</div>
		
	    <ul class="list-inline pull-right visible-xs">
			<!-- IF postrow.U_EDIT --><li><a class="btn btn-sm btn-default" href="{postrow.U_EDIT}" title="{L_EDIT_POST}"><i class="fa fa-pencil"></i></a></li><!-- ENDIF -->
			<!-- IF postrow.U_DELETE --><li><a class="btn btn-sm btn-default" href="{postrow.U_DELETE}" title="{L_DELETE_POST}"><i class="fa fa-times"></i></a></li><!-- ENDIF -->
			<!-- IF postrow.U_REPORT --><li><a class="btn btn-sm btn-default" href="{postrow.U_REPORT}" title="{L_REPORT_POST}"><i class="fa fa-exclamation-circle"></i></a></li><!-- ENDIF -->
			<!-- IF postrow.U_WARN --><li><a class="btn btn-sm btn-default" href="{postrow.U_WARN}" title="{L_WARN_USER}"><i class="fa fa-minus-circle"></i></a></li><!-- ENDIF -->
			<!-- IF postrow.U_INFO --><li><a class="btn btn-sm btn-default" href="{postrow.U_INFO}" title="{L_INFORMATION}"><i class="fa fa-info-circle"></i></a></li><!-- ENDIF -->
			<!-- IF postrow.U_QUOTE --><li><a class="btn btn-sm btn-default" href="{postrow.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}"><i class="fa fa-comment"></i></a></li><!-- ENDIF -->
	    </ul>


Replace it with:
Code: Select all
<div class="btn-post-fix pull-right hidden-xs">
				<!-- IF postrow.U_QUOTE --><a class="btn btn-default btn-post" href="{postrow.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}"><i class="fa fa-comment"></i></a><!-- ENDIF -->
			</div>
		
		<!-- IF not S_IS_BOT and S_REGISTERED_USER -->
		  <div class="btn-group btn-group-post pull-right hidden-xs">
			<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
			  <i class="fa fa-cog"></i> <i class="fa fa-level-down"></i>
			</button>
			<ul class="dropdown-menu dropdown-menu-post">
			 <!-- IF postrow.U_EDIT --><li><a href="{postrow.U_EDIT}" title=""><i class="fa fa-pencil"></i> {L_EDIT_POST}</a></li><!-- ENDIF -->
		     <!-- IF postrow.U_DELETE --><li><a href="{postrow.U_DELETE}" title=""><i class="fa fa-times"></i> {L_DELETE_POST}</a></li><!-- ENDIF -->
			 <!-- IF postrow.U_REPORT --><li><a href="{postrow.U_REPORT}" title=""><i class="fa fa-exclamation-circle"></i> {L_REPORT_POST}</a></li><!-- ENDIF -->
			 <!-- IF postrow.U_WARN --><li><a href="{postrow.U_WARN}" title=""><i class="fa fa-minus-circle"></i> {L_WARN_USER}</a></li><!-- ENDIF -->
			 <!-- IF postrow.U_INFO --><li><a href="{postrow.U_INFO}" title=""><i class="fa fa-info-circle"></i> {L_INFORMATION}</a></li><!-- ENDIF -->
			</ul>
		  </div>
		<!-- ENDIF -->
		
		<!-- IF not S_IS_BOT and S_REGISTERED_USER -->
		  <div class="btn-group visible-xs pull-right">
			<button title="{L_MORE}" type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
			  <i class="fa fa-cog"></i> <i class="fa fa-level-down"></i>
			</button>
			<ul class="dropdown-menu">
			 <!-- IF postrow.U_QUOTE --><li><a href="{postrow.U_QUOTE}" title=""><i class="fa fa-comment"></i> {L_REPLY_WITH_QUOTE}</a></li><!-- ENDIF -->
			 <!-- IF postrow.U_EDIT --><li><a href="{postrow.U_EDIT}" title=""><i class="fa fa-pencil"></i> {L_EDIT_POST}</a></li><!-- ENDIF -->
		     <!-- IF postrow.U_DELETE --><li><a href="{postrow.U_DELETE}" title=""><i class="fa fa-times"></i> {L_DELETE_POST}</a></li><!-- ENDIF -->
			 <!-- IF postrow.U_REPORT --><li><a href="{postrow.U_REPORT}" title=""><i class="fa fa-exclamation-circle"></i> {L_REPORT_POST}</a></li><!-- ENDIF -->
			 <!-- IF postrow.U_WARN --><li><a href="{postrow.U_WARN}" title=""><i class="fa fa-minus-circle"></i> {L_WARN_USER}</a></li><!-- ENDIF -->
			 <!-- IF postrow.U_INFO --><li><a href="{postrow.U_INFO}" title=""><i class="fa fa-info-circle"></i> {L_INFORMATION}</a></li><!-- ENDIF -->
			</ul>
		  </div>
		<!-- ENDIF -->
Find:
Code: Select all
<div class="postbody col-md-9">
replace it with:
Code: Select all
<div class="postbody col-md-9 col-sm-8">

Find:
Code: Select all
<div class="col-md-3 hidden-xs" id="profile{postrow.POST_ID}">

Replace it with:
Code: Select all
<div class="col-md-3 col-sm-4 hidden-xs" id="profile{postrow.POST_ID}">

Open overall_footer.html Find and Delete :
(at the end of the code row and not the first find *important)
Code: Select all
$(".btn-group [title]").tooltip({container:"body"})

Open ucp_pm_viewfolder.html and find:
Code: Select all
<!-- IF S_SHOW_RECIPIENTS --><i class="fa fa-user"></i> {messagerow.RECIPIENTS}<!-- ELSE --><i class="fa fa-user"></i> {messagerow.MESSAGE_AUTHOR_FULL}<!-- ENDIF --><br />
			<!-- IF messagerow.S_PM_DELETED -->
				<a href="{messagerow.U_REMOVE_PM}" class="topictitle">{L_DELETE_MESSAGE}</a><br />
				<span class="error">{L_MESSAGE_REMOVED_FROM_OUTBOX}</span>
				<!-- ELSE -->
				<span class="fa fa-envelope <!-- IF messagerow.PM_CLASS -->{messagerow.PM_CLASS}<!-- ENDIF -->"></span> <a href="{messagerow.U_VIEW_PM}" class="<!-- IF messagerow.S_PM_UNREAD -->topictitle<!-- ELSE -->nothing<!-- ENDIF -->">{messagerow.SUBJECT}</a>
				<!-- ENDIF -->

Replace it with:
Code: Select all
<!-- IF messagerow.S_PM_DELETED -->
				<a href="{messagerow.U_REMOVE_PM}" class="topictitle">{L_DELETE_MESSAGE}</a><br />
				<span class="error">{L_MESSAGE_REMOVED_FROM_OUTBOX}</span>
				<!-- ELSE -->
				<span class="fa fa-envelope <!-- IF messagerow.PM_CLASS -->{messagerow.PM_CLASS}<!-- ENDIF -->"></span> <a href="{messagerow.U_VIEW_PM}" class="<!-- IF messagerow.S_PM_UNREAD -->topictitle<!-- ELSE -->nothing<!-- ENDIF -->">{messagerow.SUBJECT}</a><br />
				<!-- ENDIF -->
				<!-- IF S_SHOW_RECIPIENTS --><i class="fa fa-user"></i> {messagerow.RECIPIENTS}<!-- ELSE --><i class="fa fa-user"></i> {messagerow.MESSAGE_AUTHOR_FULL}<!-- ENDIF -->


Open ucp_pm_viewmessage.html and find:
Code: Select all
<!-- IF U_VIEW_PREVIOUS_HISTORY --><a href="{U_VIEW_PREVIOUS_HISTORY}">{L_VIEW_PREVIOUS_HISTORY}</a><!-- ENDIF -->
		<!-- IF U_VIEW_NEXT_HISTORY --><a href="{U_VIEW_NEXT_HISTORY}">{L_VIEW_NEXT_HISTORY}</a><!-- ENDIF -->

Replace it with:
Code: Select all
<ul class="pager">
		  <!-- IF U_VIEW_PREVIOUS_HISTORY --><li class="previous"><a href="{U_VIEW_PREVIOUS_HISTORY}" class="pull-left">{L_VIEW_PREVIOUS_HISTORY}</a></li><!-- ENDIF -->
		  <!-- IF U_VIEW_NEXT_HISTORY --><li class="next"><a href="{U_VIEW_NEXT_HISTORY}" class="pull-right">{L_VIEW_NEXT_HISTORY}</a></li><!-- ENDIF -->
		</ul>


Open ucp_pm_message_header.html and find:
Code: Select all
<!-- IF U_POST_REPLY_PM --><a class="btn btn-default" title="{L_POST_REPLY_PM}" href="{U_POST_REPLY_PM}"><i class="fa fa-reply"></i> </a>
			<!-- ELSEIF U_POST_NEW_TOPIC --><a class="btn btn-default" href="{U_POST_NEW_TOPIC}" accesskey="n" title="{L_UCP_PM_COMPOSE}"><i class="fa fa-plus"></i> {L_UCP_PM_COMPOSE}</a><!-- ENDIF -->
			<!-- IF U_FORWARD_PM --><a class="btn btn-default" title="{L_POST_FORWARD_PM}" href="{U_FORWARD_PM}"><i class="fa fa-forward"></i> </a><!-- ENDIF -->
			<!-- IF U_POST_REPLY_PM and S_PM_RECIPIENTS gt 1 --><a class="btn btn-default" title="{L_REPLY_TO_ALL}" href="{U_POST_REPLY_ALL}"><i class="fa fa-group"></i> </a><!-- ENDIF -->


Replace it with:
Code: Select all
<!-- IF U_POST_REPLY_PM --><a class="btn btn-default" title="" href="{U_POST_REPLY_PM}"><i class="fa fa-reply"></i> {L_POST_REPLY_PM}</a>
			<!-- ELSEIF U_POST_NEW_TOPIC --><a class="btn btn-default" href="{U_POST_NEW_TOPIC}" accesskey="n" title=""><i class="fa fa-plus"></i> {L_UCP_PM_COMPOSE}</a><!-- ENDIF -->
			<!-- IF U_FORWARD_PM --><a class="btn btn-default" title="" href="{U_FORWARD_PM}"><i class="fa fa-forward"></i> {L_POST_FORWARD_PM}</a><!-- ENDIF -->
			<!-- IF U_POST_REPLY_PM and S_PM_RECIPIENTS gt 1 --><a class="btn btn-default" title="" href="{U_POST_REPLY_ALL}"><i class="fa fa-group"></i> {L_REPLY_TO_ALL}</a><!-- ENDIF -->


Open BBOOTS/template/navigation.html :
tracker.php?p=1&t=3#p5
Code: Select all
<!-- MOBILE Navigation block -->
<!-- Everything you want hidden at 940px or less, place within here -->
<div class="nav-collapse collapse flexnav-show">
    <nav class="hidden-lg hidden-md hidden-sm">
		<ul class="flexnav list-unstyled">
		<!-- IF not S_IS_BOT -->
	    <!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) -->
		    <li><a href="{U_REGISTER}"><i class="fa fa-thumbs-up"></i> {L_REGISTER}</a></li>
	    <!-- ENDIF -->
		<!-- ENDIF -->
		
	<!-- IF S_USER_LOGGED_IN -->
		<li><a href="{U_PROFILE}"><i class="fa fa-dashboard"></i> {L_PROFILE}</a></li>
    <!-- ENDIF -->
		<li><a href="{U_FAQ}"><i class="fa fa-question-circle"></i> {L_FAQ}</a></li>
    <!-- IF U_TEAM -->
	    <li><a href="{U_TEAM}"><i class="fa fa-group"></i> {L_THE_TEAM}</a></li>
	<!-- ENDIF -->
    <!-- IF S_DISPLAY_MEMBERLIST -->
        <li><a href="{U_MEMBERLIST}"><i class="fa fa-user"></i> {L_MEMBERLIST}</a></li>
	<!-- ENDIF -->
		
	<li class="item-with-ul">
		<a href="{U_SEARCH}"><i class="fa fa-search"></i> {L_SEARCH_ADV}</a>
	     <ul class="collapse viewdetails list-unstyled">
<!-- IF S_DISPLAY_SEARCH or (S_USER_LOGGED_IN and not S_IS_BOT) -->
<!-- IF S_DISPLAY_SEARCH -->
    <li><a href="{U_SEARCH_UNANSWERED}"><i class="fa fa-search"></i> {L_SEARCH_UNANSWERED}</a></li>
    <!-- IF S_LOAD_UNREADS -->
	 <li><a href="{U_SEARCH_UNREAD}"><i class="fa fa-comment"></i> {L_SEARCH_UNREAD}</a></li>
	<!-- ENDIF -->
    <!-- IF S_USER_LOGGED_IN -->
    <li><a href="{U_SEARCH_NEW}"><i class="fa fa-thumbs-up"></i> {L_SEARCH_NEW}</a></li>
	<!-- ENDIF -->
	<li><a href="{U_SEARCH_ACTIVE_TOPICS}"><i class="fa fa-star"></i> {L_SEARCH_ACTIVE_TOPICS}</a></li>		   
<!-- ENDIF -->
<!-- ENDIF -->
         </ul>
		  <a class="touch-button" href="javascript:void(0);" data-toggle="collapse" data-target=".viewdetails"><i class="navicon fa fa-sort-down"></i></a>
	</li>
	   
<!-- BLOCK WITH SUBMENU EXAMPLE

	<li class="item-with-ul">
		  <a href="#4"><i class="fa fa-search"></i> Submenu Group 1</a>
	     <ul class="collapse viewsubmenu list-unstyled">
            <li><a href="#5">SubLink 1</a></li>
            <li><a href="#6">SubLink 2</a></li>
            <li><a href="#7">SubLink 3</a></li>
            <li><a href="#8">SubLink 4</a></li>
         </ul>
		  <a class="touch-button" href="javascript:void(0);" data-toggle="collapse" data-target=".viewsubmenu"><i class="navicon fa fa-sort-down"></i></a>
	</li>
	
BLOCK WITH SUBMENU EXAMPLE -->
	   
    </ul>
</nav> 
</div>
<!-- MOBILE Navigation block -->

Replace the entire code block with this:
Code: Select all
<!-- MOBILE Navigation block -->
<!-- Everything you want hidden at 940px or less, place within here -->
    <nav class="hidden-lg hidden-md hidden-sm">
	 <div id="responsive-navigation" class="collapse">
		<ul class="flexnav list-unstyled">
		<!-- IF not S_IS_BOT -->
	    <!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) -->
		    <li><a href="{U_REGISTER}"><i class="fa fa-thumbs-up"></i> {L_REGISTER}</a></li>
	    <!-- ENDIF -->
		<!-- ENDIF -->
		
	<!-- IF S_USER_LOGGED_IN -->
		<li><a href="{U_PROFILE}"><i class="fa fa-dashboard"></i> {L_PROFILE}</a></li>
    <!-- ENDIF -->
		<li><a href="{U_FAQ}"><i class="fa fa-question-circle"></i> {L_FAQ}</a></li>
    <!-- IF U_TEAM -->
	    <li><a href="{U_TEAM}"><i class="fa fa-group"></i> {L_THE_TEAM}</a></li>
	<!-- ENDIF -->
    <!-- IF S_DISPLAY_MEMBERLIST -->
        <li><a href="{U_MEMBERLIST}"><i class="fa fa-user"></i> {L_MEMBERLIST}</a></li>
	<!-- ENDIF -->
		
	<li class="item-with-ul">
		<a href="{U_SEARCH}"><i class="fa fa-search"></i> {L_SEARCH_ADV}</a>
	     <ul class="collapse viewdetails list-unstyled">
<!-- IF S_DISPLAY_SEARCH or (S_USER_LOGGED_IN and not S_IS_BOT) -->
<!-- IF S_DISPLAY_SEARCH -->
    <li><a href="{U_SEARCH_UNANSWERED}"><i class="fa fa-search"></i> {L_SEARCH_UNANSWERED}</a></li>
    <!-- IF S_LOAD_UNREADS -->
	 <li><a href="{U_SEARCH_UNREAD}"><i class="fa fa-comment"></i> {L_SEARCH_UNREAD}</a></li>
	<!-- ENDIF -->
    <!-- IF S_USER_LOGGED_IN -->
    <li><a href="{U_SEARCH_NEW}"><i class="fa fa-thumbs-up"></i> {L_SEARCH_NEW}</a></li>
	<!-- ENDIF -->
	<li><a href="{U_SEARCH_ACTIVE_TOPICS}"><i class="fa fa-star"></i> {L_SEARCH_ACTIVE_TOPICS}</a></li>		   
<!-- ENDIF -->
<!-- ENDIF -->
         </ul>
		  <a class="touch-button" href="javascript:void(0);" data-toggle="collapse" data-target=".viewdetails"><i class="navicon fa fa-sort-down"></i></a>
	</li>
	   
<!-- BLOCK WITH SUBMENU EXAMPLE

	<li class="item-with-ul">
		  <a href="#4"><i class="fa fa-search"></i> Submenu Group 1</a>
	     <ul class="collapse viewsubmenu list-unstyled">
            <li><a href="#5">SubLink 1</a></li>
            <li><a href="#6">SubLink 2</a></li>
            <li><a href="#7">SubLink 3</a></li>
            <li><a href="#8">SubLink 4</a></li>
         </ul>
		  <a class="touch-button" href="javascript:void(0);" data-toggle="collapse" data-target=".viewsubmenu"><i class="navicon fa fa-sort-down"></i></a>
	</li>
	
BLOCK WITH SUBMENU EXAMPLE -->
	   
    </ul>
  </div>
</nav> 
<!-- MOBILE Navigation block -->
Find:
Code: Select all
data-target=".nav-collapse"
replace it with this:
Code: Select all
data-target="#responsive-navigation"

Done, refresh the Theme, forum and browser cache.
 #2030  by ThemeSplat
 June 10th, 2014, 6:21 pm
Update from 3.0.1 to 3.0.2

Open: style/BBOOTS/theme/style.cfg

Find:
Code: Select all
version = 3.0.12
After add:
Code: Select all
bboots = 3.0.2

Open: style/BBOOTS/theme/basics.css
Find:
Code: Select all
.crumbs .active > a {
    margin-right: 4px;
}
After add:
Code: Select all
.crumbs .active > a:last-child {
    font-weight: bold;
}

Open: style/BBOOTS/template/posting_smilies.html
Find:
Code: Select all
<div class="pagination">
	  <ul>
		<li>{PAGINATION}</li>
	  </ul>
	</div>
Replace it with:
Code: Select all
<ul class="pagination pagination-sm">
		<li>{PAGINATION}</li>
	  </ul>

Open: style/BBOOTS/template/posting_editor.html
Find:
Code: Select all
<a class="btn btn-mini" href="{U_MORE_SMILIES}" onclick="popup(this.href, 450, 350, '_phpbbsmilies'); return false;" title="{L_MORE_SMILIES}"><i class="icon-plus"></i></a>

Replace it with:
Code: Select all
<a class="btn-link btn-xs" href="{U_MORE_SMILIES}" onclick="popup(this.href, 450, 350, '_phpbbsmilies'); return false;" title="{L_MORE_SMILIES}"><i class="fa fa-plus"></i></a>

Open: style/BBOOTS/template/ucp_avatar_options.html
Find and delete:
Code: Select all
<!-- IF AVATAR --><input type="checkbox" name="delete" id="delete" ><label for="delete">{L_DELETE_AVATAR}</label><!-- ELSE --><!-- ENDIF -->
Find:
Code: Select all
<div class="help-block"><span class="label label-info">{L_NOTE}</span> {L_AVATAR_EXPLAIN}</div>

Before Add:
Code: Select all
<div>
      <!-- IF AVATAR --><input type="checkbox" name="delete" id="delete" ><label class="check-control" for="delete">{L_DELETE_AVATAR}</label><!-- ELSE --><!-- ENDIF -->
   </div>
New BBcore
Uninstall the prvious version and install the new version included in download package.
BBOOTS runs its own Update Manager. Go to ACP > Styles to see the version installed.
6-10-2014 2-20-17 PM.jpg
Update Manager
6-10-2014 2-20-17 PM.jpg (500.36 KiB) Viewed 77980 times
 #4097  by ThemeSplat
 November 13th, 2014, 4:23 pm
Update from 3.0.2 to 3.0.3

-Uninstall the BBcore
-Uninstall Gravatar Addon if installed (marketplace.php?mode=view&item_id=2)
-Install the new BBcore (documentation folder "SiteSplat_BBCore.zip" version 4.2.0)
-upload and overwrite the files contained in this folder in your root forum folder :
BBOOTS_update
(158.97 KiB) Downloaded 1386 times
Open: styles/BBOOTS/template/overall_header.html

Find:
Code: Select all
<div class="pmboots fade" id="message1">
replace it with:
Code: Select all
<div class="pmboots alert fade" id="message1" role="alert">
Open: styles/BBOOTS/theme/basics.css and find:
Code: Select all
.check-control {
    display: block;
    font-weight: normal;
}
after add:
Code: Select all
.radio label, .checkbox label {
    padding-left: 5px;
}
Refresh the template, theme, forum and browser cache several times!
 #5082  by ThemeSplat
 January 29th, 2015, 3:57 am
Update from 3.0.3 to 3.0.4

-Uninstall the BBcore
-Install the new BBcore (documentation folder "SiteSplat_BBCore.zip")


Here we go arm yourself with notepad++ and start the update :)

Open BBOOTS/imageset/imageset.cfg and find:
Code: Select all
copyright = &copy; SiteSplat.com (c) 2014
version = 3.0.12
Replace it with:
Code: Select all
copyright = &copy; SiteSplat.com (c) 2014
version = 3.0.13
Open BBOOTS/template/editor.js and find:
Code: Select all
if (textEl.createTextRange)
Replace it with:
Code: Select all
if (textEl.createTextRange && document.selection)
Open BBOOTS/template/forum_fn.js and find:
Code: Select all
jQuery('form input[type=text], form input[type=password]').live('keypress', function (e)
Replace it with:
Code: Select all
jQuery('form input[type=text], form input[type=password]').on('keypress', function (e)
Open BBOOTS/template/mcp_post.html and find:
Code: Select all
<!-- IF not S_POST_REPORTED -->
Replace it with:
Code: Select all
<!-- IF S_REPORT_CLOSED -->
Find:
Code: Select all
<!-- IF S_POST_REPORTED -->
Replace it with:
Code: Select all
<!-- IF not S_REPORT_CLOSED -->

BBOOTS/template/posting_smilies.html and find:
Code: Select all
// <![CDATA[
	var form_name = 'postform';
	var text_name = 'message';
// ]]>
Replace it with:
Code: Select all
	var form_name = opener.form_name;
	var text_name = opener.text_name;
Open BBOOTS/template/template.cfg and find:
Code: Select all
copyright = &copy; SiteSplat.com (c) 2014
version = 3.0.13
Replace it with:
Code: Select all
copyright = © SiteSplat.com (c) 2013 - 2015
version = 3.0.13
Open BBOOTS/template/ucp_groups_manage.html and find: (around line 59)
Code: Select all
<input type="text" name="group_colour" id="group_colour" value="{GROUP_COLOUR}" maxlength="6" placeholder="Ex:sitesplat" class="form-control"><span style="background-color: {GROUP_COLOUR};">&nbsp;&nbsp;&nbsp;</span> [ <a href="{U_SWATCH}" onclick="popup(this.href, 636, 150, '_swatch'); return false;">{L_COLOUR_SWATCH}</a> ]
Replace it with:
Code: Select all
<input type="text" name="group_colour" id="group_colour" value="{GROUP_COLOUR}" maxlength="6" placeholder="Ex:sitesplat" class="form-control"><span style="background-color: #{GROUP_COLOUR};">&nbsp;&nbsp;&nbsp;</span> [ <a href="{U_SWATCH}" onclick="popup(this.href, 636, 150, '_swatch'); return false;">{L_COLOUR_SWATCH}</a> ]

Open BBOOTS/template/ucp_pm_viewmessage_print.html find and delete:
Code: Select all
<meta name="keywords" content="" />
<meta name="description" content="" />

Open BBOOTS/template/viewtopic_print.html find and delete:
Code: Select all
<meta name="keywords" content="" />
<meta name="description" content="" />

Open BBOOTS/theme/theme.cfg find:
Code: Select all
copyright = &copy; SiteSplat.com (c) 2014
version = 3.0.12
Replace it with:
Code: Select all
copyright = © SiteSplat.com (c) 2013 - 2015
version = 3.0.13
Open BBOOTS/style.cfg find:
Code: Select all
copyright = &copy; SiteSplat.com (c) 2014
version = 3.0.12
bboots = 3.0.3

Replace it with:
Code: Select all
copyright = © SiteSplat.com (c) 2013 - 2015
version = 3.0.13
bboots = 3.0.4
====== phpBB - 3.0.13-PL1 END ======


Open BBOOTS/theme/basics.css and find:
Code: Select all
/* GENERAL ELEMENTS - HEADINGS */
body {
  background: url("{T_THEME_PATH}/bootstrap/pattern/forum-backdrop.png") repeat scroll 0 0 #EEEEEE;
  margin: 0;
  font-family: 'Source Sans Pro','Arial','Helvetica',sans-serif;
  font-size: 13px;
  background-color: #999999;
}
Replace it with:
Code: Select all
/* GENERAL ELEMENTS - HEADINGS */
html {
  background: #999 url("{T_THEME_PATH}/bootstrap/pattern/forum-backdrop.png");
}

body {
  background-color:transparent;
  margin: 0;
  font-family: 'Source Sans Pro','Arial','Helvetica',sans-serif;
  font-size: 13px;
}
Find:
Code: Select all
.user-profile-output-contact {
    margin-left: 65px;
    padding: 2px;
}
After add:
Code: Select all
.user-profile-output-contact ul li a {
    margin-left: -6px;
    margin-bottom: 4px;
}
Open BBOOTS/template/captcha_qa.html find and delete:
Code: Select all
<img src="{CONFIRM_IMAGE_LINK}" alt="{L_CONFIRM_CODE}" />
 #6391  by ThemeSplat
 May 6th, 2015, 6:01 pm
Update from 3.0.4 to 3.0.5

-Uninstall the BBcore
-Install the new BBcore (documentation folder "SiteSplat_BBCore.zip")
-Clear the forum, theme and browser cache

Here we go arm yourself with notepad++ and start the update :)

Open BBOOTS/imageset/imageset.cfg and find:
Code: Select all
version = 3.0.13
Replace it with:
Code: Select all
version = 3.0.14

Open BBOOTS/template/template.cfg and find:
Code: Select all
version = 3.0.13
Replace it with:
Code: Select all
version = 3.0.14

Open BBOOTS/theme/theme.cfg and find:
Code: Select all
version = 3.0.13
Replace it with:
Code: Select all
version = 3.0.14


Open BBOOTS/style.cfg and find:
Code: Select all
version = 3.0.13
bboots = 3.0.4
Replace it with:
Code: Select all
version = 3.0.14
bboots = 3.0.5

Locate BBOOTS/theme/basics.css:
Replace the whole basics.ss file with a new basics.css from a fresh download on themeforest.

PRENEXT_POST_NAVIGATION