In-page edit toolbar gone since upgrading

Permalink
Since upgrading from 5.4.2.2 to 5.5.1, the edit toolbar is gone. I have tried in Firefox and IE. Also cleared concrete cache. Anyone have any suggestions? Site ishttp://www.mickeycoxsoccer.org if you would like to inspect.

chai714
 
VidalThemes replied on at Permalink Best Answer Reply
VidalThemes
Hi, has your theme got the following in the footer:

<?php   Loader::element('footer_required'); ?>


It did not have to be used in 5.4, but in 5.5 it does.
chai714 replied on at Permalink Reply
chai714
Thank you Vidall! That did the trick. Guess I'll be updating all my templates.

For anyone else reading this, just insert that code snippet just before the closing </body> tag.
VidalThemes replied on at Permalink Reply
VidalThemes
No worries, that seems to be catching a lot of people out! ;-)
n3l1t4 replied on at Permalink Reply
n3l1t4
thanks! :)
n3l1t4 replied on at Permalink Reply
n3l1t4
thanks a lot! saved my life! :)

almost kill myself trying to solve this 'issue'
lisaedelman1980 replied on at Permalink Reply
Hi All,

Please pardon me for highjacking in on this thread, but I've just experienced this issue as well. I'm pretty new to Concrete5/CMS design, but am constantly trying to fill my brain with the information!

So my question is - where can I add this code in? I don't have the theme I'll be using yet, as it's being updated. I have this weird thing happening where I'm in the Dashboard, click on "Return To Website", and then it just takes me to my site as if I logged out. Again, no edit bar or anything. Argh!

Thanks in advice for any help, it 'tis much appreciated! :)
elmkvist replied on at Permalink Reply
same freaking problem, and same level of newbie, please help us.
chai714 replied on at Permalink Reply
chai714
Within your theme folder, locate the "default.php" file. Open that up in your preferred editor (could be Notepad++, Dreamweaver, etc) and look for the tag "</body>"

Just before that tag, insert the following code:

<?php   Loader::element('footer_required'); ?>
elmkvist replied on at Permalink Reply
cant fint it, this it what i have?

<?php
defined('C5_EXECUTE') or die(_("Access Denied."));
$this->inc('elements/header.php');
?>

<div id="page">
<div id="page-bgtop">
<div id="page-bgbtm">
<div id="content">
<?php
$a = new Area('Main');
$a->display($c);
?>
<div style="clear: both;"> </div>
</div>
<!-- end #content -->
<div id="sidebar">
<ul>
<?php
$a = new Area('Sidebar');
$a->setBlockWrapperStart('<li>');
$a->setBlockWrapperEnd('</li>');
$a->display($c);
?>
</ul>
</div>
<!-- end #sidebar -->
<div style="clear: both;"> </div>
</div>
</div>
</div>
<!-- end #page -->

<?php $this->inc('elements/footer.php'); ?>
chai714 replied on at Permalink Reply
chai714
Do you have a link to your site? I created my template from scratch so I'm not sure why you don't have the typical html, head, and body tags. Should look like this:

<html>
   <head>
           <?Loader::element('header_required'); ?>
        </head>
        <body>
         ALL YOUR DIVS, CONTENT, ETC GO INSIDE THE BODY TAG
           <?php Loader::element('footer_required'); ?>
   </body>   
</html>
elmkvist replied on at Permalink Reply
www.telefixx.dk


thanks
chai714 replied on at Permalink Reply
chai714
It looks like the template you're using has the correct tags for you to be able to insert the code. Can you give it a shot?
elmkvist replied on at Permalink Reply
and then we have it again, im a newbie :) where do i put it in?
chai714 replied on at Permalink Reply
chai714
look for this EXACT tag in your default.php file: </body>

Now, once you find it, insert the php code. It should look like this:

<?php Loader::element('footer_required'); ?>
</body>
elmkvist replied on at Permalink Reply
when i open my ftp go to packages - themes - yosemite enter the theme and find the default.php open it with textmade, the body isnt in the scripts.
chai714 replied on at Permalink Reply
chai714
My theme is located in the root in a folder called "themes"

So it looks like this themes/theme name

Can you browse to that location?
elmkvist replied on at Permalink Reply
would you like the ftp username and password? i think i trust you :D
chai714 replied on at Permalink Reply
chai714
Please do not post it here. This is a public forum. You can private message me that info if you want. I can take a look.