This isn't working. The sidebar.tpl is php:
Code: Select all
<?php if ($GLOBALS['tpl']['is_raw_mode']): ?>
<div id="serendipity<?= $GLOBALS['tpl']['pluginside'] ?>SideBar">
<?php endif; ?>
<?php foreach($GLOBALS['tpl']['plugindata'] AS $item): ?>
<div class="serendipitySideBarItem container_<?= $item['class'] ?>">
<?php if ($item.title != ''): ?><h3 class="serendipitySideBarTitle <?= $item['class'] ?>"><?= $item['title'] ?></h3><?php endif; ?>
<div class="serendipitySideBarContent"><?= $item['content'] ?></div>
</div>
<?php endforeach; ?>
<?php if ($GLOBALS['tpl']['is_raw_mode']): ?>
</div>
<?php endif; ?>
HELP!!!!
EDIT - It gets even worse!!!! I thought this would work, so I placed a copy of this file in my theme directory and added the <divs> I wanted.
When I saw it was not working, I deleted the file. However, it is as if the file is still there!!! When I view my source, the output is identical to the changes I made, but the file does not exist!!!!
What the heck is going on???
