Hi everybody.

Essentially I want to have 2 classes of logged in user.
Simple user and Advanced user.

I would like both to be able to post Story content on the site.

BUT

Permit
Simple users to only upload ONE IMAGE (thumbnail size)
while allowing
Advanced users to upload MULTIPLE IMAGES (larger size)

Is it possible to do this with CCK/ImageField?
How?

Comments

agarwal.sudhanshu’s picture

Yes its possible with CCK/IMageField and Content Permission module (Its a sub module of CCK)
create 2 different image fields each for thumbnail and larger size.
for larger size image fields set its limit to 2,3,5 or unlimited as your requirement(So users will be able to upload multiple).
and from users > permission, allow users with role (Simple users) to create/edit the thumbnail image field
and allow users with role (Advanced users) to create/edit the larger image field.

Thanks
Sudhanshu

TWD’s picture

Brilliant. Thanks a lot.