Edit bar not showing after C5 update!!

Permalink
I updated a site I have been working on to the latest edition of C5 however the edit bar is not showing on my custom theme. I can access the dashboard if I type it in the address bar.

I have tried everything that I can think of but must be missing something. In the end I did a fresh install of C5 from scratch, so there are no add-ons installed, there is no JS in the custom theme and the PHP that I have added seems to be correct and worked for the previous version of C5.

The edit bar does not appear on Chrome, IE and FF. I have looked at my permissions and I am a superuser.

I must be missing something stupid here. This is the code behind the theme - it's simple stuff:

<?php defined('C5_EXECUTE') or die(_("Access Denied.")); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="<?php echo $this->getThemePath(); ?>/style.css" rel="stylesheet" type="text/css" />
<?php Loader::element('header_required'); ?>
</head>
<body>
<div id="wrapper_outter">
   <div id="wrapper_inner">
       <div id="header">
            <div id="site_title">

 
teknojunkey replied on at Permalink Reply
teknojunkey
Hi Ger, I had the same problem, you need to add this to your theme header.php
<?php Loader::element('footer_required'); ?>