I'm developing a single user/administrator theme, but I haven't managed to get quite the configuration I want out of it.
Question 1: At the moment, when my single user/administator posts a story -- ("a static page") -- the user is the only one that can read it. Without logging in, non-users get access denied to this page. In contrast, the blocks show up, but they don't work -- for example the rss feed responds with an "access denied" to non-logged-in users.
I've noticed that as present, drupal is only capable of assigning either left or right position to a block. Are there any modifications planned to support more than 2 areas for blocks, perhaps by assigning either left,right or a value from 0 (or 1) to 9? I have plans for a 4 column layout, which at present I'm having to hardcode one of the columns into the theme itself, which will technically work but I'd much prefer it if I could assign blocks to that column as it makes things so much easier.
How do I exercise more control of the Syndicaton Box placement (the one with the xml gif inside)?
At the moment, I used the following code to place all the box elements (calendar, user account information, syndication): theme_blocks("all", $this);
This is code taken from one of the examples. The core documentation doesn't exactly give me specifics about this function (docs say that it takes 1 arg instead of 2).
Any suggestions on just getting at one particular box element?