For the template files, refer to the latest files if you aren't sure what code is being mentioned:
1 Open the 'content/*theme*/footer.tpl.php' file. After the textarea "form-group" div, add the following:
<?php
// Load basic captcha if enabled.
// html/captcha.htm
echo $this->CAPTCHA;
?>
2 Open the following files:
content/*theme*/html/footer-latest-products.htm
content/*theme*/html/product/product-popular-link.htm
content/*theme*/html/product/product-recently-viewed-link.htm
content/*theme*/html/product/product-related-link.htm
After the following code:
<a href="{url}" title="{title}">{text}</a>
Add
<div class="price">{price_html}</div>
3 Open the following files:
content/*theme*/checkout-no-shipping.tpl.php
content/*theme*/checkout-none-gateway.tpl.php
content/*theme*/checkout-shipping.tpl.php
After the following code:
<div class="panel panel-default">
<div class="panel-body">
<div class="form-group">
<textarea name="fm[notes]" rows="5" cols="20" class="form-control"></textarea>
</div>
</div>
</div>
Add
<?php
// Is terms and conditions enabled?
if ($this->SETTINGS['tandc'] == 'yes' && $this->SETTINGS['tandc_txt']) {
?>
<div class="panel panel-default">
<div class="panel-body">
<input type="checkbox" name="fm[tandc]" value="yes"> <?php echo $this->TEXT[29]; ?>
</div>
</div>
<?php
}
?>
4 Open the 'content/*theme*/view-order.tpl.php' file.
Wrap the 'infopdfbutton' class div for the PDF in an if statement.
<?php
if ($this->PDF->visprint == 'yes') {
?>
<div class="text-right marginbottom50 infopdfbutton">
<button class="btn btn-success" type="button" onclick="mswPDF('<?php echo $this->order['id']; ?>')"><i class="fa fa-file-pdf-o fa-fw"></i> <?php echo $this->TEXT[11]; ?></button>
</div>
<?php
}
?>