Modify Performer Aspects

Hi,
I understand we can set custom fields for performers, but how can we remove them? I prefer to use a tag system for certain characteristics and having them as fields when scraping adds a lot of time.

If you mean removing Custom Fields for performers there is a - button next to the Value input box.

If you are talking about general fields, they are hardcoded. You can hide them with CSS or modify scapers to ignore them, but they can’t be removed without building your own release.

Would you be kind enough to explain how I could hide them with CSS?

Example from Discord.

.form-group.row:has(
  label[for="weight"]
) {
  display: none;
}

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.