cancel
Showing results for 
Search instead for 
Did you mean: 

How can I remove the price field from the Request tab?

TraceyBunyard
Level 5
Employee

How can I remove the price field from the request tab?

Pricefield.png

 

1 ACCEPTED SOLUTION

Accepted Solutions

TraceyBunyard
Level 5
Employee

The price field will be hidden in the next release of NSS.

Until then adding the customization below to your CSS section will hide the price field. To do this go to Admin>Theme>Custom CSS and entering this code.

.list-detail-view .list-pane .list-pane-content ol li:nth-of-type(5) {

  display:none;

}

View solution in original post

1 REPLY 1

TraceyBunyard
Level 5
Employee

The price field will be hidden in the next release of NSS.

Until then adding the customization below to your CSS section will hide the price field. To do this go to Admin>Theme>Custom CSS and entering this code.

.list-detail-view .list-pane .list-pane-content ol li:nth-of-type(5) {

  display:none;

}