===============================
29 November, 2017 - Version 2.5
===============================

-------------------------------------------------------------------------------------------
Backup your theme/style folder and files before applying these updates.
-------------------------------------------------------------------------------------------
The best way is to use a compare tool, like: https://sourceforge.net/projects/kdiff3/files/
and use it to compare the 'folders' (the version you're using with the new version)
-------------------------------------------------------------------------------------------
Updating HTML Templates Requires Manual Work.
-------------------------------------------------------------------------------------------


*. WHMCS template updated to be compatible with latest "WHMCS Version 7.4.1"
----------------------------------------------------------------------------

	*. Simply Add The Following Files:
	--------------------------------------
		-> css/index.php
		-> error/index.php
		-> fonts/index.php
		-> img/flags.png
		-> img/flags@2x.png
		-> img/index.php
		-> includes/index.php
		-> js/index.php
		-> oauth/index.php
		-> store/index.php
		-> index.php

	*. Simply Replace The Following Files:
	--------------------------------------
		-> css/colors/theme-color-1.css
		-> css/colors/theme-color-2.css
		-> css/colors/theme-color-3.css
		-> css/colors/theme-color-4.css
		-> css/colors/theme-color-5.css
		-> css/colors/theme-color-6.css
		-> css/colors/theme-color-7.css
		-> css/colors/theme-color-8.css
		-> css/colors/theme-color-9.css
		-> css/colors/theme-color-10.css
		-> css/all.css
		-> css/all.min.css
		-> css/help.md
		-> css/hostwhmcs-style.css
		-> css/styles.css
		-> js/main.js
		-> js/scripts.js
		-> js/scripts.min.js
		-> store/spamexperts/index.tpl
		-> store/spamexperts/master.js
		-> store/weebly/upgrade.tpl
		-> creditcard.tpl
		-> knowledgebase.tpl

	*. Simply Replace The Following Codes:
	--------------------------------------
		-> header.tpl
			=> Deleted:
			-----------
			Line 14: <body>
			
			=> Added:
			---------
			Line 14: <body data-phone-cc-input="{$phoneNumberInputStyle}">
		
		-> header.tpl
			=> Deleted:
			-----------
			Line 216: <span class="input-group-btn">
			Line 217:     {if $registerdomainenabled}
			Line 218:         <input type="submit" class="btn btn-warning" value="{$LANG.search}" />
			Line 219:     {/if}
			Line 220:     {if $transferdomainenabled}
			Line 221:         <input type="submit" name="transfer" class="btn btn-info" value="{$LANG.domainstransfer}" />
			Line 222:     {/if}
			Line 223: </span>
			
			=> Added:
			---------
			Line 216: <span class="input-group-btn">
			Line 217:     {if $registerdomainenabled}
			Line 218:         <input type="submit" class="btn search" value="{$LANG.search}" />
			Line 219:     {/if}
			Line 220:     {if $transferdomainenabled}
			Line 221:         <input type="submit" name="transfer" class="btn transfer" value="{$LANG.domainstransfer}" />
			Line 222:     {/if}
			Line 223: </span>
		
		-> header.tpl
			=> Deleted:
			-----------
			Line 289: <section id="main-body">
			Line 290:    <div class="container{if $skipMainBodyContainer}-fluid without-padding{/if}">
			Line 291:        <div class="row">
			Line 292:            {if !$inShoppingCart && ($primarySidebar->hasChildren() || $secondarySidebar->hasChildren())}
			Line 293:                {if $primarySidebar->hasChildren() && !$skipMainBodyContainer}
			Line 294:                    <div class="col-md-9 pull-md-right">
			Line 295:                        {include file="$template/includes/pageheader.tpl" title=$displayTitle desc=$tagline showbreadcrumb=true}
			Line 296:                    </div>
			Line 297:                {/if}
			Line 298:                <div class="col-md-3 pull-md-left sidebar">
			Line 299:                    {include file="$template/includes/sidebar.tpl" sidebar=$primarySidebar}
			Line 300:                </div>
			Line 301:            {/if}
			Line 302:            <!-- Container for main page display content -->
			Line 303:            <div class="{if !$inShoppingCart && ($primarySidebar->hasChildren() || $secondarySidebar->hasChildren())}col-md-9 pull-md-right{else}col-xs-12{/if} main-content">
			Line 304:                {if !$primarySidebar->hasChildren() && !$showingLoginPage && !$inShoppingCart && $templatefile != 'homepage' && !$skipMainBodyContainer}
			Line 305:                    {include file="$template/includes/pageheader.tpl" title=$displayTitle desc=$tagline showbreadcrumb=true}
			Line 306:                {/if}
			Line 307:
			
			=> Added:
			---------
			Line 289: <section id="main-body">
			Line 290:     <div class="container{if $skipMainBodyContainer}-fluid without-padding{/if}">
			Line 291:         <div class="row">
			Line 292: 
			Line 293:         {if !$inShoppingCart && ($primarySidebar->hasChildren() || $secondarySidebar->hasChildren())}
			Line 294:             {if $primarySidebar->hasChildren() && !$skipMainBodyContainer}
			Line 295:                 <div class="col-md-9 pull-md-right">
			Line 296:                     {include file="$template/includes/pageheader.tpl" title=$displayTitle desc=$tagline showbreadcrumb=true}
			Line 297:                 </div>
			Line 298:             {/if}
			Line 299:             <div class="col-md-3 pull-md-left sidebar">
			Line 300:                 {include file="$template/includes/sidebar.tpl" sidebar=$primarySidebar}
			Line 301:             </div>
			Line 302:         {/if}
			Line 303:         <!-- Container for main page display content -->
			Line 304:         <div class="{if !$inShoppingCart && ($primarySidebar->hasChildren() || $secondarySidebar->hasChildren())}col-md-9 pull-md-right{else}col-xs-12{/if} main-content">
			Line 305:             {if !$primarySidebar->hasChildren() && !$showingLoginPage && !$inShoppingCart && $templatefile != 'homepage' && !$skipMainBodyContainer}
			Line 306:                 {include file="$template/includes/pageheader.tpl" title=$displayTitle desc=$tagline showbreadcrumb=true}
			Line 307:             {/if}
			Line 308: 
