Tag Descriptions: Can They Be Uploaded in Bulk?

I read how to add a single description to a tag:

Staff can now add descriptions to tags, just like categories. Descriptions are displayed when hovering over a tag in the topic list. To add/edit a tag description, as staff, navigate to the tag page, click the wrench, and then the edit pencil.

Is it possible to upload multiple tag descriptions?

Not through the UI, I think.

Something like this might help.

t=Tag.find_by_name("done")
t.description='this is described now' 
t.save

If you have dozens and you’re self hosted it might be worth it to do it through Rails.

1 Like