- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2023 04:14 AM
Hi All,
Requirement: View details should be hidden from the portal.
Can anyone please guide me on this.
Thanks in Advance
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2023 07:01 AM
Hello @Nagashree5
Here is how you can remove the View Details text on the portal page.
- Navigate to widget - SC Category Page
- Create a clone of the widget as this is an OOB widget.
- Search for the <div class="panel-footer b"> element from the HTML content.
- Remove ${View Details}
- Now your catalog items will not have the View Details section.
- Here is a screenshot on how it looks. The circled section is OOB widget, and below is the custom widget.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2023 01:37 AM
Hi @Nagashree5
In the HTML you would find this line:
<div class="panel-footer b">
<a aria-label="${View Details} {{::item.name}}" ng-if="item.sys_class_name != 'sc_cat_item_content' || item.content_type == 'kb' || item.content_type == 'literal'" ng-click="onClick($event, item)" ng-href="{{getItemHREF(item)}}" class="pull-left text-muted"></a>
<a aria-label="${View Details} {{::item.name}}" ng-if="item.sys_class_name == 'sc_cat_item_content' && item.content_type == 'external'" ng-click="onClick($event, item)" ng-href="{{getItemHREF(item)}}" target="_blank" class="pull-left text-muted"></a>
</div>
Delete this line.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2023 01:38 AM
If my response has helped you fix the issue, please mark it as solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2023 07:09 AM
Hi @Nagashree5 ,
If it is so needed you need to clone the widget SC category page and then put it replace with the OOB widget and then comment out the line number 95 and 96.
Mark this answer helpful and correct if it solves your query.
Regards
Twinkle