How to remove parent labels (Print only one label) or remove security code

How to remove parent labels (Print only one label) or remove security code

To shut off the parent labels it's something you enter into the stylesheet (option B6) that can suppress the printing of those. In the check-in view where you don't want parent labels (which means you would need to have separate check-in view for other classes where you need parent labels).  Here is the code you will need to add

/* Hide parent labels so they don't print */
div.parentlabel { display:none; }

/* hiding parent and child security codes and captions */

span.childsecuritycaption { display:none; }
span.parentsecuritycaption { display:none; }
span.childsecuritycode { display:none; }
span.parentsecuritycode { display:none; }