Page 1 of 1
Remove freetags from backend
Posted: Wed Aug 02, 2006 3:56 pm
by Trench
Is there anyway to alter the freetag plugin so the tags don't show up when you're posting an entry? I'd rather enter them manually then have them be clickable. Thanks for any help.

Re: Remove freetags from backend
Posted: Wed Aug 02, 2006 4:17 pm
by garvinhicking
Hi!
yes, you can edit your admin/style.css file and add:
Code: Select all
.backend_freetag_list {
display: none;
}
to it.
Best regards,
Garvin
Posted: Wed Aug 02, 2006 5:23 pm
by Trench
It didn't work. I put it in in admin/style.css for both the theme I'm using and the default.
Posted: Wed Aug 02, 2006 5:49 pm
by mattsches
I guess it should be
Code: Select all
#backend_freetag_list {
display:none;
}
because it's an
id attribute.
- Mattsches
Posted: Wed Aug 02, 2006 5:54 pm
by Trench
Perfect. Thank you.
