I like the simple theme of this website, a lot. It's a custom J2EE web app and it's not open source for now. (I mailed the author) Maybe someone is likes it too, and is willing to port over? I know almost nothing about programming, so please forgive me for asking!
Seems like there is an issue with the css or something in that. Unfortunately, I'm not a web developper therefore I can't identify where is the problem and how to fix it. Would realy appreciate any feedback.
the drupaldanmark.dk site was intended to be a danish drupal user community, but currently lives its life as a puny "proof of concept". A lot of other personal projects will consume all my time for the next year to come, so I decided to hand over the drupaldanmark.dk domain to anyone who'd like to take over where I left. Free of charge of course. The webhost is prepaid until december 2006.
Only condition is that the domain must be used for its intended purpose.
If interested you can email me: bjarne at 6400 dot net
At first I thought it was a template problem, but I tried it with another template (plain1) and it gave the same result. Can anyone tell me how to solve it?
How can I do it so that only admins or moderators can assign nodes to terms. Other users can submit nodes, using a flexinode form, but the taxonomy_form is disabled for them.
I've played with this in the function_taxonomy_form in taxonomy.module:
global $user;
if (in_array('guestadmin',$user->roles)) {
return TRUE;
}
else {
return FALSE;
}
The select form does disappears, leaving a 1 in it's place. Nothing appears for guestadmin either!