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.
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.
For anyone else reading this, just insert that code snippet just before the closing </body> tag.
No worries, that seems to be catching a lot of people out! ;-)
thanks! :)
thanks a lot! saved my life! :)
almost kill myself trying to solve this 'issue'
almost kill myself trying to solve this 'issue'
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! :)
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! :)
same freaking problem, and same level of newbie, please help us.
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:
Just before that tag, insert the following code:
<?php Loader::element('footer_required'); ?>
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'); ?>
<?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'); ?>
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>
www.telefixx.dk
thanks
thanks
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?
and then we have it again, im a newbie :) where do i put it in?
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:
Now, once you find it, insert the php code. It should look like this:
<?php Loader::element('footer_required'); ?> </body>
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.
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?
So it looks like this themes/theme name
Can you browse to that location?
would you like the ftp username and password? i think i trust you :D
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.
It did not have to be used in 5.4, but in 5.5 it does.