I found another bug report about Cataloger that I think might be related to my problem...
http://dev.cmsmadesimple.org/bug/view/6169
Because I realized that my problem is that users logged in as Editors can not affect any user-defined-attribute. Adding something to those fields simply wont get saved... The Editors can add and modify posts (Item Pages) in the backend, the reason they wont show up on my page is because visiblity is dependent on one of the user-defined-attribute (in my specific solution).
I am using this piece of code to sort out the Item Pages I want:
Code: Select all
{section name=numloop loop=$items}
{if $items[numloop].type == 'Music'}
(where "type" is that user-defined-attribute field...!)
I would like to sort them based on what Sub_Template they have but didn't get that to work:
Code: Select all
{section name=numloop loop=$items}
{if $items[numloop].sub-template == 'Music'}
That is why I added the user-defined-attribute "type". And ran into this problem. Which also affects 5 other user-defined-attributes I want to use...

Maybe this helps Jo..?
And: do you (or anyone else) know what piece of code I need to choose Item Pages based on sub-template instead of a user-defined-attribute? I had a look in phpMyAdmin and realized Template is not one of the attributes... (and also: that I am not that good at Php...

)