In ec3_get_calendar(), include a cookie check. I believe this becomes more of a PHP question than a WordPress question. See examples in thw WordPress code, especially the dashboard-side, i.e. ~/wp-admin.
Okay, here is what I have found:
Useing Conditional Tags might be the way to go. The one I found specifically would be:
————————————————-
is_author(‘Elite Hacker’)
When the archive page for the Author with Nickname “Elite Hacker” is being displayed.
————————————————–
Here is the code I entered:
<?php if (is_author(‘admin’)) { ?>
-
<?php ec3_get_calendar(); ?>
The page comes up with:
Parse error: parse error, unexpected $
Theres something simple im missing im sure. Although id reather this be tied to a user lvl. Admins are lvl 10, if I could tie it to that, I would prefer that.
Help?!?
AT