Is it possible to increase this from 280 characters?
Coded as:
validates :description, length: { maximum: 280 }
here:
https://github.com/discourse/discourse/blob/main/app/models/tag.rb
Is it possible to increase this from 280 characters?
Coded as:
validates :description, length: { maximum: 280 }
here:
https://github.com/discourse/discourse/blob/main/app/models/tag.rb
Thanks Alex, is that setting not for the tag_title though?
I’m looking for a way to increase the length of the tag_description…
The tag description length is hardcoded into Discourse, so if you wanted to change this value you would need to edit that line in the code on your Discourse instance and then rebuild Discourse.
cd /var/discourse
./launcher rebuild app
Alternatively, you could create a plugin to expose that setting on the admin settings menu, and then update it as needed.