No Edit Bar showing up when I log in
Permalink
My first Concrete5 install... I read in the forums that it could be the javascript interfering but have spent hours testing with no such luck. Any help would be much appreciated!
Header:
footer:
Header:
<!DOCTYPE html> <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> <?php Loader::element('header_required'); ?> <head> <!--================================= Style Sheets =================================--> <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,400italic,600,800,700' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Antic+Slab' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Ropa+Sans' rel='stylesheet' type='text/css'>
Viewing 15 lines of 30 lines. View entire code block.
footer:
<div id="signin"> <a href="<?=$this->url('/login')?>"><?=t('Sign In ')?></a> </div> </div> </div> </footer> </div> <!--================================= Script Source =================================--> <script src="<?=$this->getThemePath()?>/assets/js/jquery-1.9.js"></script> <script src="<?=$this->getThemePath()?>/assets/js/royal_preloader.min.js"></script> <script src="<?=$this->getThemePath()?>/assets/js/bootstrap.min.js"></script> <script src="<?=$this->getThemePath()?>/assets/js/jquery.easing-1.3.pack.js"></script> <script src="<?=$this->getThemePath()?>/assets/js/jquery.flexslider-min.js"></script>
Viewing 15 lines of 73 lines. View entire code block.
yes have added the html closing tag but no change...
Try removing this line from your footer:
Concrete5 adds JQuery automatically, so having two lots of it causes problems.
<script src="<?=$this->getThemePath()?>/assets/js/jquery-1.9.js"></script>
Concrete5 adds JQuery automatically, so having two lots of it causes problems.
have removed it, but still no change...
The theme probably has JQuery plugins that require the JQuery v1.9 file, whereas Concrete5 uses v1.7.2 (last time I checked). Try removing a few other scripts from the footer until the edit bar returns and then you may find that script requires a higher version of JQuery than 1.7.2.
Check the forum for advice on how to handle changing the default JQuery version Concrete5 uses.
Check the forum for advice on how to handle changing the default JQuery version Concrete5 uses.
Could be your short tags..
Where you have this
Try changing them to this
Where you have this
<?=$this
Try changing them to this
<?php =$this
I see </body> end tag, but not </html> tag