Hi Tim,
That thread is applied for templates which are built with old JAT3 v2 framework.
With JA Hotel template (which is based on new T3 framework), you can still use the idea of that thread, below is my tweak:
* Duplicate a template layout:
– Go to directory: /templates/ja_hotel/tpls/
– Duplicate ‘default.php‘ file to have a new file called ‘custom.php‘
* Customize layout:
Open this new file and looks for this snippet of code:
<div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->
<?php $this->loadBlock('topbar') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('masthead') ?>
<?php $this->loadBlock('section-1') ?>
<?php $this->loadBlock('mainbody') ?>
<?php $this->loadBlock('navhelper') ?>
<?php $this->loadBlock('footer') ?>
</div>
– Remove the header block (red line text above)
* Template assignment:
– Go to Backend > Extensions > Template manager > Duplicate default template style to have a new template style called ‘Custom template style’
– Navigate to the ‘Layout’ tab and assign ‘custom’ layout (created above)
– Navigate to ‘Assignment’ tab and assign to the login page
That’s it!