Remove shopping cart icon and order button in Search Results of create incident record producer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2024 11:20 PM
Requirement: Remove the shopping cart icon and order button for the catalog items shown in the search results of create incident record producer.
OOTB Behaviour:
Expected Behaviour:
1. Navigate to All > Service portals > portals > Employee center.
2. Find the theme field in the Employee center record.
3. Click on preview icon and click on open record to navigate to EC Theme record.
4. Add the below CSS rules in the CSS variables field.
.fa-shopping-cart {
display: none;
}
div.cxs-button-order-pad.ng-scope{
display: none;
}
5. Save the record and verify the functionality is working fine.
Feel free to suggest other approaches, thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2025 06:23 PM
How do we change the shopping cart icon?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2025 11:29 PM
Hi @Muktha2 ,
You can follow the same steps as mentioned above and add the below CSS rules in the CSS variables field.
.fa-shopping-cart:before {
content: "\f005";
}
The code can be changed accordingly based on your requirement.
Thanks,
Shivatmika.