To Hide Special Instruction on Order Confirmation Page in Service Portal

delia1
Tera Contributor

Hi,

Anyone know how to hide the Special Instructions and Delivery Information in the Order confirmation page in service portal?

find_real_file.png

Thank you.

1 ACCEPTED SOLUTION

Hi Delia,

You can do the following:

  • Clone the out-of-the-box widget 'sc-checkout' and make changes to hide the unwanted fields.
  • Apply CSS to hide fields.

Let me know if it helps.

View solution in original post

5 REPLIES 5

This is the CSS to hide one or both of those fields, create your own Portal CSS file and apply it to your portal.  I've had to update these every few versions so I know these work in jakarta+

 

[for="deliver-to"] { 
  display: none;
}

[for="special-instructions"] { 
  display: none;
}