Skip to main content
Answer

Remove Fields

  • December 12, 2023
  • 6 replies
  • 115 views

malicm
Contributor II
Forum|alt.badge.img

Hi! I am looking to remove these two fields from My Activities > External Training > New Activity. 

 

I tried a couple ways, but not successful. Was wondering if anyone here would be faster at this. 

Best answer by Bfarkas

So I think that second field, ‘Employed’ is n additional field configured in your system, curious, if you don’t want it, can you just get rid of it?

You can find it on the system admin menu under Manage External Training > Additional Fields.

/legacy/admin/index.php%3Fr%3DTranscriptsApp/additionalFields/index

 

Alright, for the first one, this should hide it:

.control-group:has(#certification) {
display:none;
}

If for some reason, you want the additional field but don’t want users to fill it in….I think this should hide that one, although you’re id might be different.

.control-group:has(#Transcripts_additional_1_value) {
display:none;
}

 

6 replies

Bfarkas
Hero III
Forum|alt.badge.img+6
  • Hero III
  • Answer
  • January 17, 2024

So I think that second field, ‘Employed’ is n additional field configured in your system, curious, if you don’t want it, can you just get rid of it?

You can find it on the system admin menu under Manage External Training > Additional Fields.

/legacy/admin/index.php%3Fr%3DTranscriptsApp/additionalFields/index

 

Alright, for the first one, this should hide it:

.control-group:has(#certification) {
display:none;
}

If for some reason, you want the additional field but don’t want users to fill it in….I think this should hide that one, although you’re id might be different.

.control-group:has(#Transcripts_additional_1_value) {
display:none;
}

 


malicm
Contributor II
Forum|alt.badge.img
  • Author
  • Contributor II
  • January 18, 2024

Thank you so much! They worked. I couldn’t find where the additional field, but the code worked. 


Bfarkas
Hero III
Forum|alt.badge.img+6
  • Hero III
  • January 18, 2024

If that worked, it confirms it is an additional field for me. You manage those by going to system admin menu and selecting manage from the external training area:
 

Select ‘additional fields’
 

I imagine ‘Employeed’ is there and can just be removed instead of hiding.


malicm
Contributor II
Forum|alt.badge.img
  • Author
  • Contributor II
  • January 18, 2024

Ah! Thank you for pointing that out. It was an additional field. 


Bfarkas
Hero III
Forum|alt.badge.img+6
  • Hero III
  • January 18, 2024

make sure to remove the extra custom CSS otherwise if you are going to add other additional fields you may forget you did this and be confused why it is not showing :)


malicm
Contributor II
Forum|alt.badge.img
  • Author
  • Contributor II
  • January 18, 2024

Will do. Thanks!