Code: Select all
In your theme.php, you can use the following example, meaning this can be solved with PHP only.
- This should show your about area only on the about page.
<?php
if ($Wcms->currentPage == 'about) {
echo $Wcms->block('newEditableArea');
} else {
}
if ($Wcms->currentPage == 'anotherPage) {
echo $Wcms->block('newEditableArea2');
} else {
}
?>