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...
<? $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...
<?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.
$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.
Do you think It is because I am including jquery in my footer???
I am also getting these weird pop ups
I am also getting these weird pop ups
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.
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.
I took out both the jquery & ui and it solved the problem.
-Scott