Remove freetags from backend

Creating and modifying plugins.
Post Reply
Trench
Regular
Posts: 85
Joined: Fri Nov 05, 2004 11:38 am

Remove freetags from backend

Post 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. :D
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: Remove freetags from backend

Post 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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Trench
Regular
Posts: 85
Joined: Fri Nov 05, 2004 11:38 am

Post by Trench »

It didn't work. I put it in in admin/style.css for both the theme I'm using and the default.
mattsches
Regular
Posts: 440
Joined: Sat Nov 05, 2005 9:35 pm
Location: Wiesbaden, Germany
Contact:

Post by mattsches »

I guess it should be

Code: Select all

#backend_freetag_list {
display:none;
}
because it's an id attribute.

- Mattsches
Trench
Regular
Posts: 85
Joined: Fri Nov 05, 2004 11:38 am

Post by Trench »

Perfect. Thank you. :D
Post Reply