concrete5 add to area does nothing

Permalink
I am new to concrete5 and I added a new area

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

How do I make it so that I can edit this area, when I click it on the preview it does nothing and it has a grey outline not a red one...

1 Attachment

 
ScottC replied on at Permalink Reply
ScottC
the $a is the variable, so they need to be unique to each area. Odds are you have an area that is already using $a :)

-Scott
aaron replied on at Permalink Reply
<?php
$ah = new Area('Site_Description');
$ah->display($c);
?>

I enables another theme and was able to edit that Tag but once I went back to my theme and deleted the block there was no way for me to add another block...

When I click add to Site Description nothing happens.

In my theme it only allows my to delete or move the block not edit.
aaron replied on at Permalink Reply 1 Attachment
Do you think It is because I am including jquery in my footer???


I am also getting these weird pop ups
ScottC replied on at Permalink Reply
ScottC
I'd leave it there :)

Adding it in the footer assuming you haven't hacked at the header_required file means you add it twice, which I guess could have an issue, I can't say I have messed around with doing that.
aaron replied on at Permalink Reply
I took out both the jquery & ui and it solved the problem.