Edit Header Not Working

Permalink
Hi there. I followed your screen cast to the letter and tried it out, but when I "return to site" the editor header is there; but the buttons don't work!? Anything I missed?

 
liquidfuse replied on at Permalink Reply
You have to create "Editable Regions" in order to use the buttons to edit your site. Insert the following code where your text is or where you would like to add content.

<? $a = new Area('Main'); $a->display($c); ?>

if you give me the link to your c5 site, I can better assist you once I see it.
humanv3 replied on at Permalink Reply
hey, sorry, my partner installed right over me while I was waiting for your response. the address is fresh.f6designlogic.com and as I mentioned, i'm quite sure I followed your screencast to the letter to get this up and running. Obviously there is a php mistake on my page or something, but i've checked it many times...

I will appreciate your help :)

Human.

**Update, ok I've figured out that it stops working after I put in the code for the href ( $this-> etc... ).... just to narrow it down.

**Update2, I've figured out that your software is not compatible with mootools and slimbox (for popup image viewing)... is there a fix for this?
liquidfuse replied on at Permalink Reply
Zip and upload your default.php file so that I can look at the source code or give me a temporary login to your site so that I can login and take a look.

you can delete the temporary user account afterwards.
froggie81 replied on at Permalink Reply
Ha anyone found out why this is a problem or how to get slimbox to work within C5.

Ive checked and quadruple checked my .js abd css references and apache error logs to be sure and I cant figure this out.

Thanks,
Frank
froggie81 replied on at Permalink Reply
Ha anyone found out why or how to get slimbox to work within C5.

Thanks,
Frank
froggie81 replied on at Permalink Reply
Ha anyone found out why or how to get slimbox to work within C5.

Thanks,
Frank
fangtastic replied on at Permalink Reply
fangtastic
yes i know this prob, i had the same prob with a floatmenu i am using. i found that calling the js from the template header just does not work for me no matter how i call it. so i made a copy of header_required.php from the elements folder INSIDE the siteroot/concrete/elements folder. i then put the copy in the siteroot/elements/ folder and added my js to that. groovy that works now BUT, if i have a page that does not contain a div for the js then the butons dont work.

ie. my js is called floatmenu, it has a var that looks for a div call "floatmenu" every page must have this div or the editor will not work.

the workaround since my div had a backgrounf image that was being dropped in even if i deleted all the code was to place another div inside.

ie i created anothe div called "floatmenucont" for container this went inside floatmenu.

i added the extra div to my css. this then allowed me to add the div "floatmenu" to every page so the editor worked, but when i actually needed the floating menu i added all the other code inside "floatmenucont"

hope that makes some sense