Hello,
Im using some droplets for procalendar on my sidebar (global block) so it's showing on all pages.
I would like to show this global block on all but one page, is this possible? So if you are on /en/calendar/ You won't see this block.
can this be done?
I tried with
<?php
$homepage = "/en/calendar";
$currentpage = $_SERVER['REQUEST_URI'];
if($homepage != $currentpage) {?>
<h4>Calendar</h4>
<p>[[procal-events?section_id=312]]</p>
<?php } ?>
but won't work...
Hope u understand.
thank you
R