No Edit Bar on Newly Created Theme

Permalink
Hi all - I don't see the Edit link when applying this theme to a page. Can you see an errors or make any suggestions based upon the following code? (BTW - ugly colors on purpose while playing with theme.)

1 Attachment

sethhickel
 
Job replied on at Permalink Reply
Job
Try move the

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


outside of the </body> tag.

So it'd be:

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


Be sure to mark this as an answer if it helps.

Job.
sethhickel replied on at Permalink Reply
sethhickel
I'm afraid that did not do the trick.
mnakalay replied on at Permalink Best Answer Reply
mnakalay
I think there might be a problem with unicode characters as instead of having
Loader::element('header_required');

My editor shows me
Loader::element(?header_required?);

Notice the question marks.

It's the same for the footer and the New Areas.

That might be the problem, maybe you used a special kind of symbol that is an unicode equivalent of the proper symbol and php doesn't know what to do with it.
sethhickel replied on at Permalink Reply
sethhickel
Thank you for the note about the character. That worked. I switched editor's and overwrote all of the "'" with new "'". I have the edit bar now.

Thanks again!!
mnakalay replied on at Permalink Reply
mnakalay
You are very welcome